@odoo/o-spreadsheet 18.0.2 → 18.0.4
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.
- package/dist/o-spreadsheet.cjs.js +71 -41
- package/dist/o-spreadsheet.d.ts +41 -285
- package/dist/o-spreadsheet.esm.js +71 -41
- package/dist/o-spreadsheet.iife.js +71 -41
- package/dist/o-spreadsheet.iife.min.js +206 -206
- package/dist/o_spreadsheet.xml +13 -9
- package/package.json +1 -1
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
import * as chart_js from 'chart.js';
|
|
2
1
|
import { ChartConfiguration, Chart, ChartDataset } from 'chart.js';
|
|
3
2
|
import * as _odoo_owl from '@odoo/owl';
|
|
4
3
|
import { ComponentConstructor, Component } from '@odoo/owl';
|
|
5
|
-
import * as chart_js_dist_types_basic from 'chart.js/dist/types/basic';
|
|
6
|
-
import * as chart_js_dist_types_utils from 'chart.js/dist/types/utils';
|
|
7
4
|
|
|
8
5
|
/**
|
|
9
6
|
* This is a generic event bus based on the Owl event bus.
|
|
@@ -6881,6 +6878,7 @@ declare class GenericChartConfigPanel extends Component<Props$$, SpreadsheetChil
|
|
|
6881
6878
|
StackedBarChart: string;
|
|
6882
6879
|
StackedLineChart: string;
|
|
6883
6880
|
StackedAreaChart: string;
|
|
6881
|
+
StackedColumnChart: string;
|
|
6884
6882
|
CumulativeData: string;
|
|
6885
6883
|
TreatLabelsAsText: string;
|
|
6886
6884
|
AggregatedChart: string;
|
|
@@ -6932,6 +6930,7 @@ declare class GenericChartConfigPanel extends Component<Props$$, SpreadsheetChil
|
|
|
6932
6930
|
|
|
6933
6931
|
declare class BarConfigPanel extends GenericChartConfigPanel {
|
|
6934
6932
|
static template: string;
|
|
6933
|
+
get stackedLabel(): string;
|
|
6935
6934
|
onUpdateStacked(stacked: boolean): void;
|
|
6936
6935
|
onUpdateAggregated(aggregated: boolean): void;
|
|
6937
6936
|
}
|
|
@@ -7081,6 +7080,7 @@ interface ColorPickerProps {
|
|
|
7081
7080
|
maxHeight?: Pixel;
|
|
7082
7081
|
onColorPicked: (color: Color) => void;
|
|
7083
7082
|
currentColor: Color;
|
|
7083
|
+
disableNoColor?: boolean;
|
|
7084
7084
|
}
|
|
7085
7085
|
declare class ColorPicker extends Component<ColorPickerProps, SpreadsheetChildEnv> {
|
|
7086
7086
|
static template: string;
|
|
@@ -7095,6 +7095,10 @@ declare class ColorPicker extends Component<ColorPickerProps, SpreadsheetChildEn
|
|
|
7095
7095
|
optional: boolean;
|
|
7096
7096
|
};
|
|
7097
7097
|
anchorRect: ObjectConstructor;
|
|
7098
|
+
disableNoColor: {
|
|
7099
|
+
type: BooleanConstructor;
|
|
7100
|
+
optional: boolean;
|
|
7101
|
+
};
|
|
7098
7102
|
};
|
|
7099
7103
|
static defaultProps: {
|
|
7100
7104
|
currentColor: string;
|
|
@@ -7178,6 +7182,7 @@ interface Props$Y {
|
|
|
7178
7182
|
currentColor?: string;
|
|
7179
7183
|
onColorPicked: (color: string) => void;
|
|
7180
7184
|
title?: string;
|
|
7185
|
+
disableNoColor?: boolean;
|
|
7181
7186
|
}
|
|
7182
7187
|
declare class RoundColorPicker extends Component<Props$Y, SpreadsheetChildEnv> {
|
|
7183
7188
|
static template: string;
|
|
@@ -7196,6 +7201,10 @@ declare class RoundColorPicker extends Component<Props$Y, SpreadsheetChildEnv> {
|
|
|
7196
7201
|
optional: boolean;
|
|
7197
7202
|
};
|
|
7198
7203
|
onColorPicked: FunctionConstructor;
|
|
7204
|
+
disableNoColor: {
|
|
7205
|
+
type: BooleanConstructor;
|
|
7206
|
+
optional: boolean;
|
|
7207
|
+
};
|
|
7199
7208
|
};
|
|
7200
7209
|
colorPickerButtonRef: {
|
|
7201
7210
|
el: HTMLElement | null;
|
|
@@ -9875,6 +9884,7 @@ declare function getChartAxisTitleRuntime(design?: AxisDesign): {
|
|
|
9875
9884
|
declare function getTrendDatasetForBarChart(config: TrendConfiguration, dataset: ChartDataset<"bar" | "line", number[]>): {
|
|
9876
9885
|
type: string;
|
|
9877
9886
|
xAxisID: string;
|
|
9887
|
+
yAxisID: string | undefined;
|
|
9878
9888
|
label: string;
|
|
9879
9889
|
data: number[];
|
|
9880
9890
|
order: number;
|
|
@@ -9884,288 +9894,8 @@ declare function getTrendDatasetForBarChart(config: TrendConfiguration, dataset:
|
|
|
9884
9894
|
borderColor: Color;
|
|
9885
9895
|
borderDash: number[];
|
|
9886
9896
|
borderWidth: undefined;
|
|
9887
|
-
|
|
9888
|
-
|
|
9889
|
-
categoryPercentage?: number | undefined;
|
|
9890
|
-
barThickness?: number | "flex" | undefined;
|
|
9891
|
-
maxBarThickness?: number | undefined;
|
|
9892
|
-
minBarLength?: number | undefined;
|
|
9893
|
-
pointStyle?: false | "triangle" | "circle" | "line" | "rect" | "cross" | "crossRot" | "dash" | "rectRounded" | "rectRot" | "star" | chart_js_dist_types_utils._DeepPartialObject<HTMLCanvasElement> | chart_js_dist_types_utils._DeepPartialObject<HTMLImageElement> | undefined;
|
|
9894
|
-
grouped?: boolean | undefined;
|
|
9895
|
-
indexAxis?: "x" | "y" | undefined;
|
|
9896
|
-
clip?: number | false | chart_js_dist_types_utils._DeepPartialObject<chart_js.ChartArea> | undefined;
|
|
9897
|
-
stack?: string | undefined;
|
|
9898
|
-
hidden?: boolean | undefined;
|
|
9899
|
-
parsing?: false | chart_js_dist_types_utils._DeepPartialObject<{
|
|
9900
|
-
[key: string]: string;
|
|
9901
|
-
}> | undefined;
|
|
9902
|
-
normalized?: boolean | undefined;
|
|
9903
|
-
base?: number | ((ctx: chart_js.ScriptableContext<"bar">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
9904
|
-
borderSkipped?: boolean | "end" | "start" | "left" | "top" | "bottom" | "right" | "middle" | ((ctx: chart_js.ScriptableContext<"bar">, options: chart_js_dist_types_basic.AnyObject) => boolean | "end" | "start" | "left" | "top" | "bottom" | "right" | "middle" | undefined) | readonly (boolean | "end" | "start" | "left" | "top" | "bottom" | "right" | "middle" | undefined)[] | undefined;
|
|
9905
|
-
borderRadius?: number | ((ctx: chart_js.ScriptableContext<"bar">, options: chart_js_dist_types_basic.AnyObject) => number | chart_js.BorderRadius | undefined) | chart_js_dist_types_utils._DeepPartialObject<chart_js.BorderRadius> | readonly (number | chart_js_dist_types_utils._DeepPartialObject<chart_js.BorderRadius> | undefined)[] | undefined;
|
|
9906
|
-
inflateAmount?: number | "auto" | ((ctx: chart_js.ScriptableContext<"bar">, options: chart_js_dist_types_basic.AnyObject) => number | "auto" | undefined) | readonly (number | "auto" | undefined)[] | undefined;
|
|
9907
|
-
hoverBorderWidth?: number | ((ctx: chart_js.ScriptableContext<"bar">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
9908
|
-
hoverBorderColor?: string | ((ctx: chart_js.ScriptableContext<"bar">, options: chart_js_dist_types_basic.AnyObject) => chart_js.Color | undefined) | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | readonly (string | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | undefined)[] | undefined;
|
|
9909
|
-
hoverBackgroundColor?: string | ((ctx: chart_js.ScriptableContext<"bar">, options: chart_js_dist_types_basic.AnyObject) => chart_js.Color | undefined) | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | readonly (string | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | undefined)[] | undefined;
|
|
9910
|
-
animation?: false | chart_js_dist_types_utils._DeepPartialObject<chart_js.AnimationSpec<"bar"> & {
|
|
9911
|
-
onProgress?: ((this: chart_js.Chart<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint | null)[], unknown>, event: chart_js.AnimationEvent) => void) | undefined;
|
|
9912
|
-
onComplete?: ((this: chart_js.Chart<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint | null)[], unknown>, event: chart_js.AnimationEvent) => void) | undefined;
|
|
9913
|
-
}> | undefined;
|
|
9914
|
-
animations?: chart_js_dist_types_utils._DeepPartialObject<chart_js.AnimationsSpec<"bar">> | undefined;
|
|
9915
|
-
transitions?: chart_js_dist_types_utils._DeepPartialObject<chart_js.TransitionsSpec<"bar">> | undefined;
|
|
9916
|
-
} | {
|
|
9917
|
-
type: string;
|
|
9918
|
-
xAxisID: string;
|
|
9919
|
-
label: string;
|
|
9920
|
-
data: number[];
|
|
9921
|
-
order: number;
|
|
9922
|
-
showLine: boolean;
|
|
9923
|
-
pointRadius: number;
|
|
9924
|
-
backgroundColor: Color;
|
|
9925
|
-
borderColor: Color;
|
|
9926
|
-
borderDash: number[];
|
|
9927
|
-
borderWidth: undefined;
|
|
9928
|
-
yAxisID?: string | undefined;
|
|
9929
|
-
spanGaps?: number | boolean | undefined;
|
|
9930
|
-
indexAxis?: "x" | "y" | undefined;
|
|
9931
|
-
clip?: number | false | chart_js_dist_types_utils._DeepPartialObject<chart_js.ChartArea> | undefined;
|
|
9932
|
-
stack?: string | undefined;
|
|
9933
|
-
hidden?: boolean | undefined;
|
|
9934
|
-
parsing?: false | chart_js_dist_types_utils._DeepPartialObject<{
|
|
9935
|
-
[key: string]: string;
|
|
9936
|
-
}> | undefined;
|
|
9937
|
-
normalized?: boolean | undefined;
|
|
9938
|
-
pointBackgroundColor?: string | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => chart_js.Color | undefined) | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | readonly (string | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | undefined)[] | undefined;
|
|
9939
|
-
pointBorderColor?: string | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => chart_js.Color | undefined) | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | readonly (string | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | undefined)[] | undefined;
|
|
9940
|
-
pointBorderWidth?: number | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
9941
|
-
pointHitRadius?: number | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
9942
|
-
pointRotation?: number | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
9943
|
-
pointStyle?: false | "triangle" | "circle" | "line" | "rect" | "cross" | "crossRot" | "dash" | "rectRounded" | "rectRot" | "star" | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => chart_js.PointStyle | undefined) | chart_js_dist_types_utils._DeepPartialObject<HTMLCanvasElement> | chart_js_dist_types_utils._DeepPartialObject<HTMLImageElement> | readonly (false | "triangle" | "circle" | "line" | "rect" | "cross" | "crossRot" | "dash" | "rectRounded" | "rectRot" | "star" | chart_js_dist_types_utils._DeepPartialObject<HTMLCanvasElement> | chart_js_dist_types_utils._DeepPartialObject<HTMLImageElement> | undefined)[] | undefined;
|
|
9944
|
-
pointHoverBackgroundColor?: string | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => chart_js.Color | undefined) | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | readonly (string | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | undefined)[] | undefined;
|
|
9945
|
-
pointHoverBorderColor?: string | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => chart_js.Color | undefined) | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | readonly (string | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | undefined)[] | undefined;
|
|
9946
|
-
pointHoverBorderWidth?: number | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
9947
|
-
pointHoverRadius?: number | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
9948
|
-
fill?: string | number | boolean | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => chart_js.FillTarget | chart_js.ComplexFillTarget | undefined) | chart_js_dist_types_utils._DeepPartialObject<{
|
|
9949
|
-
value: number;
|
|
9950
|
-
}> | chart_js_dist_types_utils._DeepPartialObject<chart_js.ComplexFillTarget> | undefined;
|
|
9951
|
-
borderCapStyle?: "square" | "butt" | "round" | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => CanvasLineCap | undefined) | undefined;
|
|
9952
|
-
borderDashOffset?: number | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | undefined;
|
|
9953
|
-
borderJoinStyle?: "round" | "bevel" | "miter" | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => CanvasLineJoin | undefined) | undefined;
|
|
9954
|
-
capBezierPoints?: boolean | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => boolean | undefined) | undefined;
|
|
9955
|
-
cubicInterpolationMode?: "default" | "monotone" | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => "default" | "monotone" | undefined) | undefined;
|
|
9956
|
-
tension?: number | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | undefined;
|
|
9957
|
-
stepped?: boolean | "middle" | "after" | "before" | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => boolean | "middle" | "after" | "before" | undefined) | undefined;
|
|
9958
|
-
segment?: ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => {
|
|
9959
|
-
backgroundColor: chart_js.Scriptable<chart_js.Color | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
9960
|
-
borderColor: chart_js.Scriptable<chart_js.Color | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
9961
|
-
borderCapStyle: chart_js.Scriptable<CanvasLineCap | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
9962
|
-
borderDash: chart_js.Scriptable<number[] | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
9963
|
-
borderDashOffset: chart_js.Scriptable<number | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
9964
|
-
borderJoinStyle: chart_js.Scriptable<CanvasLineJoin | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
9965
|
-
borderWidth: chart_js.Scriptable<number | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
9966
|
-
} | undefined) | chart_js_dist_types_utils._DeepPartialObject<{
|
|
9967
|
-
backgroundColor: chart_js.Scriptable<chart_js.Color | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
9968
|
-
borderColor: chart_js.Scriptable<chart_js.Color | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
9969
|
-
borderCapStyle: chart_js.Scriptable<CanvasLineCap | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
9970
|
-
borderDash: chart_js.Scriptable<number[] | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
9971
|
-
borderDashOffset: chart_js.Scriptable<number | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
9972
|
-
borderJoinStyle: chart_js.Scriptable<CanvasLineJoin | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
9973
|
-
borderWidth: chart_js.Scriptable<number | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
9974
|
-
}> | undefined;
|
|
9975
|
-
hoverBorderCapStyle?: "square" | "butt" | "round" | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => CanvasLineCap | undefined) | undefined;
|
|
9976
|
-
hoverBorderDash?: ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => number[] | undefined) | chart_js_dist_types_utils._DeepPartialArray<number> | undefined;
|
|
9977
|
-
hoverBorderDashOffset?: number | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | undefined;
|
|
9978
|
-
hoverBorderJoinStyle?: "round" | "bevel" | "miter" | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => CanvasLineJoin | undefined) | undefined;
|
|
9979
|
-
hoverBorderWidth?: number | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
9980
|
-
hoverBorderColor?: string | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => chart_js.Color | undefined) | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | readonly (string | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | undefined)[] | undefined;
|
|
9981
|
-
hoverBackgroundColor?: string | ((ctx: chart_js.ScriptableContext<"line">, options: chart_js_dist_types_basic.AnyObject) => chart_js.Color | undefined) | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | readonly (string | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | undefined)[] | undefined;
|
|
9982
|
-
animation?: false | chart_js_dist_types_utils._DeepPartialObject<chart_js.AnimationSpec<"line"> & {
|
|
9983
|
-
onProgress?: ((this: chart_js.Chart<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint | null)[], unknown>, event: chart_js.AnimationEvent) => void) | undefined;
|
|
9984
|
-
onComplete?: ((this: chart_js.Chart<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint | null)[], unknown>, event: chart_js.AnimationEvent) => void) | undefined;
|
|
9985
|
-
}> | undefined;
|
|
9986
|
-
animations?: chart_js_dist_types_utils._DeepPartialObject<chart_js.AnimationsSpec<"line">> | undefined;
|
|
9987
|
-
transitions?: chart_js_dist_types_utils._DeepPartialObject<chart_js.TransitionsSpec<"line">> | undefined;
|
|
9988
|
-
} | {
|
|
9989
|
-
type: string;
|
|
9990
|
-
xAxisID: string;
|
|
9991
|
-
label: string;
|
|
9992
|
-
data: number[];
|
|
9993
|
-
order: number;
|
|
9994
|
-
showLine: boolean;
|
|
9995
|
-
pointRadius: number;
|
|
9996
|
-
backgroundColor: Color;
|
|
9997
|
-
borderColor: Color;
|
|
9998
|
-
borderDash: number[];
|
|
9999
|
-
borderWidth: undefined;
|
|
10000
|
-
yAxisID?: string | undefined;
|
|
10001
|
-
indexAxis?: "x" | "y" | undefined;
|
|
10002
|
-
clip?: number | false | chart_js_dist_types_utils._DeepPartialObject<chart_js.ChartArea> | undefined;
|
|
10003
|
-
stack?: string | undefined;
|
|
10004
|
-
hidden?: boolean | undefined;
|
|
10005
|
-
parsing?: false | chart_js_dist_types_utils._DeepPartialObject<{
|
|
10006
|
-
[key: string]: string;
|
|
10007
|
-
}> | undefined;
|
|
10008
|
-
normalized?: boolean | undefined;
|
|
10009
|
-
radius?: number | ((ctx: chart_js.ScriptableContext<"bubble">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
10010
|
-
hitRadius?: number | ((ctx: chart_js.ScriptableContext<"bubble">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
10011
|
-
pointStyle?: false | "triangle" | "circle" | "line" | "rect" | "cross" | "crossRot" | "dash" | "rectRounded" | "rectRot" | "star" | ((ctx: chart_js.ScriptableContext<"bubble">, options: chart_js_dist_types_basic.AnyObject) => chart_js.PointStyle | undefined) | chart_js_dist_types_utils._DeepPartialObject<HTMLCanvasElement> | chart_js_dist_types_utils._DeepPartialObject<HTMLImageElement> | readonly (false | "triangle" | "circle" | "line" | "rect" | "cross" | "crossRot" | "dash" | "rectRounded" | "rectRot" | "star" | chart_js_dist_types_utils._DeepPartialObject<HTMLCanvasElement> | chart_js_dist_types_utils._DeepPartialObject<HTMLImageElement> | undefined)[] | undefined;
|
|
10012
|
-
rotation?: number | ((ctx: chart_js.ScriptableContext<"bubble">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
10013
|
-
drawActiveElementsOnTop?: boolean | readonly (boolean | undefined)[] | ((ctx: chart_js.ScriptableContext<"bubble">, options: chart_js_dist_types_basic.AnyObject) => boolean | undefined) | undefined;
|
|
10014
|
-
hoverRadius?: number | ((ctx: chart_js.ScriptableContext<"bubble">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
10015
|
-
hoverBorderWidth?: number | ((ctx: chart_js.ScriptableContext<"bubble">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
10016
|
-
hoverBorderColor?: string | ((ctx: chart_js.ScriptableContext<"bubble">, options: chart_js_dist_types_basic.AnyObject) => chart_js.Color | undefined) | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | readonly (string | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | undefined)[] | undefined;
|
|
10017
|
-
hoverBackgroundColor?: string | ((ctx: chart_js.ScriptableContext<"bubble">, options: chart_js_dist_types_basic.AnyObject) => chart_js.Color | undefined) | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | readonly (string | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | undefined)[] | undefined;
|
|
10018
|
-
} | {
|
|
10019
|
-
type: string;
|
|
10020
|
-
xAxisID: string;
|
|
10021
|
-
label: string;
|
|
10022
|
-
data: number[];
|
|
10023
|
-
order: number;
|
|
10024
|
-
showLine: boolean;
|
|
10025
|
-
pointRadius: number;
|
|
10026
|
-
backgroundColor: Color;
|
|
10027
|
-
borderColor: Color;
|
|
10028
|
-
borderDash: number[];
|
|
10029
|
-
borderWidth: undefined;
|
|
10030
|
-
circumference?: number | undefined;
|
|
10031
|
-
offset?: number | chart_js_dist_types_utils._DeepPartialArray<number> | undefined;
|
|
10032
|
-
rotation?: number | undefined;
|
|
10033
|
-
weight?: number | undefined;
|
|
10034
|
-
spacing?: number | undefined;
|
|
10035
|
-
indexAxis?: "x" | "y" | undefined;
|
|
10036
|
-
clip?: number | false | chart_js_dist_types_utils._DeepPartialObject<chart_js.ChartArea> | undefined;
|
|
10037
|
-
stack?: string | undefined;
|
|
10038
|
-
hidden?: boolean | undefined;
|
|
10039
|
-
parsing?: false | chart_js_dist_types_utils._DeepPartialObject<{
|
|
10040
|
-
[key: string]: string;
|
|
10041
|
-
}> | undefined;
|
|
10042
|
-
normalized?: boolean | undefined;
|
|
10043
|
-
borderAlign?: "center" | "inner" | ((ctx: chart_js.ScriptableContext<"doughnut">, options: chart_js_dist_types_basic.AnyObject) => "center" | "inner" | undefined) | readonly ("center" | "inner" | undefined)[] | undefined;
|
|
10044
|
-
borderDashOffset?: number | ((ctx: chart_js.ScriptableContext<"doughnut">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
10045
|
-
borderJoinStyle?: "round" | "bevel" | "miter" | ((ctx: chart_js.ScriptableContext<"doughnut">, options: chart_js_dist_types_basic.AnyObject) => CanvasLineJoin | undefined) | readonly ("round" | "bevel" | "miter" | undefined)[] | undefined;
|
|
10046
|
-
borderRadius?: number | ((ctx: chart_js.ScriptableContext<"doughnut">, options: chart_js_dist_types_basic.AnyObject) => number | chart_js.ArcBorderRadius | undefined) | chart_js_dist_types_utils._DeepPartialObject<chart_js.ArcBorderRadius> | readonly (number | chart_js_dist_types_utils._DeepPartialObject<chart_js.ArcBorderRadius> | undefined)[] | undefined;
|
|
10047
|
-
circular?: boolean | readonly (boolean | undefined)[] | ((ctx: chart_js.ScriptableContext<"doughnut">, options: chart_js_dist_types_basic.AnyObject) => boolean | undefined) | undefined;
|
|
10048
|
-
hoverBorderDash?: ((ctx: chart_js.ScriptableContext<"doughnut">, options: chart_js_dist_types_basic.AnyObject) => number[] | undefined) | chart_js_dist_types_utils._DeepPartialArray<number> | readonly (chart_js_dist_types_utils._DeepPartialArray<number> | undefined)[] | undefined;
|
|
10049
|
-
hoverBorderDashOffset?: number | ((ctx: chart_js.ScriptableContext<"doughnut">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
10050
|
-
hoverOffset?: number | ((ctx: chart_js.ScriptableContext<"doughnut">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
10051
|
-
hoverBorderWidth?: number | ((ctx: chart_js.ScriptableContext<"doughnut">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
10052
|
-
hoverBorderColor?: string | ((ctx: chart_js.ScriptableContext<"doughnut">, options: chart_js_dist_types_basic.AnyObject) => chart_js.Color | undefined) | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | readonly (string | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | undefined)[] | undefined;
|
|
10053
|
-
hoverBackgroundColor?: string | ((ctx: chart_js.ScriptableContext<"doughnut">, options: chart_js_dist_types_basic.AnyObject) => chart_js.Color | undefined) | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | readonly (string | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | undefined)[] | undefined;
|
|
10054
|
-
animation?: false | chart_js_dist_types_utils._DeepPartialObject<chart_js.AnimationSpec<"doughnut"> & {
|
|
10055
|
-
onProgress?: ((this: chart_js.Chart<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint | null)[], unknown>, event: chart_js.AnimationEvent) => void) | undefined;
|
|
10056
|
-
onComplete?: ((this: chart_js.Chart<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint | null)[], unknown>, event: chart_js.AnimationEvent) => void) | undefined;
|
|
10057
|
-
}> | undefined;
|
|
10058
|
-
animations?: chart_js_dist_types_utils._DeepPartialObject<chart_js.AnimationsSpec<"doughnut">> | undefined;
|
|
10059
|
-
transitions?: chart_js_dist_types_utils._DeepPartialObject<chart_js.TransitionsSpec<"doughnut">> | undefined;
|
|
10060
|
-
} | {
|
|
10061
|
-
type: string;
|
|
10062
|
-
xAxisID: string;
|
|
10063
|
-
label: string;
|
|
10064
|
-
data: number[];
|
|
10065
|
-
order: number;
|
|
10066
|
-
showLine: boolean;
|
|
10067
|
-
pointRadius: number;
|
|
10068
|
-
backgroundColor: Color;
|
|
10069
|
-
borderColor: Color;
|
|
10070
|
-
borderDash: number[];
|
|
10071
|
-
borderWidth: undefined;
|
|
10072
|
-
yAxisID?: string | undefined;
|
|
10073
|
-
spanGaps?: number | boolean | undefined;
|
|
10074
|
-
indexAxis?: "x" | "y" | undefined;
|
|
10075
|
-
clip?: number | false | chart_js_dist_types_utils._DeepPartialObject<chart_js.ChartArea> | undefined;
|
|
10076
|
-
stack?: string | undefined;
|
|
10077
|
-
hidden?: boolean | undefined;
|
|
10078
|
-
parsing?: false | chart_js_dist_types_utils._DeepPartialObject<{
|
|
10079
|
-
[key: string]: string;
|
|
10080
|
-
}> | undefined;
|
|
10081
|
-
normalized?: boolean | undefined;
|
|
10082
|
-
radius?: number | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
10083
|
-
hitRadius?: number | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
10084
|
-
pointStyle?: false | "triangle" | "circle" | "line" | "rect" | "cross" | "crossRot" | "dash" | "rectRounded" | "rectRot" | "star" | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => chart_js.PointStyle | undefined) | chart_js_dist_types_utils._DeepPartialObject<HTMLCanvasElement> | chart_js_dist_types_utils._DeepPartialObject<HTMLImageElement> | readonly (false | "triangle" | "circle" | "line" | "rect" | "cross" | "crossRot" | "dash" | "rectRounded" | "rectRot" | "star" | chart_js_dist_types_utils._DeepPartialObject<HTMLCanvasElement> | chart_js_dist_types_utils._DeepPartialObject<HTMLImageElement> | undefined)[] | undefined;
|
|
10085
|
-
rotation?: number | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
10086
|
-
drawActiveElementsOnTop?: boolean | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => boolean | undefined) | readonly (boolean | undefined)[] | undefined;
|
|
10087
|
-
hoverRadius?: number | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
10088
|
-
hoverBorderWidth?: number | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
10089
|
-
hoverBorderColor?: string | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => chart_js.Color | undefined) | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | readonly (string | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | undefined)[] | undefined;
|
|
10090
|
-
hoverBackgroundColor?: string | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => chart_js.Color | undefined) | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | readonly (string | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | undefined)[] | undefined;
|
|
10091
|
-
pointBackgroundColor?: string | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => chart_js.Color | undefined) | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | readonly (string | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | undefined)[] | undefined;
|
|
10092
|
-
pointBorderColor?: string | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => chart_js.Color | undefined) | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | readonly (string | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | undefined)[] | undefined;
|
|
10093
|
-
pointBorderWidth?: number | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
10094
|
-
pointHitRadius?: number | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
10095
|
-
pointRotation?: number | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
10096
|
-
pointHoverBackgroundColor?: string | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => chart_js.Color | undefined) | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | readonly (string | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | undefined)[] | undefined;
|
|
10097
|
-
pointHoverBorderColor?: string | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => chart_js.Color | undefined) | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | readonly (string | chart_js_dist_types_utils._DeepPartialObject<CanvasGradient> | chart_js_dist_types_utils._DeepPartialObject<CanvasPattern> | undefined)[] | undefined;
|
|
10098
|
-
pointHoverBorderWidth?: number | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
10099
|
-
pointHoverRadius?: number | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
10100
|
-
borderCapStyle?: "square" | "butt" | "round" | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => CanvasLineCap | undefined) | readonly ("square" | "butt" | "round" | undefined)[] | undefined;
|
|
10101
|
-
borderDashOffset?: number | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
10102
|
-
borderJoinStyle?: "round" | "bevel" | "miter" | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => CanvasLineJoin | undefined) | readonly ("round" | "bevel" | "miter" | undefined)[] | undefined;
|
|
10103
|
-
capBezierPoints?: boolean | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => boolean | undefined) | readonly (boolean | undefined)[] | undefined;
|
|
10104
|
-
cubicInterpolationMode?: "default" | "monotone" | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => "default" | "monotone" | undefined) | readonly ("default" | "monotone" | undefined)[] | undefined;
|
|
10105
|
-
tension?: number | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
10106
|
-
stepped?: boolean | "middle" | "after" | "before" | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => boolean | "middle" | "after" | "before" | undefined) | readonly (boolean | "middle" | "after" | "before" | undefined)[] | undefined;
|
|
10107
|
-
fill?: string | number | boolean | (((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => chart_js.FillTarget | chart_js.ComplexFillTarget | undefined) & string) | (((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => chart_js.FillTarget | chart_js.ComplexFillTarget | undefined) & number) | (((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => chart_js.FillTarget | chart_js.ComplexFillTarget | undefined) & false) | (((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => chart_js.FillTarget | chart_js.ComplexFillTarget | undefined) & true) | (((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => chart_js.FillTarget | chart_js.ComplexFillTarget | undefined) & {
|
|
10108
|
-
value: number;
|
|
10109
|
-
}) | (((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => chart_js.FillTarget | chart_js.ComplexFillTarget | undefined) & chart_js.ComplexFillTarget) | chart_js_dist_types_utils._DeepPartialObject<{
|
|
10110
|
-
value: number;
|
|
10111
|
-
}> | chart_js_dist_types_utils._DeepPartialObject<chart_js.ComplexFillTarget> | chart_js_dist_types_utils._DeepPartialObject<string & {
|
|
10112
|
-
value: number;
|
|
10113
|
-
}> | chart_js_dist_types_utils._DeepPartialObject<string & chart_js.ComplexFillTarget> | chart_js_dist_types_utils._DeepPartialObject<number & {
|
|
10114
|
-
value: number;
|
|
10115
|
-
}> | chart_js_dist_types_utils._DeepPartialObject<number & chart_js.ComplexFillTarget> | chart_js_dist_types_utils._DeepPartialObject<false & {
|
|
10116
|
-
value: number;
|
|
10117
|
-
}> | chart_js_dist_types_utils._DeepPartialObject<false & chart_js.ComplexFillTarget> | chart_js_dist_types_utils._DeepPartialObject<true & {
|
|
10118
|
-
value: number;
|
|
10119
|
-
}> | chart_js_dist_types_utils._DeepPartialObject<true & chart_js.ComplexFillTarget> | chart_js_dist_types_utils._DeepPartialObject<{
|
|
10120
|
-
value: number;
|
|
10121
|
-
} & string> | chart_js_dist_types_utils._DeepPartialObject<{
|
|
10122
|
-
value: number;
|
|
10123
|
-
} & number> | chart_js_dist_types_utils._DeepPartialObject<{
|
|
10124
|
-
value: number;
|
|
10125
|
-
} & false> | chart_js_dist_types_utils._DeepPartialObject<{
|
|
10126
|
-
value: number;
|
|
10127
|
-
} & true> | chart_js_dist_types_utils._DeepPartialObject<{
|
|
10128
|
-
value: number;
|
|
10129
|
-
} & chart_js.ComplexFillTarget> | chart_js_dist_types_utils._DeepPartialObject<chart_js.ComplexFillTarget & string> | chart_js_dist_types_utils._DeepPartialObject<chart_js.ComplexFillTarget & number> | chart_js_dist_types_utils._DeepPartialObject<chart_js.ComplexFillTarget & false> | chart_js_dist_types_utils._DeepPartialObject<chart_js.ComplexFillTarget & true> | chart_js_dist_types_utils._DeepPartialObject<chart_js.ComplexFillTarget & {
|
|
10130
|
-
value: number;
|
|
10131
|
-
}> | chart_js_dist_types_utils._DeepPartialObject<readonly (chart_js.FillTarget | chart_js.ComplexFillTarget)[] & string> | chart_js_dist_types_utils._DeepPartialObject<readonly (chart_js.FillTarget | chart_js.ComplexFillTarget)[] & number> | chart_js_dist_types_utils._DeepPartialObject<readonly (chart_js.FillTarget | chart_js.ComplexFillTarget)[] & false> | chart_js_dist_types_utils._DeepPartialObject<readonly (chart_js.FillTarget | chart_js.ComplexFillTarget)[] & true> | chart_js_dist_types_utils._DeepPartialObject<readonly (chart_js.FillTarget | chart_js.ComplexFillTarget)[] & {
|
|
10132
|
-
value: number;
|
|
10133
|
-
}> | chart_js_dist_types_utils._DeepPartialObject<readonly (chart_js.FillTarget | chart_js.ComplexFillTarget)[] & chart_js.ComplexFillTarget> | undefined;
|
|
10134
|
-
segment?: ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => {
|
|
10135
|
-
backgroundColor: chart_js.Scriptable<chart_js.Color | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
10136
|
-
borderColor: chart_js.Scriptable<chart_js.Color | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
10137
|
-
borderCapStyle: chart_js.Scriptable<CanvasLineCap | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
10138
|
-
borderDash: chart_js.Scriptable<number[] | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
10139
|
-
borderDashOffset: chart_js.Scriptable<number | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
10140
|
-
borderJoinStyle: chart_js.Scriptable<CanvasLineJoin | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
10141
|
-
borderWidth: chart_js.Scriptable<number | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
10142
|
-
} | undefined) | chart_js_dist_types_utils._DeepPartialObject<{
|
|
10143
|
-
backgroundColor: chart_js.Scriptable<chart_js.Color | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
10144
|
-
borderColor: chart_js.Scriptable<chart_js.Color | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
10145
|
-
borderCapStyle: chart_js.Scriptable<CanvasLineCap | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
10146
|
-
borderDash: chart_js.Scriptable<number[] | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
10147
|
-
borderDashOffset: chart_js.Scriptable<number | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
10148
|
-
borderJoinStyle: chart_js.Scriptable<CanvasLineJoin | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
10149
|
-
borderWidth: chart_js.Scriptable<number | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
10150
|
-
}> | readonly (chart_js_dist_types_utils._DeepPartialObject<{
|
|
10151
|
-
backgroundColor: chart_js.Scriptable<chart_js.Color | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
10152
|
-
borderColor: chart_js.Scriptable<chart_js.Color | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
10153
|
-
borderCapStyle: chart_js.Scriptable<CanvasLineCap | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
10154
|
-
borderDash: chart_js.Scriptable<number[] | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
10155
|
-
borderDashOffset: chart_js.Scriptable<number | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
10156
|
-
borderJoinStyle: chart_js.Scriptable<CanvasLineJoin | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
10157
|
-
borderWidth: chart_js.Scriptable<number | undefined, chart_js.ScriptableLineSegmentContext>;
|
|
10158
|
-
}> | undefined)[] | undefined;
|
|
10159
|
-
hoverBorderCapStyle?: "square" | "butt" | "round" | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => CanvasLineCap | undefined) | readonly ("square" | "butt" | "round" | undefined)[] | undefined;
|
|
10160
|
-
hoverBorderDash?: ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => number[] | undefined) | chart_js_dist_types_utils._DeepPartialArray<number> | readonly (chart_js_dist_types_utils._DeepPartialArray<number> | undefined)[] | undefined;
|
|
10161
|
-
hoverBorderDashOffset?: number | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => number | undefined) | readonly (number | undefined)[] | undefined;
|
|
10162
|
-
hoverBorderJoinStyle?: "round" | "bevel" | "miter" | ((ctx: chart_js.ScriptableContext<"radar">, options: chart_js_dist_types_basic.AnyObject) => CanvasLineJoin | undefined) | readonly ("round" | "bevel" | "miter" | undefined)[] | undefined;
|
|
10163
|
-
animation?: false | chart_js_dist_types_utils._DeepPartialObject<chart_js.AnimationSpec<"radar"> & {
|
|
10164
|
-
onProgress?: ((this: chart_js.Chart<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint | null)[], unknown>, event: chart_js.AnimationEvent) => void) | undefined;
|
|
10165
|
-
onComplete?: ((this: chart_js.Chart<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint | null)[], unknown>, event: chart_js.AnimationEvent) => void) | undefined;
|
|
10166
|
-
}> | undefined;
|
|
10167
|
-
animations?: chart_js_dist_types_utils._DeepPartialObject<chart_js.AnimationsSpec<"radar">> | undefined;
|
|
10168
|
-
transitions?: chart_js_dist_types_utils._DeepPartialObject<chart_js.TransitionsSpec<"radar">> | undefined;
|
|
9897
|
+
fill: boolean;
|
|
9898
|
+
pointBackgroundColor: Color;
|
|
10169
9899
|
} | undefined;
|
|
10170
9900
|
declare function formatTickValue(localeFormat: LocaleFormat): (value: any) => any;
|
|
10171
9901
|
|
|
@@ -12441,6 +12171,32 @@ declare const constants: {
|
|
|
12441
12171
|
value: string;
|
|
12442
12172
|
label: string;
|
|
12443
12173
|
}[];
|
|
12174
|
+
ChartTerms: {
|
|
12175
|
+
Series: string;
|
|
12176
|
+
BackgroundColor: string;
|
|
12177
|
+
StackedBarChart: string;
|
|
12178
|
+
StackedLineChart: string;
|
|
12179
|
+
StackedAreaChart: string;
|
|
12180
|
+
StackedColumnChart: string;
|
|
12181
|
+
CumulativeData: string;
|
|
12182
|
+
TreatLabelsAsText: string;
|
|
12183
|
+
AggregatedChart: string;
|
|
12184
|
+
Errors: {
|
|
12185
|
+
Unexpected: string;
|
|
12186
|
+
InvalidDataSet: string;
|
|
12187
|
+
InvalidLabelRange: string;
|
|
12188
|
+
InvalidScorecardKeyValue: string;
|
|
12189
|
+
InvalidScorecardBaseline: string;
|
|
12190
|
+
InvalidGaugeDataRange: string;
|
|
12191
|
+
EmptyGaugeRangeMin: string;
|
|
12192
|
+
GaugeRangeMinNaN: string;
|
|
12193
|
+
EmptyGaugeRangeMax: string;
|
|
12194
|
+
GaugeRangeMaxNaN: string;
|
|
12195
|
+
GaugeRangeMinBiggerThanRangeMax: string;
|
|
12196
|
+
GaugeLowerInflectionPointNaN: string;
|
|
12197
|
+
GaugeUpperInflectionPointNaN: string;
|
|
12198
|
+
};
|
|
12199
|
+
};
|
|
12444
12200
|
};
|
|
12445
12201
|
|
|
12446
12202
|
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderDescription, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellData, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartType, ChartWithAxisDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClipboardCell, ClipboardCellData, ClipboardContent, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, ColorSheetCommand, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComposerFocusType, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormatRuleInternal, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluatedCell, EvaluationError, ExcelCellData, ExcelChartDataset, ExcelChartDefinition, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureSize, Filter, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, Locale, LocaleCode, LocaleFormat, Matrix, Maybe, MenuMouseEvent, Merge, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, RevisionsDroppedEvent, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetScrollInfo, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, TableConfig, TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, borderStyles, canExecuteInReadonly, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
|