C3js and hide dots
Asked Answered
P

1

5

How can i hide dots in c3js when a point is plotted ? For example in this demo

http://c3js.org/samples/simple_multiple.html

Pacifica answered 10/8, 2014 at 13:43 Comment(0)
S
15

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.

Samaria answered 19/8, 2014 at 15:55 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.