Skip to content

Commit 31ca8c8

Browse files
committed
Fixed Y-Axis tooltip options
1 parent 22956d0 commit 31ca8c8

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

src/Blazor-ApexCharts/Blazor-ApexCharts.xml

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Blazor-ApexCharts/Models/ApexChartOptions.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3407,8 +3407,8 @@ public class PlotOptionsRadar
34073407
/// </summary>
34083408
public double? OffsetY { get; set; }
34093409

3410-
/// <inheritdoc cref="ApexCharts.PurplePolygons" />
3411-
public PurplePolygons Polygons { get; set; }
3410+
/// <inheritdoc cref="ApexCharts.RadarPolygons" />
3411+
public RadarPolygons Polygons { get; set; }
34123412

34133413
/// <summary>
34143414
/// A custom size for the inner radar. The default size calculation will be overrided with this
@@ -3419,15 +3419,15 @@ public class PlotOptionsRadar
34193419
/// <summary>
34203420
/// The style options to apply to the radar chart
34213421
/// </summary>
3422-
public class PurplePolygons
3422+
public class RadarPolygons
34233423
{
34243424
/// <summary>
34253425
/// The line color of the connector lines of the polygons. If you want to pass more than 1 color, you can pass an array instead of a String. connectorColors: '#e8e8e8' and connectorColors: ['#e8e8e8', '#f1f1f1'] both are valid.
34263426
/// </summary>
34273427
public Color ConnectorColors { get; set; }
34283428

3429-
/// <inheritdoc cref="ApexCharts.TentacledFill" />
3430-
public TentacledFill Fill { get; set; }
3429+
/// <inheritdoc cref="ApexCharts.RadarPolygonsFill" />
3430+
public RadarPolygonsFill Fill { get; set; }
34313431

34323432
/// <summary>
34333433
/// The line/border color of the spokes of the chart excluding the connector lines. If you want to pass more than 1 color, you can pass an array instead of a String. strokeColors: '#e8e8e8' and strokeColors: ['#e8e8e8', '#f1f1f1'] both are valid.
@@ -3443,7 +3443,7 @@ public class PurplePolygons
34433443
/// <summary>
34443444
/// Defines which colors to fill the radar chart with
34453445
/// </summary>
3446-
public class TentacledFill
3446+
public class RadarPolygonsFill
34473447
{
34483448
/// <summary>
34493449
/// The list of colors to apply to the radar chart
@@ -5200,8 +5200,8 @@ public class YAxis
52005200
/// <inheritdoc cref="ApexCharts.AxisTitle" />
52015201
public AxisTitle Title { get; set; }
52025202

5203-
/// <inheritdoc cref="ApexCharts.AxisTooltip" />
5204-
public AxisTooltip Tooltip { get; set; }
5203+
/// <inheritdoc cref="ApexCharts.YAxisTooltip" />
5204+
public YAxisTooltip Tooltip { get; set; }
52055205
}
52065206

52075207
/// <summary>

0 commit comments

Comments
 (0)