禁用chartjs上的背景图表

时间:2016-10-25 07:04:42

标签: angular background ionic2 chart.js linechart

大家好我的问题是我要删除折线图的标签背景。 enter image description here

有没有办法删除或禁用它?我在我的离子2应用程序上使用chartjs。 请帮忙谢谢

将我的代码放到我的折线图中 enter image description here

2 个答案:

答案 0 :(得分:0)

标签背景名为gridLines,你可以像这样禁用它:

type: 'line',
data: { ... },
gridLines: {
    display: false
}

取自http://www.chartjs.org/docs/#grid-line-configuration

答案 1 :(得分:0)

适用于两个轴

选项:{

<强>&#34; scaleShowGridLines&#34; :false

};

对于X轴:

scaleShowHorizo​​ntalLines:false

对于Y-xais:

scaleShowVerticalLines:false