Gets the end date
Gets the end date
Gets the end index
Gets the end index
Gets or sets fill brush to use for the current item.
Gets or sets fill brush to use for the current item.
Gets a function that will return the items associated with this event.
Gets a function that will return the items associated with this event.
Gets if this event has a valid date range
Gets if this event has a valid date range
Gets or sets if highlighting was handled by this event handler, and whether internal highlighting logic should be skipped.
Gets or sets if highlighting was handled by this event handler, and whether internal highlighting logic should be skipped.
Gets or sets highlighting info
Gets or sets highlighting info
Gets if the current shape is identified as a negative shape if this series supports discrete negative shapes.
Gets if the current shape is identified as a negative shape if this series supports discrete negative shapes.
Gets if the current event is being raised for the thumbnail image.
Gets if the current event is being raised for the thumbnail image.
Gets the max highlighting progress from all series.
Gets the max highlighting progress from all series.
Gets or sets opacity to use for the current item.
Gets or sets opacity to use for the current item.
Gets or sets corner radius X to use for the current item, if applicable.
Use the radiusX
property to round the corners of the column.
public onAssigningCategoryMarkerStyle =( s:IgrCategorySeries, e: AssigningCategoryStyleEventArgs) => {
e.radiusX = 5;
}
Gets or sets corner radius X to use for the current item, if applicable.
Use the radiusX
property to round the corners of the column.
public onAssigningCategoryMarkerStyle =( s:IgrCategorySeries, e: AssigningCategoryStyleEventArgs) => {
e.radiusX = 5;
}
Gets or sets corner radius Y to use for the current item, if applicable.
Use the radiusY
property for the y-radius of the ellipse that is used to round the corners of the column.
public onAssigningCategoryMarkerStyle =( s:IgrCategorySeries<IIgrRangeAreaSeriesProps>, e: AssigningCategoryStyleEventArgs) => {
e.radiusY = 5;
}
Gets or sets corner radius Y to use for the current item, if applicable.
Use the radiusY
property for the y-radius of the ellipse that is used to round the corners of the column.
public onAssigningCategoryMarkerStyle =( s:IgrCategorySeries<IIgrRangeAreaSeriesProps>, e: AssigningCategoryStyleEventArgs) => {
e.radiusY = 5;
}
Gets the start date
Gets the start date
Gets the start index
Gets the start index
Gets or sets stroke to use for the current item.
Gets or sets stroke to use for the current item.
Gets or sets stroke thickness to use for the current item.
Used the strokeThickness
proprty for the current item thickness.
public onAssigningCategoryMarkerStyle =( s:IgrCategorySeries , e: AssigningCategoryStyleEventArgs) => {
e.strokeThickness = 5;
}
Gets or sets stroke thickness to use for the current item.
Used the strokeThickness
proprty for the current item thickness.
public onAssigningCategoryMarkerStyle =( s:IgrCategorySeries , e: AssigningCategoryStyleEventArgs) => {
e.strokeThickness = 5;
}
Gets the sum of highlighting progress from all series.
Gets the sum of highlighting progress from all series.
Represents event arguments class for the AssigningCategoryStyleEvent
The
AssigningCategoryStyle
event fired to allow you to override the style of items in a category or financial series<IgrDataChart dataSource={this.state.dataSource} width="700px" height="500px"> <IgrCategoryXAxis name="xAxis" label="Year" /> <IgrNumericYAxis name="yAxis" /> <IgrRangeColumnSeries name="series1" xAxisName="xAxis" yAxisName="yAxis" highMemberPath="High" lowMemberPath="Low" isCustomCategoryStyleAllowed="true" assigningCategoryMarkerStyle= {this.onAssigningCategoryStyle} /> </IgrDataChart>
series1.assigningCategoryStyle = this.onAssigningCategoryStyle ; public onAssigningCategoryStyle =( s:IgrCategorySeries , e: AssigningCategoryStyleEventArgs) => { }