Class HeatMapDataSourceSettings
Specifies the heatmap datasource settings.
Inheritance
HeatMapDataSourceSettings
Inherited Members
Namespace: Syncfusion.Blazor.HeatMap
Assembly: Syncfusion.Blazor.dll
Syntax
public class HeatMapDataSourceSettings : SfOwningComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Constructors
HeatMapDataSourceSettings()
Declaration
public HeatMapDataSourceSettings()
Properties
AdaptorType
Specifies adaptor type.
Declaration
[Parameter]
public AdaptorType AdaptorType { get; set; }
Property Value
| Type |
|---|
| AdaptorType |
IsJsonData
Specifies that the provided datasource is JSON data.
Declaration
[Parameter]
public bool IsJsonData { get; set; }
Property Value
| Type |
|---|
| bool |
ValueMapping
Specifies value mapping.
Declaration
[Parameter]
public string ValueMapping { get; set; }
Property Value
| Type |
|---|
| string |
XDataMapping
Specifies xAxis mapping.
Declaration
[Parameter]
public string XDataMapping { get; set; }
Property Value
| Type |
|---|
| string |
YDataMapping
Specifies yAxis mapping.
Declaration
[Parameter]
public string YDataMapping { get; set; }
Property Value
| Type |
|---|
| string |
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
| Type | Name | Description |
|---|---|---|
| RenderTreeBuilder | __builder |
Overrides
Dispose(bool)
Releases the resources used by the data source settings component.
Declaration
protected override void Dispose(bool disposing)
Parameters
| Type | Name | Description |
|---|---|---|
| bool | disposing | True to dispose managed resources; otherwise, false. |
Overrides
OnInitializedAsync()
Initializes the data source settings component and registers it with the parent heatmap.
Declaration
protected override Task OnInitializedAsync()
Returns
| Type | Description |
|---|---|
| Task | A task that represents the asynchronous initialization operation. |
Overrides
UpdateProperties(HeatMapBubbleDataMapping)
Updates the child bubble data-mapping instance for the data source settings.
Declaration
public void UpdateProperties(HeatMapBubbleDataMapping bubbleValue)
Parameters
| Type | Name | Description |
|---|---|---|
| HeatMapBubbleDataMapping | bubbleValue | The bubble data mapping to associate with the data source settings. |