chartist-logaxis
v1.3.1
Published
Monkey patches `Chartist.AutoScaleAxis` to support logarithmic scaling. Example usage:
Downloads
93
Readme
chartist-logaxis
Monkey patches Chartist.AutoScaleAxis
to support logarithmic scaling.
Example usage:
npm i chartist chartist-logaxis
import 'chartist'
import 'chartist-logaxis'
var chart = new Chartist.Line('#mychart',
{
series: [[{ x: 1, y: 1 }, { x: 2, y: 100 }, { x: 3, y: 1000 }]]
},
{
classNames: {
gridMinor: 'ct-grid-minor'
},
axisY: {
showMinorGrid: true,
type: Chartist.AutoScaleAxis,
scale: 'log10',
},
axisX: {
showMinorGrid: 4,
type: Chartist.AutoScaleAxis,
}
});
.ct-grid {
stroke-dasharray: none;
}
.ct-grid-minor {
stroke-dasharray: 2px;
}