在 ChartJS LineGraph 中隐藏点ChartJS、LineGraph

由网友(蘭曉曦)分享简介:Originally I set the fill color for each point to be completely transparent. If I run my mouse over the graph, the points pop up. I want to hide all points so t...

Originally I set the fill color for each point to be completely transparent. If I run my mouse over the graph, the points pop up. I want to hide all points so that the line graph is smooth.

解决方案

You can achieve this by setting point's radius property in configuration options as follows:

var chartConfig = {
            type: 'line',
            options: {
                elements: {
                    point:{
                        radius: 0
                    }
                }
            }
        }
Chart.js 图表与ThingJS结合

Tooltips for the points will also gone off.

阅读全文

相关推荐

最新文章