Merge pull request #3888 from gxoptg/patch-1

Mark "highlight" and "label" properties of CircularChartData as optional
This commit is contained in:
Masahiro Wakame
2015-03-21 11:50:07 +09:00
+2 -2
View File
@@ -28,8 +28,8 @@ interface LinearChartData {
interface CircularChartData {
value: number;
color: string;
highlight: string;
label: string;
highlight?: string;
label?: string;
}
interface ChartSettings {