I’m wondering if there is a way to keep the dots visible for each data point on a line chart. The default behavior is that a dot only appears on a data point (along with a tootip) when you hover over it. I’d like the data point dots to be visible by default. Is there a way I can go about doing this?
Share
The
pointSizeattribute is responsible for the dot size. So something likechart.draw(data, {pointSize: 1})should make the points visible by default. (The default setting is size 0.)Hope that helps!