Hi, I have a trend chart with several dates at daily granularity, but some users say they can’t see each day clearly. Is there a way to make it more visible?
Trend chart data points visibility
emoya
#2
I’m not sure what you mean by making it more visible, but if you’re talking about the dots for each value, then you can use the Symbol size config, here is an example:
.set("symbolSize", 50) // the size you prefer
steven
#4
I think something like zooming the data was what I wanted, but this works fine if I put the chart in a larger container.
emoya
#5
I see, it’s good to know that it worked for you, but if what you want is to select an area of the chart you can apply a filter using the Data Zoom property, set it as dragFilter
and you can select the area of your interest to be applied as a filter, like this:
// zooming of the data using mouse or finger pinching
myChart.set('dataZoom', 'dragFilter')