Allow borderWidth and borderColor to be indexed

Useful only for bar charts,
see http://www.chartjs.org/docs/latest/charts/bar.html
This commit is contained in:
Thomas Chandelle
2017-11-09 11:27:34 +01:00
parent c6835d5e17
commit 84b1d3f482

View File

@@ -411,8 +411,8 @@ declare namespace Chart {
interface ChartDataSets {
cubicInterpolationMode?: 'default' | 'monotone';
backgroundColor?: ChartColor | ChartColor[];
borderWidth?: number;
borderColor?: ChartColor;
borderWidth?: number | number[];
borderColor?: ChartColor | ChartColor[];
borderCapStyle?: string;
borderDash?: number[];
borderDashOffset?: number;