UNPKG

igniteui-angular-charts

Version:

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

21 lines (20 loc) 772 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 class IgxChartGroupDescription extends IgxChartSortDescription { createImplementation() { return new ChartGroupDescription(0); } /** * @hidden */ get i() { return this._implementation; } constructor(field = null, sortDirection = ListSortDirection.Ascending) { super(field, sortDirection); } }