@rfkit/charts 1.13.1 → 1.13.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,6 @@
1
+ export interface AxisYTickModel {
2
+ interval: number;
3
+ majorTickValues: number[];
4
+ }
5
+ export declare const resolveAxisYTickInterval: (range: readonly number[] | undefined) => number;
6
+ export declare const createAxisYTickModel: (range: readonly number[] | undefined) => AxisYTickModel;
@@ -1,6 +1,6 @@
1
1
  import type React from 'react';
2
2
  interface GridLinesProps {
3
- row?: number;
3
+ horizontalPositions?: readonly number[];
4
4
  col?: number;
5
5
  strokeColor?: string;
6
6
  strokeWidth?: number;