Chart.js Fixing issue in steppedLine inside ChartDataSets

ChartDataSets.steppedLine is missing 'middle' value
This commit is contained in:
Hussein Ebrahimi 2019-03-21 14:21:55 +01:00 committed by GitHub
parent a228c252e2
commit 3824ecd053
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -512,7 +512,7 @@ declare namespace Chart {
hoverBorderWidth?: number | number[];
label?: string;
lineTension?: number;
steppedLine?: 'before' | 'after' | boolean;
steppedLine?: 'before' | 'after' | 'middle' | boolean;
pointBorderColor?: ChartColor | ChartColor[];
pointBackgroundColor?: ChartColor | ChartColor[];
pointBorderWidth?: number | number[];