高图没有数字变化

时间:2018-11-22 09:41:45

标签: javascript highcharts

我在高位图中有一个折线图,并且使用的数字不是整数

23: 88.242705
24: 88.2427051
25: 88.2427052
26: 88.2427051
27: 88.2427052
28: 88.2427053
29: 88.2427052

像这样,图表本身仅读取88点,之后不显示任何内容

我不确定是否可以做任何事情,但是没有人有任何经验。

我现在的图表选项是:

chartOptions: {
        chart: {
          zoomType: "x"
        },
        title: {
          text: "",
          style: {
            display: "none"
          }
        },
        credits: {
          enabled: false
        },
        exporting: {
          enabled: false
        },
        xAxis: {
          labels: {
            enabled: false
          }
        },
        yAxis: {
          title: {
            text: "Profit",
            allowDecimals: true
          }
        },
        legend: {
          enabled: false
        },
        lang: {
          noData: "Place a bet and watch."
        },
        series: [
          {
            type: "spline",
            name: "Profit",
            animation: false,
            marker: {
              enabled: false
            },
            data: []
          }
        ]
      }  

0 个答案:

没有答案