如何解决ChartJS Donut选项中的语法错误?

时间:2019-10-04 21:41:59

标签: javascript chart.js

我正在尝试(努力)根据需要自定义一个ChartJS。每当我插入cutoutPercentage: 70选项时,我都会从JSlint收到语法错误。

无论我将选项插入哪个位置,它都不起作用。如果我只插入cutoutPercentage: 70而不插入legend and tooltip options,则效果很好...但不能组合使用。

工作:

      options:{
         legend: {
            display: false
         },
         tooltips: {
            enabled: true
         }
       }

也可以

     options: {
       cutoutPercentage: 70
              }

不起作用:

      options:{
         legend: {
            display: false
         },
         tooltips: {
            enabled: true
         }
         cutoutPercentage: 70              
       }

0 个答案:

没有答案