Represent info about series values

Implements
  • IComponent
  • IHandleEvent
  • IHandleAfterRender
  • JsonSerializable

constructor

public IgbDataLegendSeriesContext()

Returns IgbDataLegendSeriesContext

Inherited from: BaseRendererElement

[Inject]
protected IIgniteUIBlazor IgBlazor { get; set; }

Inherited from: BaseRendererElement

public bool IsComponentRooted { get; }

Inherited from: BaseRendererElement

protected virtual string ParentTypeName { get; }

Inherited from: BaseRendererElement

protected virtual bool UseDirectRender { get; }

Inherited from: BaseRendererElement

[Parameter]
public RenderFragment ChildContent { get; set; }

Inherited from: BaseRendererElement

protected virtual bool SupportsVisualChildren { get; }

Inherited from: BaseRendererElement

[Parameter]
public string Name { get; set; }

Inherited from: BaseRendererElement

public object Parent { get; }

Inherited from: BaseRendererElement

protected virtual string MethodTarget { get; }

Inherited from: BaseRendererElement

protected object CurrParent { get; }

Gets a family of series that the current series belongs to, e.g. Category, Range, Financial, etc.

[Parameter]
public string SeriesFamily { get; set; }
public override string Type { get; }

Inherited from: BaseRendererElement

protected string _name

Inherited from: BaseRendererElement

protected Dictionary<Type, Dictionary<string, FieldInfo>> eventCallbacksCache

Inherited from: BaseRendererElement

protected string _cachedSerializedContent

Inherited from: BaseRendererElement

protected virtual void EnsureModulesLoaded()

Returns any

Inherited from: BaseRendererElement

protected override void BuildRenderTree(RenderTreeBuilder builder)

Parameters

  • builder: RenderTreeBuilder

Returns any

OnElementNameChanged(BaseRendererElement, string, string)

Section titled "OnElementNameChanged(BaseRendererElement, string, string)"

Inherited from: BaseRendererElement

protected void OnElementNameChanged(BaseRendererElement element, string oldName, string newName)

Parameters

  • element: BaseRendererElement
  • oldName: string
  • newName: string

Returns any

InvokeMethod(string, object[], string[], ElementReference[])

Section titled "InvokeMethod(string, object[], string[], ElementReference[])"

Inherited from: BaseRendererElement

protected Task<object> InvokeMethod(string methodName, object[] arguments, string[] types, ElementReference[] nativeElements = null)

Parameters

  • methodName: string
  • arguments: object[]
  • types: string[]
  • nativeElements: ElementReference[]

Returns any

InvokeMethodSync(string, object[], string[], ElementReference[])

Section titled "InvokeMethodSync(string, object[], string[], ElementReference[])"

Inherited from: BaseRendererElement

protected object InvokeMethodSync(string methodName, object[] arguments, string[] types, ElementReference[] nativeElements = null)

Parameters

  • methodName: string
  • arguments: object[]
  • types: string[]
  • nativeElements: ElementReference[]

Returns any

InvokeMethodHelper(string, string, object[], string[], ElementReference[])

Section titled "InvokeMethodHelper(string, string, object[], string[], ElementReference[])"

Inherited from: BaseRendererElement

protected Task<object> InvokeMethodHelper(string target, string methodName, object[] arguments, string[] types, ElementReference[] nativeElements)

Parameters

  • target: string
  • methodName: string
  • arguments: object[]
  • types: string[]
  • nativeElements: ElementReference[]

Returns any

InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])

Section titled "InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])"

Inherited from: BaseRendererElement

protected object InvokeMethodHelperSync(string target, string methodName, object[] arguments, string[] types, ElementReference[] nativeElements)

Parameters

  • target: string
  • methodName: string
  • arguments: object[]
  • types: string[]
  • nativeElements: ElementReference[]

Returns any

Inherited from: BaseRendererElement

protected bool IsPropDirty(string propertyName)

Parameters

  • propertyName: string

Returns any

Serialize(SerializationContext, string)

Section titled "Serialize(SerializationContext, string)"

Inherited from: BaseRendererElement

public void Serialize(SerializationContext context, string propertyName = null)

Parameters

  • context: SerializationContext
  • propertyName: string

Returns any

Inherited from: BaseRendererElement

public string Serialize()

Returns any

Inherited from: BaseRendererElement

protected void EnsureValid()

Returns any

FromEventJson(BaseRendererControl, Dictionary<string, object>)

Section titled "FromEventJson(BaseRendererControl, Dictionary<string, object>)"

Inherited from: BaseRendererElement

protected virtual void FromEventJson(BaseRendererControl control, Dictionary<string, object> args)

Parameters

  • control: BaseRendererControl
  • args: Dictionary

Returns any

ToEventJson(BaseRendererControl, Dictionary<string, object>)

Section titled "ToEventJson(BaseRendererControl, Dictionary<string, object>)"

Inherited from: BaseRendererElement

protected virtual void ToEventJson(BaseRendererControl control, Dictionary<string, object> args)

Parameters

  • control: BaseRendererControl
  • args: Dictionary

Returns any

SetResourceStringAsync(string, string, string)

Section titled "SetResourceStringAsync(string, string, string)"

Inherited from: BaseRendererElement

protected Task<object> SetResourceStringAsync(string grouping, string id, string value)

Parameters

  • grouping: string
  • id: string
  • value: string

Returns any

SetResourceStringAsync(string, string)

Section titled "SetResourceStringAsync(string, string)"

Inherited from: BaseRendererElement

protected Task<object> SetResourceStringAsync(string grouping, string json)

Parameters

  • grouping: string
  • json: string

Returns any

public override object FindByName(string name)

Parameters

  • name: string

Returns any

GetSeriesValue(DataLegendSeriesValueType)

Section titled "GetSeriesValue(DataLegendSeriesValueType)"
public double GetSeriesValue(DataLegendSeriesValueType type)

Parameters

  • type: DataLegendSeriesValueType

Returns any

GetSeriesValueAsync(DataLegendSeriesValueType)

Section titled "GetSeriesValueAsync(DataLegendSeriesValueType)"

Gets value info for the series value type

public Task<double> GetSeriesValueAsync(DataLegendSeriesValueType type)

Parameters

  • type: DataLegendSeriesValueType

Returns any

GetSeriesValueInfo(DataLegendSeriesValueType)

Section titled "GetSeriesValueInfo(DataLegendSeriesValueType)"
public IgbDataLegendSeriesValueInfo GetSeriesValueInfo(DataLegendSeriesValueType type)

Parameters

  • type: DataLegendSeriesValueType

Returns any

GetSeriesValueInfoAsync(DataLegendSeriesValueType)

Section titled "GetSeriesValueInfoAsync(DataLegendSeriesValueType)"

Creates an instance of DataLegendSeriesContext

public Task<IgbDataLegendSeriesValueInfo> GetSeriesValueInfoAsync(DataLegendSeriesValueType type)

Parameters

  • type: DataLegendSeriesValueType

Returns any

public double[] GetSeriesValues()

Returns any

Gets all values that a series renders at the current data point

public Task<double[]> GetSeriesValuesAsync()

Returns any

SetSeriesValue(DataLegendSeriesValueType, double)

Section titled "SetSeriesValue(DataLegendSeriesValueType, double)"
public void SetSeriesValue(DataLegendSeriesValueType type, double value)

Parameters

  • type: DataLegendSeriesValueType
  • value: double

Returns any

SetSeriesValueAsync(DataLegendSeriesValueType, double)

Section titled "SetSeriesValueAsync(DataLegendSeriesValueType, double)"
public Task SetSeriesValueAsync(DataLegendSeriesValueType type, double value)

Parameters

  • type: DataLegendSeriesValueType
  • value: double

Returns any

SetSeriesValueInfo(DataLegendSeriesValueType, IgbDataLegendSeriesValueInfo)

Section titled "SetSeriesValueInfo(DataLegendSeriesValueType, IgbDataLegendSeriesValueInfo)"
public void SetSeriesValueInfo(DataLegendSeriesValueType type, IgbDataLegendSeriesValueInfo valueInfo)

Parameters

  • type: DataLegendSeriesValueType
  • valueInfo: IgbDataLegendSeriesValueInfo

Returns any

SetSeriesValueInfoAsync(DataLegendSeriesValueType, IgbDataLegendSeriesValueInfo)

Section titled "SetSeriesValueInfoAsync(DataLegendSeriesValueType, IgbDataLegendSeriesValueInfo)"
public Task SetSeriesValueInfoAsync(DataLegendSeriesValueType type, IgbDataLegendSeriesValueInfo valueInfo)

Parameters

  • type: DataLegendSeriesValueType
  • valueInfo: IgbDataLegendSeriesValueInfo

Returns any