Class IgbUserPointAnnotation
Represents an user annotation for rendering data point annotation on a series
Inheritance
System.Object
IgbUserPointAnnotation
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbUserPointAnnotation : IgbUserBaseAnnotation, JsonSerializable
Constructors
IgbUserPointAnnotation()
Declaration
public IgbUserPointAnnotation()
Properties
TargetSeries
Gets or sets the target series that will display the annotation.
Declaration
public IgbSeries TargetSeries { get; set; }
Property Value
TargetSeriesMatcher
Gets or sets a matcher for matching a series that will display the annotation.
Declaration
public IgbSeriesMatcher TargetSeriesMatcher { get; set; }
Property Value
TargetSeriesName
Gets or sets the name to use to resolve targetSeries from markup.
Declaration
public string TargetSeriesName { get; set; }
Property Value
| Type |
Description |
| System.String |
|
TargetSeriesScript
Provides a means of setting TargetSeries in the JavaScript environment.
Declaration
public string TargetSeriesScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Type
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
XValue
Gets or sets the value that determines location of the annotation in the coordinates of x-axis.
Declaration
public double XValue { get; set; }
Property Value
| Type |
Description |
| System.Double |
|
YValue
Gets or sets the value that determines location of the annotation in the coordinates of y-axis.
Declaration
public double YValue { get; set; }
Property Value
| Type |
Description |
| System.Double |
|
Methods
BindSeries(IgbSeries[])
Declaration
protected override void BindSeries(IgbSeries[] Series)
Parameters
Overrides
EnsureModulesLoaded()
Declaration
protected override void EnsureModulesLoaded()
Overrides
FindByName(String)
Declaration
public override object FindByName(string name)
Parameters
| Type |
Name |
Description |
| System.String |
name |
|
Returns
| Type |
Description |
| System.Object |
|
Overrides
FromEventJson(BaseRendererControl, Dictionary<String, Object>)
Declaration
protected override void FromEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
| Type |
Name |
Description |
| BaseRendererControl |
control |
|
| System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
ToEventJson(BaseRendererControl, Dictionary<String, Object>)
Declaration
protected override void ToEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
| Type |
Name |
Description |
| BaseRendererControl |
control |
|
| System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
Implements