Scriptcase 折线图 Y 轴刻度问题

Scriptcase line chart Y- axis scale issue

谁知道如何在scriptcase中调整折线图中的y轴? 下图显示了问题: 与其从 0 开始到 1k 结束,我希望 Scriptcase 自动调整 Y 轴刻度——可能从 840 到 1k。 我一直在寻找这个选项,但找不到任何答案。 谢谢,

    You can explicitly set y-axis min and max value using yAxisMinValue and yAxisMaxValue attribute at the chart object level for example : 

    "chart": {
            "yAxisMinValue":"840",
            "yAxisMaxValue":"1000"
          }

    For details please check this snippet - 

 FusionCharts.ready(function() {
  var visitChart = new FusionCharts({
    type: 'line',
    renderAt: 'chart-container',
    width: '700',
    height: '400',
    dataFormat: 'json',
    dataSource: {
      "chart": {
        "yAxisMinValue":"840",
        "yAxisMaxValue":"1000"
      },
      "data": [{
          "label": "Mon",
          "value": "899"
        },
        {
          "label": "Tue",
          "value": "952"
        },
        {
          "label": "Wed",
          "value": "963"
        },
        {
          "label": "Thu",
          "value": "874"
        },
        {
          "label": "Fri",
          "value": "862"
        },
        {
          "label": "Sat",
          "value": "906"
        },
        {
          "label": "Sun",
          "value": "999"
        }
      ]
    }
  });

  visitChart.render();
});