Merge pull request #5810 from Trapulo/master

CircularChartData color optional
This commit is contained in:
Masahiro Wakame
2015-09-20 14:04:47 +09:00

2
chartjs/chart.d.ts vendored
View File

@@ -27,7 +27,7 @@ interface LinearChartData {
interface CircularChartData {
value: number;
color: string;
color?: string;
highlight?: string;
label?: string;
}