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