@@ -2795,12 +2795,12 @@ export type LinearScaleOptions = CartesianScaleOptions & {
2795
2795
2796
2796
/**
2797
2797
* Adjustment used when calculating the maximum data value.
2798
- * @see https://www.chartjs.org/docs/next /axes/cartesian/linear#axis-range-settings
2798
+ * @see https://www.chartjs.org/docs/latest /axes/cartesian/linear#axis-range-settings
2799
2799
*/
2800
2800
suggestedMin ?: number ;
2801
2801
/**
2802
2802
* Adjustment used when calculating the minimum data value.
2803
- * @see https://www.chartjs.org/docs/next /axes/cartesian/linear#axis-range-settings
2803
+ * @see https://www.chartjs.org/docs/latest /axes/cartesian/linear#axis-range-settings
2804
2804
*/
2805
2805
suggestedMax ?: number ;
2806
2806
@@ -2822,7 +2822,7 @@ export type LinearScaleOptions = CartesianScaleOptions & {
2822
2822
2823
2823
/**
2824
2824
* User defined fixed step size for the scale
2825
- * @see https://www.chartjs.org/docs/next /axes/cartesian/linear#step-size
2825
+ * @see https://www.chartjs.org/docs/latest /axes/cartesian/linear#step-size
2826
2826
*/
2827
2827
stepSize : number ;
2828
2828
@@ -2843,12 +2843,12 @@ export type LogarithmicScaleOptions = CartesianScaleOptions & {
2843
2843
2844
2844
/**
2845
2845
* Adjustment used when calculating the maximum data value.
2846
- * @see https://www.chartjs.org/docs/next /axes/cartesian/linear#axis-range-settings
2846
+ * @see https://www.chartjs.org/docs/latest /axes/cartesian/linear#axis-range-settings
2847
2847
*/
2848
2848
suggestedMin ?: number ;
2849
2849
/**
2850
2850
* Adjustment used when calculating the minimum data value.
2851
- * @see https://www.chartjs.org/docs/next /axes/cartesian/linear#axis-range-settings
2851
+ * @see https://www.chartjs.org/docs/latest /axes/cartesian/linear#axis-range-settings
2852
2852
*/
2853
2853
suggestedMax ?: number ;
2854
2854
@@ -2871,7 +2871,7 @@ export type TimeScaleOptions = CartesianScaleOptions & {
2871
2871
* Scale boundary strategy (bypassed by min/max time options)
2872
2872
* - `data`: make sure data are fully visible, ticks outside are removed
2873
2873
* - `ticks`: make sure ticks are fully visible, data outside are truncated
2874
- * @see https://www.chartjs.org/docs/next /axes/cartesian/time#scale-bounds
2874
+ * @see https://www.chartjs.org/docs/latest /axes/cartesian/time#scale-bounds
2875
2875
* @since 2.7.0
2876
2876
* @default 'data'
2877
2877
*/
@@ -2887,7 +2887,7 @@ export type TimeScaleOptions = CartesianScaleOptions & {
2887
2887
time : {
2888
2888
/**
2889
2889
* Custom parser for dates.
2890
- * @see https://www.chartjs.org/docs/next /axes/cartesian/time#parser
2890
+ * @see https://www.chartjs.org/docs/latest /axes/cartesian/time#parser
2891
2891
*/
2892
2892
parser : string | ( ( v : unknown ) => number ) ;
2893
2893
/**
@@ -2902,7 +2902,7 @@ export type TimeScaleOptions = CartesianScaleOptions & {
2902
2902
isoWeekday : false | number ;
2903
2903
/**
2904
2904
* Sets how different time units are displayed.
2905
- * @see https://www.chartjs.org/docs/next /axes/cartesian/time#display-formats
2905
+ * @see https://www.chartjs.org/docs/latest /axes/cartesian/time#display-formats
2906
2906
*/
2907
2907
displayFormats : {
2908
2908
[ key : string ] : string ;
@@ -2938,7 +2938,7 @@ export type TimeScaleOptions = CartesianScaleOptions & {
2938
2938
* @see https://github.com/chartjs/Chart.js/pull/4507
2939
2939
* @since 2.7.0
2940
2940
* @default 'auto'
2941
- * @see https://www.chartjs.org/docs/next /axes/cartesian/time#ticks-source
2941
+ * @see https://www.chartjs.org/docs/latest /axes/cartesian/time#ticks-source
2942
2942
*/
2943
2943
source : 'labels' | 'auto' | 'data' ;
2944
2944
} ;
@@ -3032,7 +3032,7 @@ export type RadialLinearScaleOptions = CoreScaleOptions & {
3032
3032
*/
3033
3033
color : Scriptable < Color , ScriptableScaleContext > ;
3034
3034
/**
3035
- * @see https://www.chartjs.org/docs/next /axes/general/fonts.md
3035
+ * @see https://www.chartjs.org/docs/latest /axes/general/fonts.md
3036
3036
*/
3037
3037
font : Scriptable < FontSpec , ScriptableScaleContext > ;
3038
3038
0 commit comments