Merge pull request #7698 from onionhammer/patch-1

Added missing optional parameter
This commit is contained in:
Horiuchi_H
2016-01-20 17:38:54 +09:00
+1 -1
View File
@@ -107,7 +107,7 @@ interface LinearInstance extends ChartInstance {
getPointsAtEvent: (event: Event) => PointsAtEvent[];
update: () => void;
addData: (valuesArray: number[], label: string) => void;
removeData: () => void;
removeData: (index?: number) => void;
}
interface CircularInstance extends ChartInstance {