This is a simple plugin for Chartist.js that will add tooltip to a line chart.
Please visit http://gionkunz.github.io/chartist-js/plugins.html for more information.
var defaultOptions = {
formatHeader: Chartist.noop,
formatValue: Chartist.noop,
cursorLabel: undefined,
classNames: {
tooltip: 'tooltip',
series: 'series',
cursor: 'cursor'
}
};
var chart = new Chartist.Line('.ct-chart', {
labels: ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'],
series: [
[12, 9, 7, 8, 5],
[2, 1, 3.5, 7, 3],
[1, 3, 4, 5, 6]
]
}, {
plugins: [
Chartist.plugins.lineTooltip()
]
});