Merge pull request #2462 from fivetran/google.visualization

Fix minorGridlines
This commit is contained in:
Basarat Ali Syed
2014-07-04 12:04:32 +10:00
+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 {