Skip to content

Commit

Permalink
Merge pull request #397 from apexcharts/add-stepsize
Browse files Browse the repository at this point in the history
Added StepSize to X and YAxis
  • Loading branch information
joadan authored Feb 4, 2024
2 parents b82bfd6 + f3dde9b commit 0c1eb70
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/Blazor-ApexCharts/Models/ApexChartOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4423,6 +4423,13 @@ public class XAxis
/// </summary>
public object Min { get; set; }

/// <summary>
/// stepSize refers to the interval between consecutive values on an x-axis.
/// It determines how the values on the axis are spaced or displayed.
/// If the step size is set to 10, the axis might display values like 0, 10, 20, 30, and so on.
/// </summary>
public object StepSize { get; set; }

/// <summary>
/// Sets the left offset for label
/// </summary>
Expand Down Expand Up @@ -5138,6 +5145,13 @@ public class YAxis
/// </remarks>
public object Min { get; set; }

/// <summary>
/// stepSize refers to the interval between consecutive values on an x-axis.
/// It determines how the values on the axis are spaced or displayed.
/// If the step size is set to 10, the axis might display values like 0, 10, 20, 30, and so on.
/// </summary>
public object StepSize { get; set; }

/// <summary>
/// When enabled, will draw the yaxis on the right side of the chart
/// </summary>
Expand Down

0 comments on commit 0c1eb70

Please sign in to comment.