@pitcher/canvas-ui 2025.12.8-134939 → 2025.12.9-103004-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 +25 -2
- package/canvas-ui.js +1272 -450
- package/canvas-ui.js.map +1 -1
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.raw.vue.d.ts +4 -0
- package/lib/apps/canvas-builder/components/ui/DataCharts/types.d.ts +73 -8
- package/locale/de.json +22 -2
- package/locale/el.json +22 -2
- package/locale/en.json +22 -2
- package/locale/es.json +22 -2
- package/locale/fr.json +23 -3
- package/locale/it.json +61 -41
- package/locale/ja.json +58 -38
- package/locale/nl.json +61 -41
- package/locale/pl.json +22 -2
- package/locale/pt-br.json +33 -13
- package/locale/pt.json +22 -2
- package/locale/th.json +26 -6
- package/locale/tr.json +22 -2
- package/locale/zh.json +58 -38
- package/package.json +1 -1
|
@@ -8,9 +8,13 @@ declare global {
|
|
|
8
8
|
type __VLS_Props = {
|
|
9
9
|
data?: ExtendedChartConfiguration & {
|
|
10
10
|
context?: any;
|
|
11
|
+
_original_chart_type?: string;
|
|
11
12
|
};
|
|
13
|
+
isPreview?: boolean;
|
|
14
|
+
isEditMode?: boolean;
|
|
12
15
|
};
|
|
13
16
|
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;
|
|
14
18
|
chartRef: HTMLCanvasElement;
|
|
15
19
|
}, HTMLDivElement>;
|
|
16
20
|
export default _default;
|
|
@@ -1,19 +1,58 @@
|
|
|
1
1
|
import { ChartConfiguration } from 'chart.js';
|
|
2
|
-
export interface
|
|
3
|
-
|
|
4
|
-
|
|
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 XY_CHART_TYPES: ChartType[];
|
|
11
|
+
export interface SeriesDataPoint {
|
|
12
|
+
label: string;
|
|
13
|
+
value: string;
|
|
14
|
+
x_value?: string;
|
|
15
|
+
y_value?: string;
|
|
16
|
+
dynamic_value?: {
|
|
17
|
+
path: string;
|
|
5
18
|
value: string;
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}
|
|
19
|
+
};
|
|
20
|
+
dynamic_x_value?: {
|
|
21
|
+
path: string;
|
|
22
|
+
value: string;
|
|
23
|
+
};
|
|
24
|
+
dynamic_y_value?: {
|
|
25
|
+
path: string;
|
|
26
|
+
value: string;
|
|
27
|
+
};
|
|
28
|
+
array_config?: {
|
|
29
|
+
labelField: string;
|
|
30
|
+
valueField: string;
|
|
31
|
+
xField?: string;
|
|
32
|
+
yField?: string;
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
export interface ChartSeries {
|
|
36
|
+
id: string;
|
|
37
|
+
name: string;
|
|
38
|
+
chart_type: ChartType;
|
|
39
|
+
color?: string;
|
|
40
|
+
data_points: SeriesDataPoint[];
|
|
41
|
+
}
|
|
42
|
+
export interface ExtendedChartConfiguration extends ChartConfiguration {
|
|
43
|
+
data_points?: SeriesDataPoint[];
|
|
44
|
+
series?: ChartSeries[];
|
|
11
45
|
context?: any;
|
|
12
46
|
data?: ChartConfiguration['data'] & {
|
|
13
47
|
datasets?: Array<{
|
|
48
|
+
label?: string;
|
|
49
|
+
type?: string;
|
|
14
50
|
background_color?: string | string[];
|
|
15
51
|
border_color?: string | string[];
|
|
16
52
|
point_style?: string;
|
|
53
|
+
fill?: boolean;
|
|
54
|
+
tension?: number;
|
|
55
|
+
show_line?: boolean;
|
|
17
56
|
}>;
|
|
18
57
|
};
|
|
19
58
|
options?: ChartConfiguration['options'] & {
|
|
@@ -34,11 +73,23 @@ export interface ExtendedChartConfiguration extends ChartConfiguration {
|
|
|
34
73
|
text?: string;
|
|
35
74
|
display?: boolean;
|
|
36
75
|
};
|
|
76
|
+
begin_at_zero?: boolean;
|
|
77
|
+
};
|
|
78
|
+
r?: {
|
|
79
|
+
begin_at_zero?: boolean;
|
|
80
|
+
ticks?: {
|
|
81
|
+
step_size?: number;
|
|
82
|
+
};
|
|
37
83
|
};
|
|
38
84
|
};
|
|
39
85
|
index_axis?: 'x' | 'y';
|
|
40
86
|
};
|
|
41
87
|
color_scheme_type?: 'theme' | 'custom';
|
|
88
|
+
percent_display?: boolean;
|
|
89
|
+
view_controls?: ViewControls;
|
|
90
|
+
chart_height?: number;
|
|
91
|
+
chart_width?: number;
|
|
92
|
+
_primary_chart_type?: ChartType;
|
|
42
93
|
}
|
|
43
94
|
export interface DynamicValue {
|
|
44
95
|
path: string;
|
|
@@ -47,11 +98,25 @@ export interface DynamicValue {
|
|
|
47
98
|
export interface ArrayConfig {
|
|
48
99
|
labelField: string;
|
|
49
100
|
valueField: string;
|
|
101
|
+
xField?: string;
|
|
102
|
+
yField?: string;
|
|
50
103
|
}
|
|
51
104
|
export interface DataPoint {
|
|
52
105
|
label: string;
|
|
53
106
|
value: string;
|
|
107
|
+
xValue?: string;
|
|
108
|
+
yValue?: string;
|
|
54
109
|
dynamicValue?: DynamicValue | any;
|
|
110
|
+
dynamicXValue?: DynamicValue | any;
|
|
111
|
+
dynamicYValue?: DynamicValue | any;
|
|
55
112
|
selectedValue?: any;
|
|
113
|
+
selectedXValue?: any;
|
|
114
|
+
selectedYValue?: any;
|
|
56
115
|
arrayConfig?: ArrayConfig;
|
|
57
116
|
}
|
|
117
|
+
export interface Series {
|
|
118
|
+
id: string;
|
|
119
|
+
name: string;
|
|
120
|
+
chartType: ChartType;
|
|
121
|
+
dataPoints: DataPoint[];
|
|
122
|
+
}
|
package/locale/de.json
CHANGED
|
@@ -812,14 +812,23 @@
|
|
|
812
812
|
"stripingStartPosition": null
|
|
813
813
|
},
|
|
814
814
|
"dataCharts": {
|
|
815
|
+
"addSeries": null,
|
|
815
816
|
"addYourChart": null,
|
|
816
817
|
"animation": null,
|
|
818
|
+
"chartSettings": null,
|
|
819
|
+
"chartSize": null,
|
|
817
820
|
"chartTitle": null,
|
|
818
821
|
"chartType": null,
|
|
822
|
+
"chartTypeSwitcherMultiSeriesDisabled": null,
|
|
819
823
|
"colorScheme": null,
|
|
820
824
|
"configureArrayObjectFields": null,
|
|
821
825
|
"dataPoints": null,
|
|
826
|
+
"dataSettings": null,
|
|
822
827
|
"editDataChartsComponent": null,
|
|
828
|
+
"enableChartTypeSwitcher": null,
|
|
829
|
+
"enableDataEntry": null,
|
|
830
|
+
"enableFullscreenBtn": null,
|
|
831
|
+
"height": null,
|
|
823
832
|
"labelField": null,
|
|
824
833
|
"legendPosition": null,
|
|
825
834
|
"legendPositions": {
|
|
@@ -834,6 +843,8 @@
|
|
|
834
843
|
"horizontal": null,
|
|
835
844
|
"vertical": null
|
|
836
845
|
},
|
|
846
|
+
"percentDisplay": null,
|
|
847
|
+
"percentDisplayHint": null,
|
|
837
848
|
"pointStyle": null,
|
|
838
849
|
"pointStyles": {
|
|
839
850
|
"circle": null,
|
|
@@ -846,19 +857,28 @@
|
|
|
846
857
|
"preview": null,
|
|
847
858
|
"removeAll": null,
|
|
848
859
|
"selectDynamicValue": null,
|
|
860
|
+
"series": null,
|
|
861
|
+
"seriesName": null,
|
|
849
862
|
"types": {
|
|
863
|
+
"area": null,
|
|
850
864
|
"bar": null,
|
|
865
|
+
"bubble": null,
|
|
851
866
|
"doughnut": null,
|
|
852
867
|
"line": null,
|
|
853
868
|
"pie": null,
|
|
854
869
|
"polarArea": null,
|
|
855
|
-
"radar": null
|
|
870
|
+
"radar": null,
|
|
871
|
+
"scatter": null
|
|
856
872
|
},
|
|
857
873
|
"useCustomColors": null,
|
|
858
874
|
"useThemeColors": null,
|
|
859
875
|
"valueField": null,
|
|
876
|
+
"viewModeControls": null,
|
|
877
|
+
"width": null,
|
|
860
878
|
"xAxisLabel": null,
|
|
861
|
-
"
|
|
879
|
+
"xValueField": null,
|
|
880
|
+
"yAxisLabel": null,
|
|
881
|
+
"yValueField": null
|
|
862
882
|
},
|
|
863
883
|
"deletedFile": {
|
|
864
884
|
"clickMessage": null,
|
package/locale/el.json
CHANGED
|
@@ -812,14 +812,23 @@
|
|
|
812
812
|
"stripingStartPosition": "Θέση έναρξης ριγέ"
|
|
813
813
|
},
|
|
814
814
|
"dataCharts": {
|
|
815
|
+
"addSeries": "Προσθήκη σειράς",
|
|
815
816
|
"addYourChart": "Προσθέστε το γράφημά σας",
|
|
816
817
|
"animation": "Κίνηση",
|
|
818
|
+
"chartSettings": "Ρυθμίσεις γραφήματος",
|
|
819
|
+
"chartSize": "Μέγεθος γραφήματος",
|
|
817
820
|
"chartTitle": "Τίτλος Γραφήματος",
|
|
818
821
|
"chartType": "Τύπος Γραφήματος",
|
|
822
|
+
"chartTypeSwitcherMultiSeriesDisabled": "Δεν μπορεί να ενεργοποιηθεί για γραφήματα πολλαπλών σειρών.",
|
|
819
823
|
"colorScheme": "Χρωματικό Σχήμα",
|
|
820
824
|
"configureArrayObjectFields": "Ρύθμιση Πεδίων Πίνακα/Αντικειμένου",
|
|
821
825
|
"dataPoints": "Σημεία Δεδομένων",
|
|
826
|
+
"dataSettings": "Ρυθμίσεις δεδομένων",
|
|
822
827
|
"editDataChartsComponent": "Επεξεργασία Γραφήματος",
|
|
828
|
+
"enableChartTypeSwitcher": "Επιτρέψτε αλλαγή τύπου γραφήματος σε λειτουργία προβολής",
|
|
829
|
+
"enableDataEntry": "Επιτρέψτε εισαγωγή δεδομένων από χρήστες σε λειτουργία επεξεργασίας",
|
|
830
|
+
"enableFullscreenBtn": "Εμφάνιση κουμπιού πλήρους οθόνης σε λειτουργία προβολής",
|
|
831
|
+
"height": "Ύψος",
|
|
823
832
|
"labelField": "Πεδίο Ετικέτας",
|
|
824
833
|
"legendPosition": "Θέση Υπομνήματος",
|
|
825
834
|
"legendPositions": {
|
|
@@ -834,6 +843,8 @@
|
|
|
834
843
|
"horizontal": "Οριζόντια",
|
|
835
844
|
"vertical": "Κάθετα"
|
|
836
845
|
},
|
|
846
|
+
"percentDisplay": "Εμφάνιση αριθμών ως ποσοστά",
|
|
847
|
+
"percentDisplayHint": "Οι τιμές μεταξύ 0-1 θα εμφανίζονται ως ποσοστά",
|
|
837
848
|
"pointStyle": "Στυλ Σημείων",
|
|
838
849
|
"pointStyles": {
|
|
839
850
|
"circle": "Κύκλος",
|
|
@@ -846,19 +857,28 @@
|
|
|
846
857
|
"preview": "Προεπισκόπηση",
|
|
847
858
|
"removeAll": "Αφαίρεση όλων",
|
|
848
859
|
"selectDynamicValue": "Επιλέξτε μια δυναμική τιμή",
|
|
860
|
+
"series": "Σειρά",
|
|
861
|
+
"seriesName": "Όνομα σειράς",
|
|
849
862
|
"types": {
|
|
863
|
+
"area": "Γράφημα περιοχής",
|
|
850
864
|
"bar": "Ραβδόγραμμα",
|
|
865
|
+
"bubble": "Γράφημα φυσαλίδων",
|
|
851
866
|
"doughnut": "Διάγραμμα Δαχτυλίδι",
|
|
852
867
|
"line": "Γραμμικό Γράφημα",
|
|
853
868
|
"pie": "Κυκλικό Διάγραμμα",
|
|
854
869
|
"polarArea": "Πολικό Διάγραμμα",
|
|
855
|
-
"radar": "Διάγραμμα Ραντάρ"
|
|
870
|
+
"radar": "Διάγραμμα Ραντάρ",
|
|
871
|
+
"scatter": "Γράφημα διασποράς"
|
|
856
872
|
},
|
|
857
873
|
"useCustomColors": "Χρήση προσαρμοσμένων χρωμάτων",
|
|
858
874
|
"useThemeColors": "Χρήση χρωμάτων θέματος",
|
|
859
875
|
"valueField": "Πεδίο Τιμής",
|
|
876
|
+
"viewModeControls": "Χειριστήρια λειτουργίας προβολής",
|
|
877
|
+
"width": "Πλάτος",
|
|
860
878
|
"xAxisLabel": "Ετικέτα Άξονα Χ",
|
|
861
|
-
"
|
|
879
|
+
"xValueField": "Πεδίο τιμής X",
|
|
880
|
+
"yAxisLabel": "Ετικέτα Άξονα Υ",
|
|
881
|
+
"yValueField": "Πεδίο τιμής Y"
|
|
862
882
|
},
|
|
863
883
|
"deletedFile": {
|
|
864
884
|
"clickMessage": "Κάντε κλικ εδώ για να προσθέσετε ένα νέο",
|
package/locale/en.json
CHANGED
|
@@ -812,14 +812,23 @@
|
|
|
812
812
|
"stripingStartPosition": "Striping start position"
|
|
813
813
|
},
|
|
814
814
|
"dataCharts": {
|
|
815
|
+
"addSeries": "Add Series",
|
|
815
816
|
"addYourChart": "Add your chart",
|
|
816
817
|
"animation": "Animation",
|
|
818
|
+
"chartSettings": "Chart Settings",
|
|
819
|
+
"chartSize": "Chart Size",
|
|
817
820
|
"chartTitle": "Chart Title",
|
|
818
821
|
"chartType": "Chart Type",
|
|
822
|
+
"chartTypeSwitcherMultiSeriesDisabled": "This can't be enabled for multi-series charts.",
|
|
819
823
|
"colorScheme": "Color Scheme",
|
|
820
824
|
"configureArrayObjectFields": "Configure Array/Object Fields",
|
|
821
825
|
"dataPoints": "Data Points",
|
|
826
|
+
"dataSettings": "Data Settings",
|
|
822
827
|
"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",
|
|
823
832
|
"labelField": "Label Field",
|
|
824
833
|
"legendPosition": "Legend Position",
|
|
825
834
|
"legendPositions": {
|
|
@@ -834,6 +843,8 @@
|
|
|
834
843
|
"horizontal": "Horizontal",
|
|
835
844
|
"vertical": "Vertical"
|
|
836
845
|
},
|
|
846
|
+
"percentDisplay": "Show Numbers as Percentages",
|
|
847
|
+
"percentDisplayHint": "Values between 0-1 will be shown as percentages",
|
|
837
848
|
"pointStyle": "Point Style",
|
|
838
849
|
"pointStyles": {
|
|
839
850
|
"circle": "Circle",
|
|
@@ -846,19 +857,28 @@
|
|
|
846
857
|
"preview": "Preview",
|
|
847
858
|
"removeAll": "Remove all",
|
|
848
859
|
"selectDynamicValue": "Select a dynamic value",
|
|
860
|
+
"series": "Series",
|
|
861
|
+
"seriesName": "Series Name",
|
|
849
862
|
"types": {
|
|
863
|
+
"area": "Area Chart",
|
|
850
864
|
"bar": "Bar Chart",
|
|
865
|
+
"bubble": "Bubble Chart",
|
|
851
866
|
"doughnut": "Doughnut Chart",
|
|
852
867
|
"line": "Line Chart",
|
|
853
868
|
"pie": "Pie Chart",
|
|
854
869
|
"polarArea": "Polar Area Chart",
|
|
855
|
-
"radar": "Radar Chart"
|
|
870
|
+
"radar": "Radar Chart",
|
|
871
|
+
"scatter": "Scatter Chart"
|
|
856
872
|
},
|
|
857
873
|
"useCustomColors": "Use custom colors",
|
|
858
874
|
"useThemeColors": "Use theme colors",
|
|
859
875
|
"valueField": "Value Field",
|
|
876
|
+
"viewModeControls": "View Mode Controls",
|
|
877
|
+
"width": "Width",
|
|
860
878
|
"xAxisLabel": "X-Axis Label",
|
|
861
|
-
"
|
|
879
|
+
"xValueField": "X Value Field",
|
|
880
|
+
"yAxisLabel": "Y-Axis Label",
|
|
881
|
+
"yValueField": "Y Value Field"
|
|
862
882
|
},
|
|
863
883
|
"deletedFile": {
|
|
864
884
|
"clickMessage": "Click here to add a new one",
|
package/locale/es.json
CHANGED
|
@@ -812,14 +812,23 @@
|
|
|
812
812
|
"stripingStartPosition": "Posición de inicio de filas alternadas"
|
|
813
813
|
},
|
|
814
814
|
"dataCharts": {
|
|
815
|
+
"addSeries": "Agregar serie",
|
|
815
816
|
"addYourChart": "Agregar tu gráfico",
|
|
816
817
|
"animation": "Animación",
|
|
818
|
+
"chartSettings": "Configuración del gráfico",
|
|
819
|
+
"chartSize": "Tamaño del gráfico",
|
|
817
820
|
"chartTitle": "Título del gráfico",
|
|
818
821
|
"chartType": "Tipo de gráfico",
|
|
822
|
+
"chartTypeSwitcherMultiSeriesDisabled": "No se puede habilitar para gráficos de múltiples series.",
|
|
819
823
|
"colorScheme": "Esquema de colores",
|
|
820
824
|
"configureArrayObjectFields": "Configurar campos de Array/Objeto",
|
|
821
825
|
"dataPoints": "Puntos de datos",
|
|
826
|
+
"dataSettings": "Configuración de datos",
|
|
822
827
|
"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",
|
|
823
832
|
"labelField": "Campo de etiqueta",
|
|
824
833
|
"legendPosition": "Posición de la leyenda",
|
|
825
834
|
"legendPositions": {
|
|
@@ -834,6 +843,8 @@
|
|
|
834
843
|
"horizontal": "Horizontal",
|
|
835
844
|
"vertical": "Vertical"
|
|
836
845
|
},
|
|
846
|
+
"percentDisplay": "Mostrar números como porcentajes",
|
|
847
|
+
"percentDisplayHint": "Los valores entre 0-1 se mostrarán como porcentajes",
|
|
837
848
|
"pointStyle": "Estilo de punto",
|
|
838
849
|
"pointStyles": {
|
|
839
850
|
"circle": "Círculo",
|
|
@@ -846,19 +857,28 @@
|
|
|
846
857
|
"preview": "Vista previa",
|
|
847
858
|
"removeAll": "Eliminar todo",
|
|
848
859
|
"selectDynamicValue": "Seleccionar un valor dinámico",
|
|
860
|
+
"series": "Serie",
|
|
861
|
+
"seriesName": "Nombre de la serie",
|
|
849
862
|
"types": {
|
|
863
|
+
"area": "Gráfico de área",
|
|
850
864
|
"bar": "Gráfico de barras",
|
|
865
|
+
"bubble": "Gráfico de burbujas",
|
|
851
866
|
"doughnut": "Gráfico de dona",
|
|
852
867
|
"line": "Gráfico de líneas",
|
|
853
868
|
"pie": "Gráfico circular",
|
|
854
869
|
"polarArea": "Gráfico de área polar",
|
|
855
|
-
"radar": "Gráfico de radar"
|
|
870
|
+
"radar": "Gráfico de radar",
|
|
871
|
+
"scatter": "Gráfico de dispersión"
|
|
856
872
|
},
|
|
857
873
|
"useCustomColors": "Usar colores personalizados",
|
|
858
874
|
"useThemeColors": "Usar colores del tema",
|
|
859
875
|
"valueField": "Campo de valor",
|
|
876
|
+
"viewModeControls": "Controles del modo vista",
|
|
877
|
+
"width": "Ancho",
|
|
860
878
|
"xAxisLabel": "Etiqueta del eje X",
|
|
861
|
-
"
|
|
879
|
+
"xValueField": "Campo de valor X",
|
|
880
|
+
"yAxisLabel": "Etiqueta del eje Y",
|
|
881
|
+
"yValueField": "Campo de valor Y"
|
|
862
882
|
},
|
|
863
883
|
"deletedFile": {
|
|
864
884
|
"clickMessage": "Haz clic aquí para agregar uno nuevo",
|
package/locale/fr.json
CHANGED
|
@@ -812,14 +812,23 @@
|
|
|
812
812
|
"stripingStartPosition": "Position de départ des lignes alternées"
|
|
813
813
|
},
|
|
814
814
|
"dataCharts": {
|
|
815
|
+
"addSeries": "Ajouter une série",
|
|
815
816
|
"addYourChart": "Ajouter votre graphique",
|
|
816
817
|
"animation": "Animation",
|
|
818
|
+
"chartSettings": "Paramètres du graphique",
|
|
819
|
+
"chartSize": "Taille du graphique",
|
|
817
820
|
"chartTitle": "Titre du graphique",
|
|
818
821
|
"chartType": "Type de graphique",
|
|
819
|
-
"
|
|
822
|
+
"chartTypeSwitcherMultiSeriesDisabled": "Ne peut pas être activé pour les graphiques multi-séries.",
|
|
823
|
+
"colorScheme": "Schéma de couleurs",
|
|
820
824
|
"configureArrayObjectFields": "Configurer les champs Array/Object",
|
|
821
825
|
"dataPoints": "Points de données",
|
|
826
|
+
"dataSettings": "Paramètres des données",
|
|
822
827
|
"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",
|
|
823
832
|
"labelField": "Champ de label",
|
|
824
833
|
"legendPosition": "Position de la légende",
|
|
825
834
|
"legendPositions": {
|
|
@@ -834,6 +843,8 @@
|
|
|
834
843
|
"horizontal": "Horizontal",
|
|
835
844
|
"vertical": "Vertical"
|
|
836
845
|
},
|
|
846
|
+
"percentDisplay": "Afficher les nombres en pourcentages",
|
|
847
|
+
"percentDisplayHint": "Les valeurs entre 0 et 1 seront affichées en pourcentages",
|
|
837
848
|
"pointStyle": "Style de point",
|
|
838
849
|
"pointStyles": {
|
|
839
850
|
"circle": "Cercle",
|
|
@@ -846,19 +857,28 @@
|
|
|
846
857
|
"preview": "Aperçu",
|
|
847
858
|
"removeAll": "Supprimer tous",
|
|
848
859
|
"selectDynamicValue": "Sélectionner une valeur dynamique",
|
|
860
|
+
"series": "Série",
|
|
861
|
+
"seriesName": "Nom de la série",
|
|
849
862
|
"types": {
|
|
863
|
+
"area": "Graphique en aires",
|
|
850
864
|
"bar": "Graphique en barres",
|
|
865
|
+
"bubble": "Graphique en bulles",
|
|
851
866
|
"doughnut": "Graphique en anneau",
|
|
852
867
|
"line": "Graphique en ligne",
|
|
853
868
|
"pie": "Graphique en secteurs",
|
|
854
869
|
"polarArea": "Graphique en secteurs polaires",
|
|
855
|
-
"radar": "Graphique en radar"
|
|
870
|
+
"radar": "Graphique en radar",
|
|
871
|
+
"scatter": "Graphique en nuage de points"
|
|
856
872
|
},
|
|
857
873
|
"useCustomColors": "Utiliser les couleurs personnalisées",
|
|
858
874
|
"useThemeColors": "Utiliser les couleurs du thème",
|
|
859
875
|
"valueField": "Champ de valeur",
|
|
876
|
+
"viewModeControls": "Contrôles du mode visualisation",
|
|
877
|
+
"width": "Largeur",
|
|
860
878
|
"xAxisLabel": "Label de l'axe X",
|
|
861
|
-
"
|
|
879
|
+
"xValueField": "Champ de valeur X",
|
|
880
|
+
"yAxisLabel": "Label de l'axe Y",
|
|
881
|
+
"yValueField": "Champ de valeur Y"
|
|
862
882
|
},
|
|
863
883
|
"deletedFile": {
|
|
864
884
|
"clickMessage": "Cliquer ici pour ajouter un nouveau",
|
package/locale/it.json
CHANGED
|
@@ -812,53 +812,73 @@
|
|
|
812
812
|
"stripingStartPosition": null
|
|
813
813
|
},
|
|
814
814
|
"dataCharts": {
|
|
815
|
-
"
|
|
816
|
-
"
|
|
817
|
-
"
|
|
818
|
-
"
|
|
819
|
-
"
|
|
820
|
-
"
|
|
821
|
-
"
|
|
822
|
-
"
|
|
823
|
-
"
|
|
824
|
-
"
|
|
815
|
+
"addSeries": "Aggiungi serie",
|
|
816
|
+
"addYourChart": "Aggiungi il tuo grafico",
|
|
817
|
+
"animation": "Animazione",
|
|
818
|
+
"chartSettings": "Impostazioni del grafico",
|
|
819
|
+
"chartSize": "Dimensione del grafico",
|
|
820
|
+
"chartTitle": "Titolo del grafico",
|
|
821
|
+
"chartType": "Tipo di grafico",
|
|
822
|
+
"chartTypeSwitcherMultiSeriesDisabled": "Non può essere abilitato per grafici multi-serie.",
|
|
823
|
+
"colorScheme": "Schema colori",
|
|
824
|
+
"configureArrayObjectFields": "Configura campi Array/Oggetto",
|
|
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",
|
|
825
834
|
"legendPositions": {
|
|
826
|
-
"bottom": "
|
|
827
|
-
"left": "
|
|
828
|
-
"none": "
|
|
829
|
-
"right": "
|
|
830
|
-
"top": "
|
|
835
|
+
"bottom": "In basso",
|
|
836
|
+
"left": "Sinistra",
|
|
837
|
+
"none": "Nessuna",
|
|
838
|
+
"right": "Destra",
|
|
839
|
+
"top": "In alto"
|
|
831
840
|
},
|
|
832
|
-
"orientation": "
|
|
841
|
+
"orientation": "Orientamento del grafico",
|
|
833
842
|
"orientations": {
|
|
834
|
-
"horizontal": "
|
|
835
|
-
"vertical": "
|
|
843
|
+
"horizontal": "Orizzontale",
|
|
844
|
+
"vertical": "Verticale"
|
|
836
845
|
},
|
|
837
|
-
"
|
|
846
|
+
"percentDisplay": "Mostra numeri come percentuali",
|
|
847
|
+
"percentDisplayHint": "I valori tra 0 e 1 saranno mostrati come percentuali",
|
|
848
|
+
"pointStyle": "Stile punto",
|
|
838
849
|
"pointStyles": {
|
|
839
|
-
"circle": "
|
|
840
|
-
"cross": "
|
|
841
|
-
"dash": "
|
|
842
|
-
"rect": "
|
|
843
|
-
"star": "
|
|
844
|
-
"triangle": "
|
|
845
|
-
},
|
|
846
|
-
"preview": "
|
|
847
|
-
"removeAll": "
|
|
848
|
-
"selectDynamicValue": "
|
|
850
|
+
"circle": "Cerchio",
|
|
851
|
+
"cross": "Croce",
|
|
852
|
+
"dash": "Trattino",
|
|
853
|
+
"rect": "Rettangolo",
|
|
854
|
+
"star": "Stella",
|
|
855
|
+
"triangle": "Triangolo"
|
|
856
|
+
},
|
|
857
|
+
"preview": "Anteprima",
|
|
858
|
+
"removeAll": "Rimuovi tutto",
|
|
859
|
+
"selectDynamicValue": "Seleziona un valore dinamico",
|
|
860
|
+
"series": "Serie",
|
|
861
|
+
"seriesName": "Nome della serie",
|
|
849
862
|
"types": {
|
|
850
|
-
"
|
|
851
|
-
"
|
|
852
|
-
"
|
|
853
|
-
"
|
|
854
|
-
"
|
|
855
|
-
"
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
"
|
|
861
|
-
"
|
|
863
|
+
"area": "Grafico ad area",
|
|
864
|
+
"bar": "Grafico a barre",
|
|
865
|
+
"bubble": "Grafico a bolle",
|
|
866
|
+
"doughnut": "Grafico a ciambella",
|
|
867
|
+
"line": "Grafico a linee",
|
|
868
|
+
"pie": "Grafico a torta",
|
|
869
|
+
"polarArea": "Grafico ad area polare",
|
|
870
|
+
"radar": "Grafico radar",
|
|
871
|
+
"scatter": "Grafico a dispersione"
|
|
872
|
+
},
|
|
873
|
+
"useCustomColors": "Usa colori personalizzati",
|
|
874
|
+
"useThemeColors": "Usa colori del tema",
|
|
875
|
+
"valueField": "Campo valore",
|
|
876
|
+
"viewModeControls": "Controlli modalità visualizzazione",
|
|
877
|
+
"width": "Larghezza",
|
|
878
|
+
"xAxisLabel": "Etichetta asse X",
|
|
879
|
+
"xValueField": "Campo valore X",
|
|
880
|
+
"yAxisLabel": "Etichetta asse Y",
|
|
881
|
+
"yValueField": "Campo valore Y"
|
|
862
882
|
},
|
|
863
883
|
"deletedFile": {
|
|
864
884
|
"clickMessage": "Click here to add a new one",
|