Represents the base class for all IgbDataChart radial series
InheritanceSystem.Object
IgbRadialBase
ImplementsSystem.IDisposable
Namespace: IgniteUI.Blazor.Controls Assembly: IgniteUI.Blazor.dll Syntaxpublic class IgbRadialBase : IgbMarkerSeries, JsonSerializable, IDisposable
Constructors IgbRadialBase() Declaration Properties AngleAxis
Gets the effective angle axis for the current series object.
Declarationpublic IgbCategoryAngleAxis AngleAxis { get; set; }
Property Value AngleAxisName
Gets or sets the name to use to resolve angleAxis from markup.
Declarationpublic string AngleAxisName { get; set; }
Property Value Type Description System.String AngleAxisScript
Provides a means of setting AngleAxis in the JavaScript environment.
Declarationpublic string AngleAxisScript { get; set; }
Property Value Type Description System.String AssigningRadialMarkerStyle Declaration
public Action<IgbAssigningRadialMarkerStyleEventArgs> AssigningRadialMarkerStyle { get; set; }
Property Value AssigningRadialMarkerStyleScript Declaration
public string AssigningRadialMarkerStyleScript { get; set; }
Property Value Type Description System.String AssigningRadialStyle Declaration
public Action<IgbAssigningRadialStyleEventArgs> AssigningRadialStyle { get; set; }
Property Value AssigningRadialStyleScript Declaration
public string AssigningRadialStyleScript { get; set; }
Property Value Type Description System.String AutoCalloutLabelPrecision Declaration
public int AutoCalloutLabelPrecision { get; set; }
Property Value Type Description System.Int32 AutoCalloutLabelValueSeparator Declaration
public string AutoCalloutLabelValueSeparator { get; set; }
Property Value Type Description System.String AutoCalloutOthersLabelFormat Declaration
public string AutoCalloutOthersLabelFormat { get; set; }
Property Value Type Description System.String AutoCalloutOthersLabelFormatSpecifiers Declaration
public IgbFormatSpecifierCollection AutoCalloutOthersLabelFormatSpecifiers { get; set; }
Property Value AutoCalloutPercentagePrecision Declaration
public int AutoCalloutPercentagePrecision { get; set; }
Property Value Type Description System.Int32 AutoCalloutRadialLabelMode Declaration
public RadialLabelMode AutoCalloutRadialLabelMode { get; set; }
Property Value CategoryCollisionMode Declaration
public CategoryCollisionMode CategoryCollisionMode { get; set; }
Property Value ClipSeriesToBounds
Gets or sets whether to clip the series to the bounds.
Declarationpublic bool ClipSeriesToBounds { get; set; }
Property Value Type Description System.Boolean IsCustomRadialMarkerStyleAllowed
Gets or sets whether this Radial series should allow custom style overrides of its individual marker visuals.
Declarationpublic bool IsCustomRadialMarkerStyleAllowed { get; set; }
Property Value Type Description System.Boolean IsCustomRadialStyleAllowed
Gets or sets whether this Radial series should allow custom style overrides of its individual visuals.
Declarationpublic bool IsCustomRadialStyleAllowed { get; set; }
Property Value Type Description System.Boolean IsTransitionInEnabled Declaration
public bool IsTransitionInEnabled { get; set; }
Property Value Type Description System.Boolean LegendProportionalRadialLabelFormat Declaration
public string LegendProportionalRadialLabelFormat { get; set; }
Property Value Type Description System.String LegendProportionalRadialLabelFormatSpecifiers Declaration
public IgbFormatSpecifierCollection LegendProportionalRadialLabelFormatSpecifiers { get; set; }
Property Value LegendRadialLabelMode Declaration
public RadialLabelMode LegendRadialLabelMode { get; set; }
Property Value OthersLegendProportionalRadialLabelFormat Declaration
public string OthersLegendProportionalRadialLabelFormat { get; set; }
Property Value Type Description System.String OthersLegendProportionalRadialLabelFormatSpecifiers Declaration
public IgbFormatSpecifierCollection OthersLegendProportionalRadialLabelFormatSpecifiers { get; set; }
Property Value OthersProportionalRadialLabelFormat Declaration
public string OthersProportionalRadialLabelFormat { get; set; }
Property Value Type Description System.String OthersProportionalRadialLabelFormatSpecifiers Declaration
public IgbFormatSpecifierCollection OthersProportionalRadialLabelFormatSpecifiers { get; set; }
Property Value ProportionalRadialLabelFormat Declaration
public string ProportionalRadialLabelFormat { get; set; }
Property Value Type Description System.String ProportionalRadialLabelFormatSpecifiers Declaration
public IgbFormatSpecifierCollection ProportionalRadialLabelFormatSpecifiers { get; set; }
Property Value TransitionInMode Declaration
public CategoryTransitionInMode TransitionInMode { get; set; }
Property Value Type Declaration
public override string Type { get; }
Property Value Type Description System.String Overrides ValueAxis
Gets the effective value axis for the current series object.
Declarationpublic IgbNumericRadiusAxis ValueAxis { get; set; }
Property Value ValueAxisName
Gets or sets the name to use to resolve valueAxis from markup.
Declarationpublic string ValueAxisName { get; set; }
Property Value Type Description System.String ValueAxisScript
Provides a means of setting ValueAxis in the JavaScript environment.
Declarationpublic string ValueAxisScript { get; set; }
Property Value Type Description System.String Methods BindAxes(IgbAxis[]) Declaration
protected override void BindAxes(IgbAxis[] Axes)
Parameters Type Name Description IgbAxis[] Axes Overrides CanUseAsAngleAxis(Object) Declaration
public bool CanUseAsAngleAxis(object axis)
Parameters Type Name Description System.Object axis Returns Type Description System.Boolean CanUseAsAngleAxisAsync(Object)
Determine if object can be used as AngleAxis
Declarationpublic Task<bool> CanUseAsAngleAxisAsync(object axis)
Parameters Type Name Description System.Object axis
The object to check
Returns Type Description System.Threading.Tasks.Task<System.Boolean> CanUseAsValueAxis(Object) Declarationpublic bool CanUseAsValueAxis(object axis)
Parameters Type Name Description System.Object axis Returns Type Description System.Boolean CanUseAsValueAxisAsync(Object)
Determine if object can be used as ValueAxis
Declarationpublic Task<bool> CanUseAsValueAxisAsync(object axis)
Parameters Type Name Description System.Object axis
The object to check
Returns Type Description System.Threading.Tasks.Task<System.Boolean> FindByName(String) Declarationpublic override object FindByName(string name)
Parameters Type Name Description System.String name Returns Type Description System.Object Overrides GetAngleFromWorld(Point) Declaration
public virtual double GetAngleFromWorld(Point world)
Parameters Type Name Description Point world Returns Type Description System.Double GetAngleFromWorldAsync(Point)
Gets the angle to the provided world position from the center of the radial series.
Declarationpublic virtual Task<double> GetAngleFromWorldAsync(Point world)
Parameters Type Name Description Point world
The world position to get the angle for
Returns Type Description System.Threading.Tasks.Task<System.Double> GetCategoryWidth() Declarationpublic virtual double GetCategoryWidth()
Returns Type Description System.Double GetCategoryWidthAsync()
Returns the width of the category grouping this series is in.
Declarationpublic virtual Task<double> GetCategoryWidthAsync()
Returns Type Description System.Threading.Tasks.Task<System.Double> GetExactItemIndex(Point) Declaration
public override double GetExactItemIndex(Point world)
Parameters Type Name Description Point world Returns Type Description System.Double Overrides GetExactItemIndexAsync(Point)
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.
Declarationpublic override Task<double> GetExactItemIndexAsync(Point world)
Parameters Type Name Description Point world
The world position for which to return the index.
Returns Type Description System.Threading.Tasks.Task<System.Double> Overrides GetItem(Point) Declarationpublic 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.
Declarationpublic 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) Declarationpublic override int GetItemIndex(Point world)
Parameters Type Name Description Point world Returns Type Description System.Int32 Overrides GetItemIndexAsync(Point)
Get the index of the item near the provided world coordinates.
Declarationpublic override Task<int> GetItemIndexAsync(Point world)
Parameters Type Name Description Point world
The world coordinates for which to getch the item index.
Returns Type Description System.Threading.Tasks.Task<System.Int32> Overrides GetOffsetValue() Declarationpublic virtual double GetOffsetValue()
Returns Type Description System.Double GetOffsetValueAsync()
Returns the offset value for this series if grouped on a category axis.
Declarationpublic virtual Task<double> GetOffsetValueAsync()
Returns Type Description System.Threading.Tasks.Task<System.Double> ScrollIntoView(Object) Declaration
public override bool ScrollIntoView(object item)
Parameters Type Name Description System.Object item Returns Type Description System.Boolean Overrides ScrollIntoViewAsync(Object)
Scrolls the specified item into the view.
Declarationpublic override Task<bool> ScrollIntoViewAsync(object item)
Parameters Type Name Description System.Object item
The item to scroll into view.
Returns Type Description System.Threading.Tasks.Task<System.Boolean> Overrides ImplementsSystem.IDisposable
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4