Dygraph display X-axis at the top of the figure -
i want x-axis @ top of figure along axislabels , y-axis invisible described below.how can done ?
1 2 3 4 +-----+-------+-------+------+ | | | | | |
there's no simple way move x-axis top without mucking plugins/axes.js
.
to hide y-axis, can use drawaxis
option:
g = new dygraph(div, data, { axes: { y: { drawaxis: false } } });
Comments
Post a Comment