C3js and hide points

How can I hide points in c3js when overlaying a point? For example, in this demo

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

+3


source to share


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







All Articles