Normalized whitespace according to best practices

This commit is contained in:
Marc-André Bühler
2016-03-08 19:11:31 +01:00
parent 9f0f926a12
commit 99e02b6e0d
+38 -38
View File
@@ -726,45 +726,45 @@ declare module google {
//#endregion
//#region AnnotationChart
// https://developers.google.com/chart/interactive/docs/gallery/annotationchart
export class AnnotationChart extends CoreChartBase
{
draw(data: DataTable, options: AnnotationChartOptions): void;
draw(data: DataView, options: AnnotationChartOptions): void;
setVisibleChartRange(start: Date, end: Date): void;
getVisibleChartRange(): {start: Date; end: Date };
hideDataColumns(columnIndexes: number | number[]): void;
showDataColumns(columnIndexes: number | number[]): void;
}
// https://developers.google.com/chart/interactive/docs/gallery/annotationchart
export class AnnotationChart extends CoreChartBase
{
draw(data: DataTable, options: AnnotationChartOptions): void;
draw(data: DataView, options: AnnotationChartOptions): void;
setVisibleChartRange(start: Date, end: Date): void;
getVisibleChartRange(): {start: Date; end: Date };
hideDataColumns(columnIndexes: number | number[]): void;
showDataColumns(columnIndexes: number | number[]): void;
}
// https://developers.google.com/chart/interactive/docs/gallery/annotationchart#Configuration_Options
export interface AnnotationChartOptions
{
allowHtml?: boolean;
allValuesSuffix?: string;
annotationsWidth?: number;
colors?: string[];
dateFormat?: string;
displayAnnotations?: boolean;
displayAnnotationsFilter?: boolean;
displayDateBarSeparator?: boolean;
displayExactValues?: boolean;
displayLegendDots?: boolean;
displayLegendValues?: boolean;
displayRangeSelector?: boolean;
displayZoomButtons?: boolean;
fill?: number;
legendPosition?: string;
max?: number;
min?: number;
numberFormats?: any;
scaleColumns?: number[];
scaleFormat?: string;
scaleType?: string;
thickness?: number;
zoomEndTime?: Date;
zoomStartTime?: Date;
}
// https://developers.google.com/chart/interactive/docs/gallery/annotationchart#Configuration_Options
export interface AnnotationChartOptions
{
allowHtml?: boolean;
allValuesSuffix?: string;
annotationsWidth?: number;
colors?: string[];
dateFormat?: string;
displayAnnotations?: boolean;
displayAnnotationsFilter?: boolean;
displayDateBarSeparator?: boolean;
displayExactValues?: boolean;
displayLegendDots?: boolean;
displayLegendValues?: boolean;
displayRangeSelector?: boolean;
displayZoomButtons?: boolean;
fill?: number;
legendPosition?: string;
max?: number;
min?: number;
numberFormats?: any;
scaleColumns?: number[];
scaleFormat?: string;
scaleType?: string;
thickness?: number;
zoomEndTime?: Date;
zoomStartTime?: Date;
}
//#endregion
//#region SteppedAreaChart