UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

15 lines (14 loc) 682 B
import { ListSortDirection } from "igniteui-angular-core"; import { IgxChartSortDescription } from "./igx-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 IgxChartGroupDescription extends IgxChartSortDescription { protected createImplementation(): ChartGroupDescription; /** * @hidden */ get i(): ChartGroupDescription; constructor(field?: string, sortDirection?: ListSortDirection); }