CanvasJs-图表被切断了容器

时间:2017-07-17 12:35:59

标签: javascript canvasjs

我正在使用CanvasJs库来呈现图表。 问题是图表被切断而且显示效果不佳。 这是问题的图像:

enter image description here

你可以看到标题被截断,并且Y轴描述被切断,没有提到列描述......

这是我的代码(这个代码位于window.onload函数内)

  var chart = new CanvasJS.Chart("chartContainer",
    {
        backgroundColor: "#d6d9de",
        title: {
            text: "שם הגרף ומה הוא מציג"
        },
        data: [

      {
          dataPoints: [
        { x: 1, y: 297571, label: "Venezuela" },
        { x: 2, y: 267017, label: "Saudi" },
        { x: 3, y: 175200, label: "Canada" },
        { x: 4, y: 154580, label: "Iran" }
        ]
      }
      ]
    });

    chart.render();

我也有html div,其中包含图形

<div id="chartContainer" style="width:100%; height:300px;"/>

请帮忙!

0 个答案:

没有答案