@pitcher/canvas-ui 2025.12.9-123521-beta → 2025.12.9-130331-beta
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/canvas-ui.css +22 -41
- package/canvas-ui.js +505 -1509
- package/canvas-ui.js.map +1 -1
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.raw.vue.d.ts +0 -4
- package/lib/apps/canvas-builder/components/ui/DataCharts/types.d.ts +8 -87
- package/locale/de.json +2 -23
- package/locale/el.json +2 -23
- package/locale/en.json +2 -23
- package/locale/es.json +2 -23
- package/locale/fr.json +3 -24
- package/locale/it.json +41 -62
- package/locale/ja.json +38 -59
- package/locale/nl.json +41 -62
- package/locale/pl.json +2 -23
- package/locale/pt-br.json +13 -34
- package/locale/pt.json +2 -23
- package/locale/th.json +6 -27
- package/locale/tr.json +2 -23
- package/locale/zh.json +38 -59
- package/package.json +1 -1
|
@@ -8,13 +8,9 @@ declare global {
|
|
|
8
8
|
type __VLS_Props = {
|
|
9
9
|
data?: ExtendedChartConfiguration & {
|
|
10
10
|
context?: any;
|
|
11
|
-
_original_chart_type?: string;
|
|
12
11
|
};
|
|
13
|
-
isPreview?: boolean;
|
|
14
|
-
isEditMode?: boolean;
|
|
15
12
|
};
|
|
16
13
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
17
|
-
containerRef: HTMLDivElement;
|
|
18
14
|
chartRef: HTMLCanvasElement;
|
|
19
15
|
}, HTMLDivElement>;
|
|
20
16
|
export default _default;
|
|
@@ -1,68 +1,19 @@
|
|
|
1
1
|
import { ChartConfiguration } from 'chart.js';
|
|
2
|
-
export interface ViewControls {
|
|
3
|
-
enable_fullscreen_btn?: boolean;
|
|
4
|
-
enable_chart_type_switcher?: boolean;
|
|
5
|
-
enable_data_entry?: boolean;
|
|
6
|
-
}
|
|
7
|
-
export type ChartType = 'bar' | 'line' | 'pie' | 'doughnut' | 'radar' | 'polarArea' | 'scatter' | 'bubble' | 'area';
|
|
8
|
-
export declare const STANDALONE_CHART_TYPES: ChartType[];
|
|
9
|
-
export declare const MIXABLE_CHART_TYPES: ChartType[];
|
|
10
|
-
export declare const ONE_D_CHART_TYPES: ChartType[];
|
|
11
|
-
export declare const TWO_D_CHART_TYPES: ChartType[];
|
|
12
|
-
export declare const THREE_D_CHART_TYPES: ChartType[];
|
|
13
|
-
export declare const XY_CHART_TYPES: ChartType[];
|
|
14
|
-
export declare const XYR_CHART_TYPES: ChartType[];
|
|
15
|
-
export interface SeriesDataPoint {
|
|
16
|
-
label: string;
|
|
17
|
-
value: string;
|
|
18
|
-
x_value?: string;
|
|
19
|
-
y_value?: string;
|
|
20
|
-
r_value?: string;
|
|
21
|
-
dynamic_value?: {
|
|
22
|
-
path: string;
|
|
23
|
-
value: string;
|
|
24
|
-
};
|
|
25
|
-
dynamic_x_value?: {
|
|
26
|
-
path: string;
|
|
27
|
-
value: string;
|
|
28
|
-
};
|
|
29
|
-
dynamic_y_value?: {
|
|
30
|
-
path: string;
|
|
31
|
-
value: string;
|
|
32
|
-
};
|
|
33
|
-
dynamic_r_value?: {
|
|
34
|
-
path: string;
|
|
35
|
-
value: string;
|
|
36
|
-
};
|
|
37
|
-
array_config?: {
|
|
38
|
-
labelField: string;
|
|
39
|
-
valueField: string;
|
|
40
|
-
xField?: string;
|
|
41
|
-
yField?: string;
|
|
42
|
-
rField?: string;
|
|
43
|
-
};
|
|
44
|
-
}
|
|
45
|
-
export interface ChartSeries {
|
|
46
|
-
id: string;
|
|
47
|
-
name: string;
|
|
48
|
-
chart_type: ChartType;
|
|
49
|
-
color?: string;
|
|
50
|
-
data_points: SeriesDataPoint[];
|
|
51
|
-
}
|
|
52
2
|
export interface ExtendedChartConfiguration extends ChartConfiguration {
|
|
53
|
-
data_points?:
|
|
54
|
-
|
|
3
|
+
data_points?: Array<{
|
|
4
|
+
label: string;
|
|
5
|
+
value: string;
|
|
6
|
+
dynamic_value?: {
|
|
7
|
+
path: string;
|
|
8
|
+
value: string;
|
|
9
|
+
};
|
|
10
|
+
}>;
|
|
55
11
|
context?: any;
|
|
56
12
|
data?: ChartConfiguration['data'] & {
|
|
57
13
|
datasets?: Array<{
|
|
58
|
-
label?: string;
|
|
59
|
-
type?: string;
|
|
60
14
|
background_color?: string | string[];
|
|
61
15
|
border_color?: string | string[];
|
|
62
16
|
point_style?: string;
|
|
63
|
-
fill?: boolean;
|
|
64
|
-
tension?: number;
|
|
65
|
-
show_line?: boolean;
|
|
66
17
|
}>;
|
|
67
18
|
};
|
|
68
19
|
options?: ChartConfiguration['options'] & {
|
|
@@ -83,23 +34,11 @@ export interface ExtendedChartConfiguration extends ChartConfiguration {
|
|
|
83
34
|
text?: string;
|
|
84
35
|
display?: boolean;
|
|
85
36
|
};
|
|
86
|
-
begin_at_zero?: boolean;
|
|
87
|
-
};
|
|
88
|
-
r?: {
|
|
89
|
-
begin_at_zero?: boolean;
|
|
90
|
-
ticks?: {
|
|
91
|
-
step_size?: number;
|
|
92
|
-
};
|
|
93
37
|
};
|
|
94
38
|
};
|
|
95
39
|
index_axis?: 'x' | 'y';
|
|
96
40
|
};
|
|
97
41
|
color_scheme_type?: 'theme' | 'custom';
|
|
98
|
-
percent_display?: boolean;
|
|
99
|
-
view_controls?: ViewControls;
|
|
100
|
-
chart_height?: number;
|
|
101
|
-
chart_width?: number;
|
|
102
|
-
_primary_chart_type?: ChartType;
|
|
103
42
|
}
|
|
104
43
|
export interface DynamicValue {
|
|
105
44
|
path: string;
|
|
@@ -108,29 +47,11 @@ export interface DynamicValue {
|
|
|
108
47
|
export interface ArrayConfig {
|
|
109
48
|
labelField: string;
|
|
110
49
|
valueField: string;
|
|
111
|
-
xField?: string;
|
|
112
|
-
yField?: string;
|
|
113
|
-
rField?: string;
|
|
114
50
|
}
|
|
115
51
|
export interface DataPoint {
|
|
116
52
|
label: string;
|
|
117
53
|
value: string;
|
|
118
|
-
xValue?: string;
|
|
119
|
-
yValue?: string;
|
|
120
|
-
rValue?: string;
|
|
121
54
|
dynamicValue?: DynamicValue | any;
|
|
122
|
-
dynamicXValue?: DynamicValue | any;
|
|
123
|
-
dynamicYValue?: DynamicValue | any;
|
|
124
|
-
dynamicRValue?: DynamicValue | any;
|
|
125
55
|
selectedValue?: any;
|
|
126
|
-
selectedXValue?: any;
|
|
127
|
-
selectedYValue?: any;
|
|
128
|
-
selectedRValue?: any;
|
|
129
56
|
arrayConfig?: ArrayConfig;
|
|
130
57
|
}
|
|
131
|
-
export interface Series {
|
|
132
|
-
id: string;
|
|
133
|
-
name: string;
|
|
134
|
-
chartType: ChartType;
|
|
135
|
-
dataPoints: DataPoint[];
|
|
136
|
-
}
|
package/locale/de.json
CHANGED
|
@@ -812,23 +812,14 @@
|
|
|
812
812
|
"stripingStartPosition": null
|
|
813
813
|
},
|
|
814
814
|
"dataCharts": {
|
|
815
|
-
"addSeries": null,
|
|
816
815
|
"addYourChart": null,
|
|
817
816
|
"animation": null,
|
|
818
|
-
"chartSettings": null,
|
|
819
|
-
"chartSize": null,
|
|
820
817
|
"chartTitle": null,
|
|
821
818
|
"chartType": null,
|
|
822
|
-
"chartTypeSwitcherMultiSeriesDisabled": null,
|
|
823
819
|
"colorScheme": null,
|
|
824
820
|
"configureArrayObjectFields": null,
|
|
825
821
|
"dataPoints": null,
|
|
826
|
-
"dataSettings": null,
|
|
827
822
|
"editDataChartsComponent": null,
|
|
828
|
-
"enableChartTypeSwitcher": null,
|
|
829
|
-
"enableDataEntry": null,
|
|
830
|
-
"enableFullscreenBtn": null,
|
|
831
|
-
"height": null,
|
|
832
823
|
"labelField": null,
|
|
833
824
|
"legendPosition": null,
|
|
834
825
|
"legendPositions": {
|
|
@@ -843,8 +834,6 @@
|
|
|
843
834
|
"horizontal": null,
|
|
844
835
|
"vertical": null
|
|
845
836
|
},
|
|
846
|
-
"percentDisplay": null,
|
|
847
|
-
"percentDisplayHint": null,
|
|
848
837
|
"pointStyle": null,
|
|
849
838
|
"pointStyles": {
|
|
850
839
|
"circle": null,
|
|
@@ -856,30 +845,20 @@
|
|
|
856
845
|
},
|
|
857
846
|
"preview": null,
|
|
858
847
|
"removeAll": null,
|
|
859
|
-
"rValueField": null,
|
|
860
848
|
"selectDynamicValue": null,
|
|
861
|
-
"series": null,
|
|
862
|
-
"seriesName": null,
|
|
863
849
|
"types": {
|
|
864
|
-
"area": null,
|
|
865
850
|
"bar": null,
|
|
866
|
-
"bubble": null,
|
|
867
851
|
"doughnut": null,
|
|
868
852
|
"line": null,
|
|
869
853
|
"pie": null,
|
|
870
854
|
"polarArea": null,
|
|
871
|
-
"radar": null
|
|
872
|
-
"scatter": null
|
|
855
|
+
"radar": null
|
|
873
856
|
},
|
|
874
857
|
"useCustomColors": null,
|
|
875
858
|
"useThemeColors": null,
|
|
876
859
|
"valueField": null,
|
|
877
|
-
"viewModeControls": null,
|
|
878
|
-
"width": null,
|
|
879
860
|
"xAxisLabel": null,
|
|
880
|
-
"
|
|
881
|
-
"yAxisLabel": null,
|
|
882
|
-
"yValueField": null
|
|
861
|
+
"yAxisLabel": null
|
|
883
862
|
},
|
|
884
863
|
"deletedFile": {
|
|
885
864
|
"clickMessage": null,
|
package/locale/el.json
CHANGED
|
@@ -812,23 +812,14 @@
|
|
|
812
812
|
"stripingStartPosition": "Θέση έναρξης ριγέ"
|
|
813
813
|
},
|
|
814
814
|
"dataCharts": {
|
|
815
|
-
"addSeries": "Προσθήκη σειράς",
|
|
816
815
|
"addYourChart": "Προσθέστε το γράφημά σας",
|
|
817
816
|
"animation": "Κίνηση",
|
|
818
|
-
"chartSettings": "Ρυθμίσεις γραφήματος",
|
|
819
|
-
"chartSize": "Μέγεθος γραφήματος",
|
|
820
817
|
"chartTitle": "Τίτλος Γραφήματος",
|
|
821
818
|
"chartType": "Τύπος Γραφήματος",
|
|
822
|
-
"chartTypeSwitcherMultiSeriesDisabled": "Δεν μπορεί να ενεργοποιηθεί για γραφήματα πολλαπλών σειρών.",
|
|
823
819
|
"colorScheme": "Χρωματικό Σχήμα",
|
|
824
820
|
"configureArrayObjectFields": "Ρύθμιση Πεδίων Πίνακα/Αντικειμένου",
|
|
825
821
|
"dataPoints": "Σημεία Δεδομένων",
|
|
826
|
-
"dataSettings": "Ρυθμίσεις δεδομένων",
|
|
827
822
|
"editDataChartsComponent": "Επεξεργασία Γραφήματος",
|
|
828
|
-
"enableChartTypeSwitcher": "Επιτρέψτε αλλαγή τύπου γραφήματος σε λειτουργία προβολής",
|
|
829
|
-
"enableDataEntry": "Επιτρέψτε εισαγωγή δεδομένων από χρήστες σε λειτουργία επεξεργασίας",
|
|
830
|
-
"enableFullscreenBtn": "Εμφάνιση κουμπιού πλήρους οθόνης σε λειτουργία προβολής",
|
|
831
|
-
"height": "Ύψος",
|
|
832
823
|
"labelField": "Πεδίο Ετικέτας",
|
|
833
824
|
"legendPosition": "Θέση Υπομνήματος",
|
|
834
825
|
"legendPositions": {
|
|
@@ -843,8 +834,6 @@
|
|
|
843
834
|
"horizontal": "Οριζόντια",
|
|
844
835
|
"vertical": "Κάθετα"
|
|
845
836
|
},
|
|
846
|
-
"percentDisplay": "Εμφάνιση αριθμών ως ποσοστά",
|
|
847
|
-
"percentDisplayHint": "Οι τιμές μεταξύ 0-1 θα εμφανίζονται ως ποσοστά",
|
|
848
837
|
"pointStyle": "Στυλ Σημείων",
|
|
849
838
|
"pointStyles": {
|
|
850
839
|
"circle": "Κύκλος",
|
|
@@ -856,30 +845,20 @@
|
|
|
856
845
|
},
|
|
857
846
|
"preview": "Προεπισκόπηση",
|
|
858
847
|
"removeAll": "Αφαίρεση όλων",
|
|
859
|
-
"rValueField": "Πεδίο μεγέθους/ακτίνας",
|
|
860
848
|
"selectDynamicValue": "Επιλέξτε μια δυναμική τιμή",
|
|
861
|
-
"series": "Σειρά",
|
|
862
|
-
"seriesName": "Όνομα σειράς",
|
|
863
849
|
"types": {
|
|
864
|
-
"area": "Γράφημα περιοχής",
|
|
865
850
|
"bar": "Ραβδόγραμμα",
|
|
866
|
-
"bubble": "Γράφημα φυσαλίδων",
|
|
867
851
|
"doughnut": "Διάγραμμα Δαχτυλίδι",
|
|
868
852
|
"line": "Γραμμικό Γράφημα",
|
|
869
853
|
"pie": "Κυκλικό Διάγραμμα",
|
|
870
854
|
"polarArea": "Πολικό Διάγραμμα",
|
|
871
|
-
"radar": "Διάγραμμα Ραντάρ"
|
|
872
|
-
"scatter": "Γράφημα διασποράς"
|
|
855
|
+
"radar": "Διάγραμμα Ραντάρ"
|
|
873
856
|
},
|
|
874
857
|
"useCustomColors": "Χρήση προσαρμοσμένων χρωμάτων",
|
|
875
858
|
"useThemeColors": "Χρήση χρωμάτων θέματος",
|
|
876
859
|
"valueField": "Πεδίο Τιμής",
|
|
877
|
-
"viewModeControls": "Χειριστήρια λειτουργίας προβολής",
|
|
878
|
-
"width": "Πλάτος",
|
|
879
860
|
"xAxisLabel": "Ετικέτα Άξονα Χ",
|
|
880
|
-
"
|
|
881
|
-
"yAxisLabel": "Ετικέτα Άξονα Υ",
|
|
882
|
-
"yValueField": "Πεδίο τιμής Y"
|
|
861
|
+
"yAxisLabel": "Ετικέτα Άξονα Υ"
|
|
883
862
|
},
|
|
884
863
|
"deletedFile": {
|
|
885
864
|
"clickMessage": "Κάντε κλικ εδώ για να προσθέσετε ένα νέο",
|
package/locale/en.json
CHANGED
|
@@ -812,23 +812,14 @@
|
|
|
812
812
|
"stripingStartPosition": "Striping start position"
|
|
813
813
|
},
|
|
814
814
|
"dataCharts": {
|
|
815
|
-
"addSeries": "Add Series",
|
|
816
815
|
"addYourChart": "Add your chart",
|
|
817
816
|
"animation": "Animation",
|
|
818
|
-
"chartSettings": "Chart Settings",
|
|
819
|
-
"chartSize": "Chart Size",
|
|
820
817
|
"chartTitle": "Chart Title",
|
|
821
818
|
"chartType": "Chart Type",
|
|
822
|
-
"chartTypeSwitcherMultiSeriesDisabled": "This can't be enabled for multi-series charts.",
|
|
823
819
|
"colorScheme": "Color Scheme",
|
|
824
820
|
"configureArrayObjectFields": "Configure Array/Object Fields",
|
|
825
821
|
"dataPoints": "Data Points",
|
|
826
|
-
"dataSettings": "Data Settings",
|
|
827
822
|
"editDataChartsComponent": "Edit Chart",
|
|
828
|
-
"enableChartTypeSwitcher": "Allow chart type switching in view mode",
|
|
829
|
-
"enableDataEntry": "Allow data entry by end users in edit mode",
|
|
830
|
-
"enableFullscreenBtn": "Show fullscreen button in view mode",
|
|
831
|
-
"height": "Height",
|
|
832
823
|
"labelField": "Label Field",
|
|
833
824
|
"legendPosition": "Legend Position",
|
|
834
825
|
"legendPositions": {
|
|
@@ -843,8 +834,6 @@
|
|
|
843
834
|
"horizontal": "Horizontal",
|
|
844
835
|
"vertical": "Vertical"
|
|
845
836
|
},
|
|
846
|
-
"percentDisplay": "Show Numbers as Percentages",
|
|
847
|
-
"percentDisplayHint": "Values between 0-1 will be shown as percentages",
|
|
848
837
|
"pointStyle": "Point Style",
|
|
849
838
|
"pointStyles": {
|
|
850
839
|
"circle": "Circle",
|
|
@@ -856,30 +845,20 @@
|
|
|
856
845
|
},
|
|
857
846
|
"preview": "Preview",
|
|
858
847
|
"removeAll": "Remove all",
|
|
859
|
-
"rValueField": "Size/Radius Field",
|
|
860
848
|
"selectDynamicValue": "Select a dynamic value",
|
|
861
|
-
"series": "Series",
|
|
862
|
-
"seriesName": "Series Name",
|
|
863
849
|
"types": {
|
|
864
|
-
"area": "Area Chart",
|
|
865
850
|
"bar": "Bar Chart",
|
|
866
|
-
"bubble": "Bubble Chart",
|
|
867
851
|
"doughnut": "Doughnut Chart",
|
|
868
852
|
"line": "Line Chart",
|
|
869
853
|
"pie": "Pie Chart",
|
|
870
854
|
"polarArea": "Polar Area Chart",
|
|
871
|
-
"radar": "Radar Chart"
|
|
872
|
-
"scatter": "Scatter Chart"
|
|
855
|
+
"radar": "Radar Chart"
|
|
873
856
|
},
|
|
874
857
|
"useCustomColors": "Use custom colors",
|
|
875
858
|
"useThemeColors": "Use theme colors",
|
|
876
859
|
"valueField": "Value Field",
|
|
877
|
-
"viewModeControls": "View Mode Controls",
|
|
878
|
-
"width": "Width",
|
|
879
860
|
"xAxisLabel": "X-Axis Label",
|
|
880
|
-
"
|
|
881
|
-
"yAxisLabel": "Y-Axis Label",
|
|
882
|
-
"yValueField": "Y Value Field"
|
|
861
|
+
"yAxisLabel": "Y-Axis Label"
|
|
883
862
|
},
|
|
884
863
|
"deletedFile": {
|
|
885
864
|
"clickMessage": "Click here to add a new one",
|
package/locale/es.json
CHANGED
|
@@ -812,23 +812,14 @@
|
|
|
812
812
|
"stripingStartPosition": "Posición de inicio de filas alternadas"
|
|
813
813
|
},
|
|
814
814
|
"dataCharts": {
|
|
815
|
-
"addSeries": "Agregar serie",
|
|
816
815
|
"addYourChart": "Agregar tu gráfico",
|
|
817
816
|
"animation": "Animación",
|
|
818
|
-
"chartSettings": "Configuración del gráfico",
|
|
819
|
-
"chartSize": "Tamaño del gráfico",
|
|
820
817
|
"chartTitle": "Título del gráfico",
|
|
821
818
|
"chartType": "Tipo de gráfico",
|
|
822
|
-
"chartTypeSwitcherMultiSeriesDisabled": "No se puede habilitar para gráficos de múltiples series.",
|
|
823
819
|
"colorScheme": "Esquema de colores",
|
|
824
820
|
"configureArrayObjectFields": "Configurar campos de Array/Objeto",
|
|
825
821
|
"dataPoints": "Puntos de datos",
|
|
826
|
-
"dataSettings": "Configuración de datos",
|
|
827
822
|
"editDataChartsComponent": "Editar gráfico",
|
|
828
|
-
"enableChartTypeSwitcher": "Permitir cambio de tipo de gráfico en modo vista",
|
|
829
|
-
"enableDataEntry": "Permitir entrada de datos por usuarios en modo edición",
|
|
830
|
-
"enableFullscreenBtn": "Mostrar botón de pantalla completa en modo vista",
|
|
831
|
-
"height": "Altura",
|
|
832
823
|
"labelField": "Campo de etiqueta",
|
|
833
824
|
"legendPosition": "Posición de la leyenda",
|
|
834
825
|
"legendPositions": {
|
|
@@ -843,8 +834,6 @@
|
|
|
843
834
|
"horizontal": "Horizontal",
|
|
844
835
|
"vertical": "Vertical"
|
|
845
836
|
},
|
|
846
|
-
"percentDisplay": "Mostrar números como porcentajes",
|
|
847
|
-
"percentDisplayHint": "Los valores entre 0-1 se mostrarán como porcentajes",
|
|
848
837
|
"pointStyle": "Estilo de punto",
|
|
849
838
|
"pointStyles": {
|
|
850
839
|
"circle": "Círculo",
|
|
@@ -856,30 +845,20 @@
|
|
|
856
845
|
},
|
|
857
846
|
"preview": "Vista previa",
|
|
858
847
|
"removeAll": "Eliminar todo",
|
|
859
|
-
"rValueField": "Campo de tamaño/radio",
|
|
860
848
|
"selectDynamicValue": "Seleccionar un valor dinámico",
|
|
861
|
-
"series": "Serie",
|
|
862
|
-
"seriesName": "Nombre de la serie",
|
|
863
849
|
"types": {
|
|
864
|
-
"area": "Gráfico de área",
|
|
865
850
|
"bar": "Gráfico de barras",
|
|
866
|
-
"bubble": "Gráfico de burbujas",
|
|
867
851
|
"doughnut": "Gráfico de dona",
|
|
868
852
|
"line": "Gráfico de líneas",
|
|
869
853
|
"pie": "Gráfico circular",
|
|
870
854
|
"polarArea": "Gráfico de área polar",
|
|
871
|
-
"radar": "Gráfico de radar"
|
|
872
|
-
"scatter": "Gráfico de dispersión"
|
|
855
|
+
"radar": "Gráfico de radar"
|
|
873
856
|
},
|
|
874
857
|
"useCustomColors": "Usar colores personalizados",
|
|
875
858
|
"useThemeColors": "Usar colores del tema",
|
|
876
859
|
"valueField": "Campo de valor",
|
|
877
|
-
"viewModeControls": "Controles del modo vista",
|
|
878
|
-
"width": "Ancho",
|
|
879
860
|
"xAxisLabel": "Etiqueta del eje X",
|
|
880
|
-
"
|
|
881
|
-
"yAxisLabel": "Etiqueta del eje Y",
|
|
882
|
-
"yValueField": "Campo de valor Y"
|
|
861
|
+
"yAxisLabel": "Etiqueta del eje Y"
|
|
883
862
|
},
|
|
884
863
|
"deletedFile": {
|
|
885
864
|
"clickMessage": "Haz clic aquí para agregar uno nuevo",
|
package/locale/fr.json
CHANGED
|
@@ -812,23 +812,14 @@
|
|
|
812
812
|
"stripingStartPosition": "Position de départ des lignes alternées"
|
|
813
813
|
},
|
|
814
814
|
"dataCharts": {
|
|
815
|
-
"addSeries": "Ajouter une série",
|
|
816
815
|
"addYourChart": "Ajouter votre graphique",
|
|
817
816
|
"animation": "Animation",
|
|
818
|
-
"chartSettings": "Paramètres du graphique",
|
|
819
|
-
"chartSize": "Taille du graphique",
|
|
820
817
|
"chartTitle": "Titre du graphique",
|
|
821
818
|
"chartType": "Type de graphique",
|
|
822
|
-
"
|
|
823
|
-
"colorScheme": "Schéma de couleurs",
|
|
819
|
+
"colorScheme": "Color Scheme",
|
|
824
820
|
"configureArrayObjectFields": "Configurer les champs Array/Object",
|
|
825
821
|
"dataPoints": "Points de données",
|
|
826
|
-
"dataSettings": "Paramètres des données",
|
|
827
822
|
"editDataChartsComponent": "Modifier le graphique",
|
|
828
|
-
"enableChartTypeSwitcher": "Permettre le changement de type de graphique en mode visualisation",
|
|
829
|
-
"enableDataEntry": "Permettre la saisie de données par les utilisateurs en mode édition",
|
|
830
|
-
"enableFullscreenBtn": "Afficher le bouton plein écran en mode visualisation",
|
|
831
|
-
"height": "Hauteur",
|
|
832
823
|
"labelField": "Champ de label",
|
|
833
824
|
"legendPosition": "Position de la légende",
|
|
834
825
|
"legendPositions": {
|
|
@@ -843,8 +834,6 @@
|
|
|
843
834
|
"horizontal": "Horizontal",
|
|
844
835
|
"vertical": "Vertical"
|
|
845
836
|
},
|
|
846
|
-
"percentDisplay": "Afficher les nombres en pourcentages",
|
|
847
|
-
"percentDisplayHint": "Les valeurs entre 0 et 1 seront affichées en pourcentages",
|
|
848
837
|
"pointStyle": "Style de point",
|
|
849
838
|
"pointStyles": {
|
|
850
839
|
"circle": "Cercle",
|
|
@@ -856,30 +845,20 @@
|
|
|
856
845
|
},
|
|
857
846
|
"preview": "Aperçu",
|
|
858
847
|
"removeAll": "Supprimer tous",
|
|
859
|
-
"rValueField": "Champ de taille/rayon",
|
|
860
848
|
"selectDynamicValue": "Sélectionner une valeur dynamique",
|
|
861
|
-
"series": "Série",
|
|
862
|
-
"seriesName": "Nom de la série",
|
|
863
849
|
"types": {
|
|
864
|
-
"area": "Graphique en aires",
|
|
865
850
|
"bar": "Graphique en barres",
|
|
866
|
-
"bubble": "Graphique en bulles",
|
|
867
851
|
"doughnut": "Graphique en anneau",
|
|
868
852
|
"line": "Graphique en ligne",
|
|
869
853
|
"pie": "Graphique en secteurs",
|
|
870
854
|
"polarArea": "Graphique en secteurs polaires",
|
|
871
|
-
"radar": "Graphique en radar"
|
|
872
|
-
"scatter": "Graphique en nuage de points"
|
|
855
|
+
"radar": "Graphique en radar"
|
|
873
856
|
},
|
|
874
857
|
"useCustomColors": "Utiliser les couleurs personnalisées",
|
|
875
858
|
"useThemeColors": "Utiliser les couleurs du thème",
|
|
876
859
|
"valueField": "Champ de valeur",
|
|
877
|
-
"viewModeControls": "Contrôles du mode visualisation",
|
|
878
|
-
"width": "Largeur",
|
|
879
860
|
"xAxisLabel": "Label de l'axe X",
|
|
880
|
-
"
|
|
881
|
-
"yAxisLabel": "Label de l'axe Y",
|
|
882
|
-
"yValueField": "Champ de valeur Y"
|
|
861
|
+
"yAxisLabel": "Label de l'axe Y"
|
|
883
862
|
},
|
|
884
863
|
"deletedFile": {
|
|
885
864
|
"clickMessage": "Cliquer ici pour ajouter un nouveau",
|
package/locale/it.json
CHANGED
|
@@ -812,74 +812,53 @@
|
|
|
812
812
|
"stripingStartPosition": null
|
|
813
813
|
},
|
|
814
814
|
"dataCharts": {
|
|
815
|
-
"
|
|
816
|
-
"
|
|
817
|
-
"
|
|
818
|
-
"
|
|
819
|
-
"
|
|
820
|
-
"
|
|
821
|
-
"
|
|
822
|
-
"
|
|
823
|
-
"
|
|
824
|
-
"
|
|
825
|
-
"dataPoints": "Punti dati",
|
|
826
|
-
"dataSettings": "Impostazioni dati",
|
|
827
|
-
"editDataChartsComponent": "Modifica grafico",
|
|
828
|
-
"enableChartTypeSwitcher": "Consenti cambio tipo grafico in modalità visualizzazione",
|
|
829
|
-
"enableDataEntry": "Consenti inserimento dati da parte degli utenti in modalità modifica",
|
|
830
|
-
"enableFullscreenBtn": "Mostra pulsante schermo intero in modalità visualizzazione",
|
|
831
|
-
"height": "Altezza",
|
|
832
|
-
"labelField": "Campo etichetta",
|
|
833
|
-
"legendPosition": "Posizione legenda",
|
|
815
|
+
"addYourChart": "Add your chart",
|
|
816
|
+
"animation": "Animation",
|
|
817
|
+
"chartTitle": "Chart Title",
|
|
818
|
+
"chartType": "Chart Type",
|
|
819
|
+
"colorScheme": "Color Scheme",
|
|
820
|
+
"configureArrayObjectFields": "Configure Array/Object Fields",
|
|
821
|
+
"dataPoints": "Data Points",
|
|
822
|
+
"editDataChartsComponent": "Edit Chart",
|
|
823
|
+
"labelField": "Label Field",
|
|
824
|
+
"legendPosition": "Legend Position",
|
|
834
825
|
"legendPositions": {
|
|
835
|
-
"bottom": "
|
|
836
|
-
"left": "
|
|
837
|
-
"none": "
|
|
838
|
-
"right": "
|
|
839
|
-
"top": "
|
|
826
|
+
"bottom": "Bottom",
|
|
827
|
+
"left": "Left",
|
|
828
|
+
"none": "None",
|
|
829
|
+
"right": "Right",
|
|
830
|
+
"top": "Top"
|
|
840
831
|
},
|
|
841
|
-
"orientation": "
|
|
832
|
+
"orientation": "Chart Orientation",
|
|
842
833
|
"orientations": {
|
|
843
|
-
"horizontal": "
|
|
844
|
-
"vertical": "
|
|
834
|
+
"horizontal": "Horizontal",
|
|
835
|
+
"vertical": "Vertical"
|
|
845
836
|
},
|
|
846
|
-
"
|
|
847
|
-
"percentDisplayHint": "I valori tra 0 e 1 saranno mostrati come percentuali",
|
|
848
|
-
"pointStyle": "Stile punto",
|
|
837
|
+
"pointStyle": "Point Style",
|
|
849
838
|
"pointStyles": {
|
|
850
|
-
"circle": "
|
|
851
|
-
"cross": "
|
|
852
|
-
"dash": "
|
|
853
|
-
"rect": "
|
|
854
|
-
"star": "
|
|
855
|
-
"triangle": "
|
|
856
|
-
},
|
|
857
|
-
"preview": "
|
|
858
|
-
"removeAll": "
|
|
859
|
-
"
|
|
860
|
-
"selectDynamicValue": "Seleziona un valore dinamico",
|
|
861
|
-
"series": "Serie",
|
|
862
|
-
"seriesName": "Nome della serie",
|
|
839
|
+
"circle": "Circle",
|
|
840
|
+
"cross": "Cross",
|
|
841
|
+
"dash": "Dash",
|
|
842
|
+
"rect": "Rectangle",
|
|
843
|
+
"star": "Star",
|
|
844
|
+
"triangle": "Triangle"
|
|
845
|
+
},
|
|
846
|
+
"preview": "Preview",
|
|
847
|
+
"removeAll": "Remove all",
|
|
848
|
+
"selectDynamicValue": "Select a dynamic value",
|
|
863
849
|
"types": {
|
|
864
|
-
"
|
|
865
|
-
"
|
|
866
|
-
"
|
|
867
|
-
"
|
|
868
|
-
"
|
|
869
|
-
"
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
"
|
|
875
|
-
"
|
|
876
|
-
"valueField": "Campo valore",
|
|
877
|
-
"viewModeControls": "Controlli modalità visualizzazione",
|
|
878
|
-
"width": "Larghezza",
|
|
879
|
-
"xAxisLabel": "Etichetta asse X",
|
|
880
|
-
"xValueField": "Campo valore X",
|
|
881
|
-
"yAxisLabel": "Etichetta asse Y",
|
|
882
|
-
"yValueField": "Campo valore Y"
|
|
850
|
+
"bar": "Bar Chart",
|
|
851
|
+
"doughnut": "Doughnut Chart",
|
|
852
|
+
"line": "Line Chart",
|
|
853
|
+
"pie": "Pie Chart",
|
|
854
|
+
"polarArea": "Polar Area Chart",
|
|
855
|
+
"radar": "Radar Chart"
|
|
856
|
+
},
|
|
857
|
+
"useCustomColors": "Use custom colors",
|
|
858
|
+
"useThemeColors": "Use theme colors",
|
|
859
|
+
"valueField": "Value Field",
|
|
860
|
+
"xAxisLabel": "X-Axis Label",
|
|
861
|
+
"yAxisLabel": "Y-Axis Label"
|
|
883
862
|
},
|
|
884
863
|
"deletedFile": {
|
|
885
864
|
"clickMessage": "Click here to add a new one",
|