UNPKG

igniteui-webcomponents-charts

Version:

Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.

15 lines (14 loc) 688 B
import { ListSortDirection } from "igniteui-webcomponents-core"; import { IgcChartSortDescription } from "./igc-chart-sort-description"; import { ChartGroupDescription } from "./ChartGroupDescription"; /** * Represents an element in the current grouping applied to a data source or provider. Changes to this object are not observed or expected after it is initially assigned to a collection. */ export declare class IgcChartGroupDescription extends IgcChartSortDescription { protected createImplementation(): ChartGroupDescription; /** * @hidden */ get i(): ChartGroupDescription; constructor(field?: string, sortDirection?: ListSortDirection); }