Chart.js plugin for adding an alternating background to chart axes, such as horizontal and vertical Barcharts, or Box and Violin Plots.
Please note that this project has been archived and is no longer being maintained.
npm install --save chart.js chartjs-plugin-barchart-background
interface IChartJsPluginBarchartBackgroundOptions {
/**
* fill color
* @default #f3f3f3
*/
color: string;
/**
* render mode
* options:
* * odd = first, third, ...
* * even = second, fourth, ...
* @default 'odd'
*/
mode: 'odd'|'even';
/**
* axis to render the alternating background for
* @default: 'category'
*/
axis: 'category'|'x'|'y';
}
options: {
...
plugins: {
chartJsPluginBarchartBackground: {
color: '#efefef',
mode: 'odd'
}
}
...
}
See the samples
npm install
npm run build
This repository is part of the Target Discovery Platform (TDP). For tutorials, API docs, and more information about the build and deployment process, see the documentation page.