Scatter type graph in Dygraphs?
问题 How can I plot a scatter graph using dygraphs. Data would be line the following. X axis might have 5-20 values (catagories) Y values might be 1-10 values per value on the x-axis This is an example of what i need. Is this possible in Dygraphs? Thanks Michael 回答1: You can set { strokeWidth: 0.0 } in the options to simulate a scatter plot (see http://dygraphs.com/options.html#strokeWidth). You'll need the points as well: { drawPoints: true} These demos may be instructive: http://dygraphs.com