Home Forums Chart Support Re-sizing the chart

Re-sizing the chart

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

    Hi, May you please advise on how to change the width and height of the chart?

    #4311

    By default Chart takes the size of its container (if set). So you can just set the width and height of the container in which you are going to place the chart as shown below – this is the suggested method.

    <div id="chartContainer" style="height: 300px; width: 500px;">

    Else you can also set the same using “width” and “height” property at the top level of options.

    var chart = new CanvasJS.Chart("chartContainer", {
    width:600,//in pixels
    height:800,//in pixels
    title: {
    text: " Chart Title ",
    }
    .....
    .....
    }

    Chart with Custom Width

    • This reply was modified 10 years, 10 months ago by Sunil Urs.
Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.