C3js and hide points
1 answer
See below example.
var chart = c3.generate({
data: {
columns: [
['data1', 30, 200, 100, 400, 150, 250],
['data2', 50, 20, 10, 40, 15, 25]
]
},
point: {
show: false
}
});
Taken from http://c3js.org/samples/point_show.html .
+9
source to share