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

Popular posts from this blog

javascript - Bootstrap Popover: iOS Safari strange behaviour -

Website Login Issue developed in magento -

Can the constants be defined inside a model file of a framework in PHP? -