tsiclient
Version:
<a href="https://tsiclientsample.azurewebsites.net"><img src="https://insights.timeseries.azure.com/favicons/android-chrome-192x192.png" align="left" hspace="10" vspace="6" height="100px"></a>
20 lines (19 loc) • 784 B
TypeScript
import { ChartComponentData } from "./ChartComponentData-cfbea0e5";
declare class GroupedBarChartData extends ChartComponentData {
timestamp: any;
valuesAtTimestamp: any;
valuesOfVisibleType: Array<any>;
aggsSeries: any;
globalMax: number;
globalMin: number;
stackedAggregateObject: any;
constructor();
mergeDataToDisplayStateAndTimeArrays(data: any, timestamp: any, aggregateExpressionOptions?: any): void;
private stackMin;
private stackMax;
//setting the data related to the entire time range (aggsSeries, allValus, globalMax, globalMin)
setEntireRangeData(scaledToCurrentTime: any): void;
setValuesAtTimestamp(): void;
getValueContainerData(aggKey: any): Array<any>;
}
export { GroupedBarChartData };