javascript - How to print not time-series using dygraphs -
i have following dataset
x y ------------ 9.2294 40 9.65712 60 10.0633 80 10.1865 90 10.2844 100 10.4122 120 10.5217 140 10.5776 160 10.5995 180 10.6237 200 10.563 250
and want plot profile (y elevation) connecting point on basis of y order , not x order (it xy graph , not time-series)... dygraphs seems not possible.
dygraphs requires data sorted first column (the x-axis). might able pull of you're asking using custom plotter, it's not natural fit. you'll have easier time using either d3 or library built-in support plots this.
Comments
Post a Comment