UNPKG

igniteui-react-charts

Version:

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

1,119 lines (1,110 loc) 35.4 kB
import { delegateCombine, delegateRemove } from "igniteui-react-core"; import { IgrCategoryAxisBase } from "./igr-category-axis-base"; import { IgrNumericYAxis } from "./igr-numeric-y-axis"; import { CategoryTransitionInMode_$type } from "./CategoryTransitionInMode"; import { IgrAssigningCategoryStyleEventArgs } from "./igr-assigning-category-style-event-args"; import { IgrFinancialEventArgs } from "./igr-financial-event-args"; import { IgrSeries } from "./igr-series"; import { ensureBool, brushToString, stringToBrush, ensureEnum, toPoint, fromPoint } from "igniteui-react-core"; /** * Represents the base class for all financial indicator and overlay series. * * The `FinancialSeries` represents the base class for all financial indicator and overlay series. * * ```ts * <IgrDataChart * dataSource={this.state.dataSource} * width="700px" * height="500px"> * * * <IgrCategoryXAxis name="xAxis" label="Date" /> * <IgrNumericYAxis name="yAxis" /> * * * <IgrFinancialPriceSeries * name="series2" * xAxisName="xAxis" * yAxisName="yAxis" * displayType="Candlestick" * lowMemberPath="Low" * highMemberPath="High" * openMemberPath="Open" * closeMemberPath="Close" * volumeMemberPath="Volume" /> * * </IgrDataChart> * ``` * * ```ts * this.financialSeries = new IgrFinancialPriceSeries({name: "financialSeries"}); * this.financialSeries.dataSource = this.financialData; * this.financialSeries.xAxis = this.timeXAxis; * this.financialSeries.yAxis = this.numericYAxis; * this.financialSeries.xAxisName = "timeXAxis"; * this.financialSeries.yAxisName = "numericYAxis"; * this.financialSeries.highMemberPath="High" ; * this.financialSeries.lowMemberPath="Low" ; * this.financialSeries.closeMemberPath="Close" ; * this.financialSeries.openMemberPath="Open"; * this.financialSeries.volumeMemberPath="Volume"; * ``` */ export class IgrFinancialSeries extends IgrSeries { /** * @hidden */ get i() { return this._implementation; } constructor(props) { super(props); this._xAxisName = null; this._yAxisName = null; this._assigningCategoryStyle = null; this._assigningCategoryStyle_wrapped = null; this._typical = null; this._typical_wrapped = null; this._typicalBasedOn = null; this._typicalBasedOn_wrapped = null; } /** * Gets whether the current series is a financial type series. */ get isFinancial() { return this.i.e8; } /** * Gets or sets the brush to use for negative portions of the series. * * The `NegativeBrush` property is used to brush the negative portions of the series. * * ```ts * <IgrDataChart * dataSource={this.state.dataSource} * width="700px" * height="500px"> * * * <IgrCategoryXAxis name="xAxis" label="Date" /> * <IgrNumericYAxis name="yAxis" /> * * * <IgrFinancialPriceSeries * name="series2" * xAxisName="xAxis" * yAxisName="yAxis" * displayType="Candlestick" * lowMemberPath="Low" * highMemberPath="High" * openMemberPath="Open" * closeMemberPath="Close" * volumeMemberPath="Volume" * negativeBrush="Red" /> * </IgrDataChart> * ``` * * ```ts * series.negativeBrush="red"; * ``` */ get negativeBrush() { return brushToString(this.i.aa7); } set negativeBrush(v) { this.i.aa7 = stringToBrush(v); } get hasValueAxis() { return this.i.em; } get isValueAxisInverted() { return this.i.f6; } /** * Gets or sets the effective x-axis for the current FinancialSeries object. * * Use `XAxis` property to set effective x-axis for the current FinancialSeries object. * * ```ts * <IgrDataChart * dataSource={this.state.dataSource} * width="700px" * height="500px"> * * * <IgrCategoryXAxis name="xAxis" label="Date" /> * <IgrNumericYAxis name="yAxis" /> * * * <IgrFinancialPriceSeries * name="series2" * xAxisName="xAxis" * yAxisName="yAxis" * displayType="Candlestick" * lowMemberPath="Low" * highMemberPath="High" * openMemberPath="Open" * closeMemberPath="Close" * volumeMemberPath="Volume" /> * </IgrDataChart> * ``` * * ```ts * this.financialSeries = new IgrFinancialPriceSeries({name: "financialSeries"}); * this.financialSeries.dataSource = this.financialData; * this.financialSeries.xAxis = this.timeXAxis; * this.financialSeries.yAxis = this.numericYAxis; * this.financialSeries.xAxisName = "timeXAxis"; * this.financialSeries.yAxisName = "numericYAxis"; * this.financialSeries.highMemberPath="High" ; * this.financialSeries.lowMemberPath="Low"; * this.financialSeries.closeMemberPath="Close"; * this.financialSeries.openMemberPath="Open"; * this.financialSeries.volumeMemberPath="Volume"; * ``` */ get xAxis() { const r = this.i.xh; if (r == null) { return null; } if (!r.externalObject) { let e = IgrCategoryAxisBase._createFromInternal(r); if (e) { e._implementation = r; } r.externalObject = e; } return r.externalObject; } set xAxis(v) { if (v != null && this._stylingContainer && v._styling) v._styling(this._stylingContainer, this, this); v == null ? this.i.xh = null : this.i.xh = v.i; } /** * Gets or sets the name to use to resolve xAxis from markup. */ get xAxisName() { return this._xAxisName; } set xAxisName(v) { this._xAxisName = v; } /** * Gets or sets the effective y-axis for the current FinancialSeries object. * * Use `YAxis` property to set the effective y-axis for the current FinancialSeries object. * * ```ts * <IgrDataChart * dataSource={this.state.dataSource} * width="700px" * height="500px"> * * * <IgrCategoryXAxis name="xAxis" label="Date" /> * <IgrNumericYAxis name="yAxis" /> * * * <IgrFinancialPriceSeries * name="series2" * xAxisName="xAxis" * yAxisName="yAxis" * displayType="Candlestick" * lowMemberPath="Low" * highMemberPath="High" * openMemberPath="Open" * closeMemberPath="Close" * volumeMemberPath="Volume" /> * </IgrDataChart> * ``` * * ```ts * this.financialSeries = new IgrFinancialPriceSeries({name: "financialSeries"}); * this.financialSeries.dataSource = this.financialData; * this.financialSeries.xAxis = this.timeXAxis; * this.financialSeries.yAxis = this.numericYAxis; * this.financialSeries.xAxisName = "timeXAxis"; * this.financialSeries.yAxisName = "numericYAxis"; * this.financialSeries.highMemberPath="High" ; * this.financialSeries.lowMemberPath="Low"; * this.financialSeries.closeMemberPath="Close"; * this.financialSeries.openMemberPath="Open"; * this.financialSeries.volumeMemberPath="Volume"; * ``` */ get yAxis() { const r = this.i.x0; if (r == null) { return null; } if (!r.externalObject) { let e = IgrNumericYAxis._createFromInternal(r); if (e) { e._implementation = r; } r.externalObject = e; } return r.externalObject; } set yAxis(v) { if (v != null && this._stylingContainer && v._styling) v._styling(this._stylingContainer, this, this); v == null ? this.i.x0 = null : this.i.x0 = v.i; } /** * Gets or sets the name to use to resolve yAxis from markup. */ get yAxisName() { return this._yAxisName; } set yAxisName(v) { this._yAxisName = v; } /** * Gets or sets the open mapping property for the current series object. * * The `OpenMemberPath` property is used for open mapping of the current series object. * * ```ts * <IgrDataChart * dataSource={this.state.dataSource} * width="700px" * height="500px"> * * * <IgrCategoryXAxis name="xAxis" label="Date" /> * <IgrNumericYAxis name="yAxis" /> * * * <IgrFinancialPriceSeries * name="series2" * xAxisName="xAxis" * yAxisName="yAxis" * displayType="Candlestick" * lowMemberPath="Low" * highMemberPath="High" * openMemberPath="Open" * closeMemberPath="Close" * volumeMemberPath="Volume" /> * * </IgrDataChart> * ``` * * ```ts * this.series = new IgrFinancialPriceSeries({name: "series"}); * this.series.dataSource = this.financialData; * this.series.xAxis = this.timeXAxis; * this.series.yAxis = this.numericYAxis; * this.series.xAxisName = "timeXAxis"; * this.series.yAxisName = "numericYAxis"; * this.series.highMemberPath="High" * this.series.lowMemberPath="Low" * this.series.closeMemberPath="Close" * this.series.openMemberPath="Open" * this.series.volumeMemberPath="Volume" * ``` */ get openMemberPath() { return this.i.z7; } set openMemberPath(v) { this.i.z7 = v; } /** * Gets or sets the high mapping property for the current series object. * * Use `HighMemberPath` propert for high mapping of the current series object. * * ```ts * <IgrDataChart * dataSource={this.state.dataSource} * width="700px" * height="500px"> * * * <IgrCategoryXAxis name="xAxis" label="Date" /> * <IgrNumericYAxis name="yAxis" /> * * * <IgrFinancialPriceSeries * name="series2" * xAxisName="xAxis" * yAxisName="yAxis" * displayType="Candlestick" * lowMemberPath="Low" * highMemberPath="High" * openMemberPath="Open" * closeMemberPath="Close" * volumeMemberPath="Volume" /> * </IgrDataChart> * ``` * * ```ts * this.financialSeries = new IgrFinancialPriceSeries({name: "financialSeries"}); * this.financialSeries.dataSource = this.financialData; * this.financialSeries.xAxis = this.timeXAxis; * this.financialSeries.yAxis = this.numericYAxis; * this.financialSeries.xAxisName = "timeXAxis"; * this.financialSeries.yAxisName = "numericYAxis"; * this.financialSeries.highMemberPath="High" ; * this.financialSeries.lowMemberPath="Low"; * this.financialSeries.closeMemberPath="Close"; * this.financialSeries.openMemberPath="Open"; * this.financialSeries.volumeMemberPath="Volume"; * ``` */ get highMemberPath() { return this.i.zy; } set highMemberPath(v) { this.i.zy = v; } /** * Gets or sets the low mapping property for the current series object. * * The `LowMemberPath` is used for low mapping property of the current series object. * * ```ts * <IgrDataChart * dataSource={this.state.dataSource} * width="700px" * height="500px"> * * * <IgrCategoryXAxis name="xAxis" label="Date" /> * <IgrNumericYAxis name="yAxis" /> * * * <IgrFinancialPriceSeries * name="series2" * xAxisName="xAxis" * yAxisName="yAxis" * displayType="Candlestick" * lowMemberPath="Low" * highMemberPath="High" * openMemberPath="Open" * closeMemberPath="Close" * volumeMemberPath="Volume" /> * * </IgrDataChart> * ``` * * ```ts * this.financialSeries = new IgrFinancialPriceSeries({name: "financialSeries"}); * this.financialSeries.dataSource = this.financialData; * this.financialSeries.xAxis = this.timeXAxis; * this.financialSeries.yAxis = this.numericYAxis; * this.financialSeries.xAxisName = "timeXAxis"; * this.financialSeries.yAxisName = "numericYAxis"; * this.financialSeries.highMemberPath="High" ; * this.financialSeries.lowMemberPath="Low"; * this.financialSeries.closeMemberPath="Close"; * this.financialSeries.openMemberPath="Open"; * this.financialSeries.volumeMemberPath="Volume"; * ``` */ get lowMemberPath() { return this.i.z3; } set lowMemberPath(v) { this.i.z3 = v; } /** * Gets or sets the close mapping property for the current series object. * * Use `CloseMemberPath` property for the close mapping of the current series object. * * ```ts * <IgrDataChart * dataSource={this.state.dataSource} * width="700px" * height="500px"> * * * <IgrCategoryXAxis name="xAxis" label="Date" /> * <IgrNumericYAxis name="yAxis" /> * * * <IgrFinancialPriceSeries * name="series2" * xAxisName="xAxis" * yAxisName="yAxis" * displayType="Candlestick" * lowMemberPath="Low" * highMemberPath="High" * openMemberPath="Open" * closeMemberPath="Close" * volumeMemberPath="Volume" /> * * </IgrDataChart> * ``` * * ```ts * this.financialSeries = new IgrFinancialPriceSeries({name: "financialSeries"}); * this.financialSeries.dataSource = this.financialData; * this.financialSeries.xAxis = this.timeXAxis; * this.financialSeries.yAxis = this.numericYAxis; * this.financialSeries.xAxisName = "timeXAxis"; * this.financialSeries.yAxisName = "numericYAxis"; * this.financialSeries.highMemberPath="High" * this.financialSeries.lowMemberPath="Low" * this.financialSeries.closeMemberPath="Close" * this.financialSeries.openMemberPath="Open" * this.financialSeries.volumeMemberPath="Volume" * ``` */ get closeMemberPath() { return this.i.zl; } set closeMemberPath(v) { this.i.zl = v; } /** * Gets or sets the volume mapping property for the current series object. * * The `VolumeMemberPath` property is used for the volume mapping property of the current series object. * * ```ts * <IgrDataChart * dataSource={this.state.dataSource} * width="700px" * height="500px"> * * * <IgrCategoryXAxis name="xAxis" label="Date" /> * <IgrNumericYAxis name="yAxis" /> * * * <IgrFinancialPriceSeries * name="series2" * xAxisName="xAxis" * yAxisName="yAxis" * displayType="Candlestick" * lowMemberPath="Low" * highMemberPath="High" * openMemberPath="Open" * closeMemberPath="Close" * volumeMemberPath="Volume" /> * </IgrDataChart> * ``` * * ```ts * this.financialSeries = new IgrFinancialPriceSeries({name: "financialSeries"}); * this.financialSeries.dataSource = this.financialData; * this.financialSeries.xAxis = this.timeXAxis; * this.financialSeries.yAxis = this.numericYAxis; * this.financialSeries.xAxisName = "timeXAxis"; * this.financialSeries.yAxisName = "numericYAxis"; * this.financialSeries.highMemberPath="High" ; * this.financialSeries.lowMemberPath="Low"; * this.financialSeries.closeMemberPath="Close"; * this.financialSeries.openMemberPath="Open"; * this.financialSeries.volumeMemberPath="Volume"; * ``` */ get volumeMemberPath() { return this.i.aab; } set volumeMemberPath(v) { this.i.aab = v; } /** * Gets or sets the highlighted X value mapping property for the current series object. */ get highlightedOpenMemberPath() { return this.i.zu; } set highlightedOpenMemberPath(v) { this.i.zu = v; } /** * Gets or sets the highlighted Y value mapping property for the current series object. */ get highlightedHighMemberPath() { return this.i.zq; } set highlightedHighMemberPath(v) { this.i.zq = v; } /** * Gets or sets the highlighted X value mapping property for the current series object. */ get highlightedLowMemberPath() { return this.i.zs; } set highlightedLowMemberPath(v) { this.i.zs = v; } /** * Gets or sets the highlighted Y value mapping property for the current series object. */ get highlightedCloseMemberPath() { return this.i.zo; } set highlightedCloseMemberPath(v) { this.i.zo = v; } /** * Gets or sets the highlighted Y value mapping property for the current series object. */ get highlightedVolumeMemberPath() { return this.i.zw; } set highlightedVolumeMemberPath(v) { this.i.zw = v; } /** * Gets or sets whether this category series should allow custom style overrides of its individual visuals. * * The `IsCustomCategoryStyleAllowed` property is used to check if the category series should allow custom style. * * ```ts * <IgrDataChart * dataSource={this.state.dataSource} * width="700px" * height="500px"> * * * <IgrCategoryXAxis name="xAxis" label="Date" /> * <IgrNumericYAxis name="yAxis" /> * * * <IgrFinancialPriceSeries * name="series2" * xAxisName="xAxis" * yAxisName="yAxis" * displayType="Candlestick" * lowMemberPath="Low" * highMemberPath="High" * openMemberPath="Open" * closeMemberPath="Close" * volumeMemberPath="Volume" * isCustomCategoryStyleAllowed="True" /> * </IgrDataChart> * ``` * * ```ts * series.isCustomCategoryStyleAllowed= true; * ``` */ get isCustomCategoryStyleAllowed() { return this.i.yn; } set isCustomCategoryStyleAllowed(v) { this.i.yn = ensureBool(v); } /** * Gets or sets the method by which to animate the data into the chart when the chart data source is swapped. * Note: Transitions are not currently supported for stacked series. * * The `TransitionInMode` property is used to gets or sets the method by which to animate the data into the chart when the chart data source is swapped. * * ```ts * <IgrDataChart * dataSource={this.state.dataSource} * width="700px" * height="500px"> * * * <IgrCategoryXAxis name="xAxis" label="Date" /> * <IgrNumericYAxis name="yAxis" /> * * * <IgrFinancialPriceSeries * name="series2" * xAxisName="xAxis" * yAxisName="yAxis" * displayType="Candlestick" * lowMemberPath="Low" * highMemberPath="High" * openMemberPath="Open" * closeMemberPath="Close" * volumeMemberPath="Volume" * transitionInMode="Auto"/> * </IgrDataChart> * ``` * * ```ts * series.transitionInMode =CategoryTransitionInMode.Auto; * ``` */ get transitionInMode() { return this.i.xs; } set transitionInMode(v) { this.i.xs = ensureEnum(CategoryTransitionInMode_$type, v); } /** * Gets or sets whether the series should transition into the plot area when a new data source is assigned. * Note: Transitions are not currently supported for stacked series. * * The `IsTransitionInEnabled` property is used to check if the series should transition into the plot area when a new data source is assigned. * * ```ts * <IgrDataChart * dataSource={this.state.dataSource} * width="700px" * height="500px"> * * * <IgrCategoryXAxis name="xAxis" label="Date" /> * <IgrNumericYAxis name="yAxis" /> * * * <IgrFinancialPriceSeries * name="series2" * xAxisName="xAxis" * yAxisName="yAxis" * displayType="Candlestick" * lowMemberPath="Low" * highMemberPath="High" * openMemberPath="Open" * closeMemberPath="Close" * volumeMemberPath="Volume" * isTransitionInEnabled="true" /> * * </IgrDataChart> * ``` * * ```ts * series.isTransitionInEnabled= true; * ``` */ get isTransitionInEnabled() { return this.i.yo; } set isTransitionInEnabled(v) { this.i.yo = ensureBool(v); } /** * Overridden by derived series classes to indicate when negative colors are supported or not. */ get isNegativeColorSupported() { return this.i.fn; } bindAxes(axes) { super.bindAxes(axes); for (let i = 0; i < axes.length; i++) { if (this.xAxisName && this.xAxisName.length > 0 && axes[i].name == this.xAxisName) { this.xAxis = axes[i]; } } for (let i = 0; i < axes.length; i++) { if (this.yAxisName && this.yAxisName.length > 0 && axes[i].name == this.yAxisName) { this.yAxis = axes[i]; } } } findByName(name) { var baseResult = super.findByName(name); if (baseResult) { return baseResult; } if (this.xAxis && this.xAxis.name && this.xAxis.name == name) { return this.xAxis; } if (this.yAxis && this.yAxis.name && this.yAxis.name == name) { return this.yAxis; } return null; } _styling(container, component, parent) { super._styling(container, component, parent); this._inStyling = true; if (this.xAxis && this.xAxis._styling) { this.xAxis._styling(container, component, this); } if (this.yAxis && this.yAxis._styling) { this.yAxis._styling(container, component, this); } this._inStyling = false; } getItemValue(item, memberPathName) { let iv = this.i.ku(item, memberPathName); return (iv); } /** * Gets the value of a requested member path from the series. * @param memberPathName * The property name of a valid member path for the series */ getMemberPathValue(memberPathName) { let iv = this.i.mi(memberPathName); return (iv); } getPreviousOrExactIndex(world, skipUnknowns) { let iv = this.i.ke(toPoint(world), skipUnknowns); return (iv); } getNextOrExactIndex(world, skipUnknowns) { let iv = this.i.kc(toPoint(world), skipUnknowns); return (iv); } /** * Returns the offset value for this series if grouped on a category axis. * * The `GetOffsetValue` method returns the offset value for this series if grouped on a category axis. * * ```ts * number offset= series.getOffsetValue(); * ``` */ getOffsetValue() { let iv = this.i.getOffsetValue(); return (iv); } /** * Returns the width of the category grouping this series is in. * * The `GetCategoryWidth` method returns the width of the category grouping this series is in. * * ```ts * number width = series.getCategoryWidth(); * ``` */ getCategoryWidth() { let iv = this.i.getCategoryWidth(); return (iv); } getSeriesValuePosition(world, useInterpolation, skipUnknowns) { let iv = this.i.wn(toPoint(world), useInterpolation, skipUnknowns); return fromPoint(iv); } getSeriesValue(world, useInterpolation, skipUnknowns) { let iv = this.i.i8(toPoint(world), useInterpolation, skipUnknowns); return (iv); } getSeriesHighValue(world, useInterpolation, skipUnknowns) { let iv = this.i.i4(toPoint(world), useInterpolation, skipUnknowns); return (iv); } getSeriesLowValue(world, useInterpolation, skipUnknowns) { let iv = this.i.i6(toPoint(world), useInterpolation, skipUnknowns); return (iv); } getSeriesCloseValue(world, useInterpolation, skipUnknowns) { let iv = this.i.y9(toPoint(world), useInterpolation, skipUnknowns); return (iv); } getSeriesOpenValue(world, useInterpolation, skipUnknowns) { let iv = this.i.za(toPoint(world), useInterpolation, skipUnknowns); return (iv); } getSeriesVolumeValue(world, useInterpolation, skipUnknowns) { let iv = this.i.zb(toPoint(world), useInterpolation, skipUnknowns); return (iv); } getSeriesHighValuePosition(world, useInterpolation, skipUnknowns) { let iv = this.i.wj(toPoint(world), useInterpolation, skipUnknowns); return fromPoint(iv); } getSeriesLowValuePosition(world, useInterpolation, skipUnknowns) { let iv = this.i.wl(toPoint(world), useInterpolation, skipUnknowns); return fromPoint(iv); } getSeriesOpenValuePosition(world, useInterpolation, skipUnknowns) { let iv = this.i.aa9(toPoint(world), useInterpolation, skipUnknowns); return fromPoint(iv); } getSeriesCloseValuePosition(world, useInterpolation, skipUnknowns) { let iv = this.i.aa8(toPoint(world), useInterpolation, skipUnknowns); return fromPoint(iv); } getSeriesVolumeValuePosition(world, useInterpolation, skipUnknowns) { let iv = this.i.aba(toPoint(world), useInterpolation, skipUnknowns); return fromPoint(iv); } /** * Determine if object can be used as YAxis * @param axis * The object to check * * Use `CanUseAsYAxis` method to determine if the object can be used as YAxis. * * ```ts * boolean canY =series.canUseAsYAxis(yAxis); * ``` */ canUseAsYAxis(axis) { let iv = this.i.yk(axis); return (iv); } /** * Determine if object can be used as XAxis * @param axis * The object to check * * Use `CanUseAsXAxis` method to determine if the object can be used as XAxis. * * ```ts * boolean canX =series.canUseAsXAxis(xAxis); * ``` */ canUseAsXAxis(axis) { let iv = this.i.yj(axis); return (iv); } /** * Gets the precise item index, if possible, based on the closeness to the previous or next whole integer. If the series cannot provide this information, GetExactItemIndex will return the same integer value as GetItemIndex. * @param world * The world position for which to return the index. * * The `GetExactItemIndex` method gets the precise item index, if possible, based on the closeness to the previous or next whole integer. * * If the series cannot provide this information, GetExactItemIndex will return the same integer value as GetItemIndex. * * ```ts * number index = series.getExactItemIndex(world); * ``` */ getExactItemIndex(world) { let iv = this.i.it(toPoint(world)); return (iv); } /** * Gets the index of the item that resides at the provided world coordinates. * @param world * The world coordinates of the requested item. * * The `GetItemIndex` method gets the index of the item that resides at the provided world coordinates. * * ```ts * number itemindex= series.getItemIndex(world); * ``` */ getItemIndex(world) { let iv = this.i.j7(toPoint(world)); return (iv); } /** * Gets the item that is the best match for the specified world coordinates. * @param world * The world coordinates to use. * * The `GetItem` method gets the item that is the best match for the specified world coordinates. */ getItem(world) { let iv = this.i.kr(toPoint(world)); return (iv); } setNegativeColors(negativeBrush, negativeOutline) { this.i.sc(stringToBrush(negativeBrush), stringToBrush(negativeOutline)); } /** * Event raised when Assigning Category Style * * The `AssigningCategoryStyle` event raised when assigning Category Style. * * ```ts * series.assigningCategoryStyle= this.chart_AssigningCategoryStyle; * chart_AssigningCategoryStyle(sender :any,args: AssigningCategoryStyleEventArgs ) * { * * * } * ``` * * ```ts * <IgrDataChart * ref={this.onChartRef} * dataSource={this.data} * width="100%" * height="100%" > * * <IgrCategoryXAxis name="xAxis" label="Label" /> * <IgrNumericYAxis name="yAxis" /> * * <IgrFinancialPriceSeries * name="series1" * xAxisName="xAxis" * yAxisName="yAxis" * highMemberPath="High" * lowMemberPath="Low" * closeMemberPath="Close" * openMemberPath="Open" * volumeMemberPath="Volume" * trendLineType={this.state.trendLineType} * displayType= "Candlestick" * trendLinePeriod = {2} * actualTrendLineBrush= "blue" * assigningCategoryStyle ={this.chart_assigningCategoryStyle}/> * * </IgrDataChart> * ``` * * ```ts * series.assigningCategoryStyle= this.chart_AssigningCategoryStyle; * chart_AssigningCategoryStyle(sender :IgrFinancialSeries,args: AssigningCategoryStyleEventArgs ) * { * * * } * ``` */ get assigningCategoryStyle() { return this._assigningCategoryStyle; } set assigningCategoryStyle(ev) { if (this._assigningCategoryStyle_wrapped !== null) { this.i.assigningCategoryStyle = delegateRemove(this.i.assigningCategoryStyle, this._assigningCategoryStyle_wrapped); this._assigningCategoryStyle_wrapped = null; this._assigningCategoryStyle = null; } this._assigningCategoryStyle = ev; this._assigningCategoryStyle_wrapped = (o, e) => { let outerArgs = new IgrAssigningCategoryStyleEventArgs(); outerArgs._provideImplementation(e); if (this.beforeAssigningCategoryStyle) { this.beforeAssigningCategoryStyle(this, outerArgs); } if (this._assigningCategoryStyle) { this._assigningCategoryStyle(this, outerArgs); } }; this.i.assigningCategoryStyle = delegateCombine(this.i.assigningCategoryStyle, this._assigningCategoryStyle_wrapped); ; } /** * Handle this event in order to perform a custom typical price calculation. * * Use `Typical` event to perform a custom typical price calculation. * * ```ts * series.typical= this.chart_typical; * * chart_typical(sender :any,args: FinancialEventArgs ) * { * * * } * ``` * * ```ts * <IgrDataChart * ref={this.onChartRef} * dataSource={this.data} * width="100%" * height="100%" > * * <IgrCategoryXAxis name="xAxis" label="Label" /> * <IgrNumericYAxis name="yAxis" /> * * <IgrFinancialPriceSeries * name="series1" * xAxisName="xAxis" * yAxisName="yAxis" * highMemberPath="High" * lowMemberPath="Low" * closeMemberPath="Close" * openMemberPath="Open" * volumeMemberPath="Volume" * trendLineType={this.state.trendLineType} * displayType= "Candlestick" * trendLinePeriod = {2} * actualTrendLineBrush= "blue" * typical ={this.chart_typical}/> * * </IgrDataChart> * ``` * * ```ts * this.financialSeries.typical=this.chart_typical; * } * public chart_typical =( s:IgrFinancialSeries, e: FinancialEventArgs) => { * * } * ``` */ get typical() { return this._typical; } set typical(ev) { if (this._typical_wrapped !== null) { this.i.typical = delegateRemove(this.i.typical, this._typical_wrapped); this._typical_wrapped = null; this._typical = null; } this._typical = ev; this._typical_wrapped = (o, e) => { let outerArgs = new IgrFinancialEventArgs(); outerArgs._provideImplementation(e); if (this.beforeTypical) { this.beforeTypical(this, outerArgs); } if (this._typical) { this._typical(this, outerArgs); } }; this.i.typical = delegateCombine(this.i.typical, this._typical_wrapped); ; } /** * Handle this event in order to specify which columns the Typical price calculation is based on. * * Use `TypicalBasedOn` event to specify which columns the Typical price calculation is based on. * * ```ts * series.typicalBasedOn= this.chart_typicalBasedOn; * chart_typicalBasedOn(sender :any,args: FinancialEventArgs ) * { * * } * ``` * * ````ts * <IgrDataChart * ref={this.onChartRef} * dataSource={this.data} * width="100%" * height="100%" > * * <IgrCategoryXAxis name="xAxis" label="Label" /> * <IgrNumericYAxis name="yAxis" /> * * <IgrFinancialPriceSeries * name="series1" * xAxisName="xAxis" * yAxisName="yAxis" * highMemberPath="High" * lowMemberPath="Low" * closeMemberPath="Close" * openMemberPath="Open" * volumeMemberPath="Volume" * trendLineType={this.state.trendLineType} * displayType= "Candlestick" * trendLinePeriod = {2} * actualTrendLineBrush= "blue" * typicalBasedOn ={this.chart_typicalBasedOn}/> * * </IgrDataChart> * ``` * * ```ts * this.financialSeries.typicalBasedOn=this.chart_typicalBasedOn; * public chart_typicalBasedOn =( s:IgrFinancialSeries, e: FinancialEventArgs) => { * * } * ```` */ get typicalBasedOn() { return this._typicalBasedOn; } set typicalBasedOn(ev) { if (this._typicalBasedOn_wrapped !== null) { this.i.typicalBasedOn = delegateRemove(this.i.typicalBasedOn, this._typicalBasedOn_wrapped); this._typicalBasedOn_wrapped = null; this._typicalBasedOn = null; } this._typicalBasedOn = ev; this._typicalBasedOn_wrapped = (o, e) => { let outerArgs = new IgrFinancialEventArgs(); outerArgs._provideImplementation(e); if (this.beforeTypicalBasedOn) { this.beforeTypicalBasedOn(this, outerArgs); } if (this._typicalBasedOn) { this._typicalBasedOn(this, outerArgs); } }; this.i.typicalBasedOn = delegateCombine(this.i.typicalBasedOn, this._typicalBasedOn_wrapped); ; } }