chart.js -- ChartPoint.y is allowed to be string and Date

This commit is contained in:
dvorakroth 2018-05-02 10:55:27 +00:00
parent 029dbee6f2
commit 6509669d3d

View File

@ -166,7 +166,7 @@ declare namespace Chart {
interface ChartPoint {
x?: number | string | Date;
y?: number;
y?: number | string | Date;
r?: number;
}