Merge pull request #4088 from Slimfit/patch-1

Add segments array to CircularInstance
This commit is contained in:
Masahiro Wakame
2015-04-12 10:55:20 +09:00
+1
View File
@@ -115,6 +115,7 @@ interface CircularInstance extends ChartInstance {
update: () => void;
addData: (valuesArray: CircularChartData[], index: number) => void;
removeData: (index: number) => void;
segments: Array<CircularChartData>;
}
interface LineChartOptions extends ChartOptions {