Skip to content

Commit 0c1eb70

Browse files
authored
Merge pull request #397 from apexcharts/add-stepsize
Added StepSize to X and YAxis
2 parents b82bfd6 + f3dde9b commit 0c1eb70

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/Blazor-ApexCharts/Models/ApexChartOptions.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4423,6 +4423,13 @@ public class XAxis
44234423
/// </summary>
44244424
public object Min { get; set; }
44254425

4426+
/// <summary>
4427+
/// stepSize refers to the interval between consecutive values on an x-axis.
4428+
/// It determines how the values on the axis are spaced or displayed.
4429+
/// If the step size is set to 10, the axis might display values like 0, 10, 20, 30, and so on.
4430+
/// </summary>
4431+
public object StepSize { get; set; }
4432+
44264433
/// <summary>
44274434
/// Sets the left offset for label
44284435
/// </summary>
@@ -5138,6 +5145,13 @@ public class YAxis
51385145
/// </remarks>
51395146
public object Min { get; set; }
51405147

5148+
/// <summary>
5149+
/// stepSize refers to the interval between consecutive values on an x-axis.
5150+
/// It determines how the values on the axis are spaced or displayed.
5151+
/// If the step size is set to 10, the axis might display values like 0, 10, 20, 30, and so on.
5152+
/// </summary>
5153+
public object StepSize { get; set; }
5154+
51415155
/// <summary>
51425156
/// When enabled, will draw the yaxis on the right side of the chart
51435157
/// </summary>

0 commit comments

Comments
 (0)