Home Forums Chart Support bevelEnabled Not Working properly

bevelEnabled Not Working properly

Viewing 2 posts - 1 through 2 (of 2 total)
  • #24459

    CanvasJS.addColorSet(“greenShades”,
    [“#FF5733”,
    “#FFC300”,
    “#28B463”,
    ]);

    function compareDataPointYDescend(dataPoint1, dataPoint2)
    {
    return dataPoint2.y – dataPoint1.y;
    }

    var seasondata = [];
    for (let index = 0; index < dataset.length; index++) {
    const element = dataset[index];
    seasondata.push({label: labelset[index] , y:dataset[index]})

    }

    var chart = new CanvasJS.Chart(“pie-chart”,
    {
    colorSet: “greenShades”,
    animationEnabled: true,
    theme: “light1”,
    title:
    {
    text: “Fix Response Time for P3/P4″
    },

    axisY:
    {
    title :”Case Age”,
    titleFontSize:15,
    interval:50,
    },

    axisX:
    {
    title :”Case Number”,
    titleFontSize:15,
    interval:5,
    },

    legend:
    {
    horizontalAlign: “center”,
    verticalAlign: “top”
    },

    data:[{
    bevelEnabled: true,

    type: “column”,
    //showInLegend: true,
    dataPoints: seasondata.sort(compareDataPointYDescend)
    }]
    });

    chart.render();

    #24472

    @nitishbhardwaj,

    bevelEnabled seems to be working fine on all type of column and bar charts at our end. Can you please create a JSFiddle reproducing the issue you’re facing so that we can look into it, understand the scenario and help you out.

    ____
    Shashi Ranjan
    Team CanvasJS

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.