Remove redundant type

This commit is contained in:
Georgie
2014-07-03 16:50:17 -07:00
parent bbd9ce1249
commit b395e7ec19
+1 -6
View File
@@ -270,6 +270,7 @@ declare module google {
direction?: number; // The direction in which the values along the horizontal axis grow. Specify -1 to reverse the order of the values.
format?: string; // icu pattern set http://icu-project.org/apiref/icu4c/classDecimalFormat.html#_details
gridlines?: ChartGridlines;
minorGridlines?: ChartGridlines;
logScale?: boolean;
textPosition?: string;
textStyle?: ChartTextStyle;
@@ -292,12 +293,6 @@ declare module google {
export interface ChartGridlines {
color?: string;
count?: number;
minorGridlines?: ChartMinorGridlines;
}
export interface ChartMinorGridlines {
color?: string;
count?: number;
}
export interface ChartViewWindow {