UNPKG

igniteui-angular-charts

Version:

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

22 lines (21 loc) 973 B
import { IgxAssigningCategoryStyleEventArgsBase } from "./igx-assigning-category-style-event-args-base"; import { AssigningCategoryMarkerStyleEventArgs as AssigningCategoryMarkerStyleEventArgs_internal } from "./AssigningCategoryMarkerStyleEventArgs"; /** * Represents event arguments class for the AssigningCategoryStyleEvent * * The `assigningCategoryMarkerStyle` event fired to allow you to override the style of markers for the items in a category or financial series. Only fires if you set isCustomCategoryMarkerStyleAllowed to true for a series. */ export class IgxAssigningCategoryMarkerStyleEventArgs extends IgxAssigningCategoryStyleEventArgsBase { createImplementation() { return new AssigningCategoryMarkerStyleEventArgs_internal(); } /** * @hidden */ get i() { return this._implementation; } constructor() { super(); } }