UNPKG

igniteui-webcomponents-charts

Version:

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

237 lines (236 loc) 8.68 kB
import { MarkerType_$type } from "./MarkerType"; import { MarkerOutlineMode_$type } from "./MarkerOutlineMode"; import { MarkerFillMode_$type } from "./MarkerFillMode"; import { IgcSeriesComponent } from "./igc-series-component"; import { getAllPropertyNames, toSpinal, ensureBool, ensureEnum, enumToString, brushToString, stringToBrush } from "igniteui-webcomponents-core"; /** * Represents the base class for series containing markers. * * MarkerSeries represents the base class for series containing markers. * * Example: */ export let IgcMarkerSeriesComponent = /*@__PURE__*/ (() => { class IgcMarkerSeriesComponent extends IgcSeriesComponent { /** * @hidden */ get i() { return this._implementation; } constructor() { super(); } connectedCallback() { if (super["connectedCallback"]) { super["connectedCallback"](); } if (this.i.connectedCallback) { this.i.connectedCallback(); } if (!this._attached) { this._attached = true; this._flushQueuedAttributes(); } } disconnectedCallback() { if (super["disconnectedCallback"]) { super["disconnectedCallback"](); } if (this.i.disconnectedCallback) { this.i.disconnectedCallback(); } if (this._attached) { this._attached = false; } } static get observedAttributes() { if (IgcMarkerSeriesComponent._observedAttributesIgcMarkerSeriesComponent == null) { let names = getAllPropertyNames(IgcMarkerSeriesComponent); for (let i = 0; i < names.length; i++) { names[i] = toSpinal(names[i]); } IgcMarkerSeriesComponent._observedAttributesIgcMarkerSeriesComponent = names; } return IgcMarkerSeriesComponent._observedAttributesIgcMarkerSeriesComponent; } /** * Returns whether the current series supports visual markers. * * `HasMarkers` property is overriden, it returns whether the current series supports visual markers. You can use it like this: * * ```ts * let gotMarkers: boolean = this.series.hasMarkers; * ``` */ get hasMarkers() { return this.i.hasMarkers; } get hasVisibleMarkers() { return this.i.en; } /** * Gets or sets the marker type for the current series object. * This property is ignored when the MarkerTemplate property is set * * `MarkerType` property gets or sets the marker type for the current series object. For example, you can set it like this: * * ```ts * this.series.markerType = "circle"; * ``` */ get markerType() { return this.i.xf; } set markerType(v) { this.i.xf = ensureEnum(MarkerType_$type, v); this._a("markerType", enumToString(MarkerType_$type, this.i.xf)); } /** * Represents the resolved marker type for the series. */ get actualMarkerType() { return this.i.xd; } set actualMarkerType(v) { this.i.xd = ensureEnum(MarkerType_$type, v); this._a("actualMarkerType", enumToString(MarkerType_$type, this.i.xd)); } /** * Gets or sets whether the marker for the current series object should be treated as circular. */ get isCustomMarkerCircular() { return this.i.xi; } set isCustomMarkerCircular(v) { this.i.xi = ensureBool(v); this._a("isCustomMarkerCircular", this.i.xi); } /** * Gets whether the markers for the current series are in circular shape */ get effectiveIsMarkerCircular() { return this.i.xh; } /** * Gets or sets whether the marker outline is based on the marker brush of the series rather than the marker outlines collection. */ get markerOutlineMode() { return this.i.w9; } set markerOutlineMode(v) { this.i.w9 = ensureEnum(MarkerOutlineMode_$type, v); this._a("markerOutlineMode", enumToString(MarkerOutlineMode_$type, this.i.w9)); } /** * Gets or sets whether the marker fill is based on the marker outline of the series rather than the marker brushes collection. */ get markerFillMode() { return this.i.w5; } set markerFillMode(v) { this.i.w5 = ensureEnum(MarkerFillMode_$type, v); this._a("markerFillMode", enumToString(MarkerFillMode_$type, this.i.w5)); } /** * Gets or sets the MarkerTemplate for the current series object. * * `MarkerTemplate` property gets or sets the MarkerTemplate for the current series object. For example, you can use it like this: */ get markerTemplate() { return this.i.x7; } set markerTemplate(v) { this.i.x7 = v; } /** * Gets or sets thickness of the marker outline */ get markerThickness() { return this.i.xo; } set markerThickness(v) { this.i.xo = +v; this._a("markerThickness", this.i.xo); } /** * Gets the effective marker template for the current series object. * * `ActualMarkerTemplate` property gets the effective marker template for the current series object. You can use it like this: */ get actualMarkerTemplate() { return this.i.x5; } set actualMarkerTemplate(v) { this.i.x5 = v; } /** * Gets or sets the brush that specifies how the current series object's marker interiors are painted. * * `MarkerBrush` property gets or sets the brush that specifies how the current series object's marker interiors are painted. You can use it like this: * * ```ts * this.series.markerBrush = "red"; * ``` */ get markerBrush() { return brushToString(this.i.yo); } set markerBrush(v) { this.i.yo = stringToBrush(v); this._a("markerBrush", brushToString(this.i.yo)); } /** * Gets the effective marker brush for the current series object. * * `ActualMarkerBrush` property gets the effective marker brush for the current series object. For example, you can use it like this: * * ```ts * let effectiveMarkerBrush: string = this.series.actualMarkerBrush; * * ``` */ get actualMarkerBrush() { return brushToString(this.i.ym); } set actualMarkerBrush(v) { this.i.ym = stringToBrush(v); this._a("actualMarkerBrush", brushToString(this.i.ym)); } /** * Gets or sets the brush that specifies how the current series object's marker outlines are painted. * * `MarkerOutline` property gets or sets the brush that specifies how the current series object's marker outlines are painted. You can use it like this: * * ```ts * this.series.markerOutline = "red"; * ``` */ get markerOutline() { return brushToString(this.i.yp); } set markerOutline(v) { this.i.yp = stringToBrush(v); this._a("markerOutline", brushToString(this.i.yp)); } /** * Gets the effective marker outline for the current series object. * * `ActualMarkerOutline` property gets the effective marker outline for the current series object. You can use it like this: * * ```ts * let effectiveMarkerOutline: string = this.series.actualMarkerOutline; * * ``` */ get actualMarkerOutline() { return brushToString(this.i.yn); } set actualMarkerOutline(v) { this.i.yn = stringToBrush(v); this._a("actualMarkerOutline", brushToString(this.i.yn)); } } IgcMarkerSeriesComponent._observedAttributesIgcMarkerSeriesComponent = null; return IgcMarkerSeriesComponent; })();