Class IgbValueOverlay
Represents the class of the value overlay. The value overlay is a line or circle representing a value on an axis.
Inheritance
System.Object
IgbValueOverlay
Implements
System.IDisposable
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbValueOverlay : IgbSeries, JsonSerializable
Constructors
IgbValueOverlay()
Declaration
Properties
Axis
Gets or sets the axis used by the value overlay.
Declaration
public IgbAxis Axis { get; set; }
Property Value
AxisAnnotationBackground
Gets or sets the color to use for the axis annotation backing. Leave unset for an automatic value.
Declaration
public string AxisAnnotationBackground { get; set; }
Property Value
Type |
Description |
System.String |
|
AxisAnnotationBackgroundCornerRadius
Gets or sets the corner radius to use for the axis annotation backing. Leave unset for an automatic value.
Declaration
public double AxisAnnotationBackgroundCornerRadius { get; set; }
Property Value
Type |
Description |
System.Double |
|
AxisAnnotationInterpolatedValuePrecision
Gets or sets the precision to use displaying values for interpolated positions.
Declaration
public int AxisAnnotationInterpolatedValuePrecision { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
AxisAnnotationOutline
Gets or sets the color to use for the axis annotation outline. Leave unset for an automatic value.
Declaration
public string AxisAnnotationOutline { get; set; }
Property Value
Type |
Description |
System.String |
|
AxisAnnotationPaddingBottom
Gets or sets the padding to use withing the axis annotation callout. Leaving this NaN will use an automatic value related to the axis label margins.
Declaration
public double AxisAnnotationPaddingBottom { get; set; }
Property Value
Type |
Description |
System.Double |
|
AxisAnnotationPaddingLeft
Gets or sets the padding to use withing the axis annotation callout. Leaving this NaN will use an automatic value related to the axis label margins.
Declaration
public double AxisAnnotationPaddingLeft { get; set; }
Property Value
Type |
Description |
System.Double |
|
AxisAnnotationPaddingRight
Gets or sets the padding to use withing the axis annotation callout. Leaving this NaN will use an automatic value related to the axis label margins.
Declaration
public double AxisAnnotationPaddingRight { get; set; }
Property Value
Type |
Description |
System.Double |
|
AxisAnnotationPaddingTop
Gets or sets the padding to use withing the axis annotation callout. Leaving this NaN will use an automatic value related to the axis label margins.
Declaration
public double AxisAnnotationPaddingTop { get; set; }
Property Value
Type |
Description |
System.Double |
|
AxisAnnotationStrokeThickness
Gets or sets the stroke thickness for the axis annotation backing. Leave unset for an automatic value.
Declaration
public double AxisAnnotationStrokeThickness { get; set; }
Property Value
Type |
Description |
System.Double |
|
AxisAnnotationTextColor
Gets or sets the color to use for the axis annotation text. Leave unset for an automatic value.
Declaration
public string AxisAnnotationTextColor { get; set; }
Property Value
Type |
Description |
System.String |
|
AxisName
Gets or sets the name to use to resolve axis from markup.
Declaration
public string AxisName { get; set; }
Property Value
Type |
Description |
System.String |
|
AxisScript
Provides a means of setting Axis in the JavaScript environment.
Declaration
public string AxisScript { get; set; }
Property Value
Type |
Description |
System.String |
|
IsAxisAnnotationEnabled
Gets or sets whether to draw annotations over the axes where the crosshair meets with them.
Declaration
public bool IsAxisAnnotationEnabled { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Type
Declaration
public override string Type { get; }
Property Value
Type |
Description |
System.String |
|
Overrides
Value
Gets or sets the value of the overlay.
Declaration
public double Value { get; set; }
Property Value
Type |
Description |
System.Double |
|
Methods
BindAxes(IgbAxis[])
Declaration
protected override void BindAxes(IgbAxis[] Axes)
Parameters
Type |
Name |
Description |
IgbAxis[] |
Axes |
|
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
GetItem(Point)
Declaration
public override object GetItem(Point world)
Parameters
Type |
Name |
Description |
Point |
world |
|
Returns
Type |
Description |
System.Object |
|
Overrides
GetItemAsync(Point)
Gets the item that is the best match for the specified world coordinates.
Declaration
public override Task<object> GetItemAsync(Point world)
Parameters
Type |
Name |
Description |
Point |
world |
The world coordinates to use.
|
Returns
Type |
Description |
System.Threading.Tasks.Task<System.Object> |
|
Overrides
GetItemIndex(Point)
Declaration
public override int GetItemIndex(Point world)
Parameters
Type |
Name |
Description |
Point |
world |
|
Returns
Type |
Description |
System.Int32 |
|
Overrides
GetItemIndexAsync(Point)
Gets the item index associated with the specified world position
Declaration
public override Task<int> GetItemIndexAsync(Point world)
Parameters
Type |
Name |
Description |
Point |
world |
|
Returns
Type |
Description |
System.Threading.Tasks.Task<System.Int32> |
|
Overrides
GetLabel(Double)
Declaration
public string GetLabel(double value)
Parameters
Type |
Name |
Description |
System.Double |
value |
|
Returns
Type |
Description |
System.String |
|
GetLabelAsync(Double)
Gets the label for a data item.
Declaration
public Task<string> GetLabelAsync(double value)
Parameters
Type |
Name |
Description |
System.Double |
value |
The unscaled value to get a label for.
|
Returns
Type |
Description |
System.Threading.Tasks.Task<System.String> |
|
GetSeriesValue(Point, Boolean, Boolean)
Declaration
public override double GetSeriesValue(Point world, bool useInterpolation, bool skipUnknowns)
Parameters
Type |
Name |
Description |
Point |
world |
|
System.Boolean |
useInterpolation |
|
System.Boolean |
skipUnknowns |
|
Returns
Type |
Description |
System.Double |
|
Overrides
GetSeriesValueAsync(Point, Boolean, Boolean)
Declaration
public override Task<double> GetSeriesValueAsync(Point world, bool useInterpolation, bool skipUnknowns)
Parameters
Type |
Name |
Description |
Point |
world |
|
System.Boolean |
useInterpolation |
|
System.Boolean |
skipUnknowns |
|
Returns
Type |
Description |
System.Threading.Tasks.Task<System.Double> |
|
Overrides
GetSeriesValuePosition(Point, Boolean, Boolean)
Declaration
public override Point GetSeriesValuePosition(Point world, bool useInterpolation, bool skipUnknowns)
Parameters
Type |
Name |
Description |
Point |
world |
|
System.Boolean |
useInterpolation |
|
System.Boolean |
skipUnknowns |
|
Returns
Overrides
GetSeriesValuePositionAsync(Point, Boolean, Boolean)
Declaration
public override Task<Point> GetSeriesValuePositionAsync(Point world, bool useInterpolation, bool skipUnknowns)
Parameters
Type |
Name |
Description |
Point |
world |
|
System.Boolean |
useInterpolation |
|
System.Boolean |
skipUnknowns |
|
Returns
Type |
Description |
System.Threading.Tasks.Task<Point> |
|
Overrides
Declaration
public override bool ScrollIntoView(object item)
Parameters
Type |
Name |
Description |
System.Object |
item |
|
Returns
Type |
Description |
System.Boolean |
|
Overrides
Requests that the provided item should be brought into view if possible.
Declaration
public override Task<bool> ScrollIntoViewAsync(object item)
Parameters
Type |
Name |
Description |
System.Object |
item |
The item to attempt to bring into view.
|
Returns
Type |
Description |
System.Threading.Tasks.Task<System.Boolean> |
|
Overrides
Implements
System.IDisposable