Is possible to map new value in Blazor Chart Tooltip?

Answer:

Using the TooltipMappingName property, we can map the custom value in the current Chart Tooltip value. Here is the code snippet for your reference.

<SfChart>

<ChartTooltipSettings Enable="true"Format="${point.x} (${point.tooltip}): ${point.y}">

ChartTooltipSettings>

<ChartSeriesCollection>

ChartSeries>

ChartSeriesCollection>

SfChart>


Find the sample to map new value in Chart Tooltip from here.


Loader.
Up arrow icon