Home Forums Chart Support Border around pie part or column

Border around pie part or column

Viewing 5 posts - 1 through 5 (of 5 total)
  • #6393

    Is it possible to change/add border around each pie slice (at pie chart) or column (at bar chart)?

    Thanks,
    Alex

    #6395

    Alex,

    As of now borders are not available in Chart.


    Sunil Urs

    #14975

    Hi there,

    What’s the status on series borders please? For instance, is it possible to create now a chart with empty white columns? If we set the (fill) color to white, we absolutely need a border.

    Is there any hack or workaround to do this?

    Thanks,
    -Cristian

    #14977

    Sorry, this feature is not available as of now.

    #23266

    Kind of a hack, but I had to add code to give me a top border (for stackedColumn)

    search for in the canvasjs.min.js (spaces and line breaks may not be the same)

         a.fillStyle = g;
         a.globalAlpha = e;
         a.fillRect(c, b, d - c, f - b); 

    Add this before the code

         a.fillStyle = '#000';
         a.fillRect(c, b + f - b, d - c, 1);

    It will paint a black rectangle on top of the column in the chart.

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

You must be logged in to reply to this topic.