@pitcher/canvas-ui 2025.12.9-104839-beta → 2025.12.9-123223-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.
@@ -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,58 +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 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;
18
- value: string;
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
2
  export interface ExtendedChartConfiguration extends ChartConfiguration {
43
- data_points?: SeriesDataPoint[];
44
- series?: ChartSeries[];
3
+ data_points?: Array<{
4
+ label: string;
5
+ value: string;
6
+ dynamic_value?: {
7
+ path: string;
8
+ value: string;
9
+ };
10
+ }>;
45
11
  context?: any;
46
12
  data?: ChartConfiguration['data'] & {
47
13
  datasets?: Array<{
48
- label?: string;
49
- type?: string;
50
14
  background_color?: string | string[];
51
15
  border_color?: string | string[];
52
16
  point_style?: string;
53
- fill?: boolean;
54
- tension?: number;
55
- show_line?: boolean;
56
17
  }>;
57
18
  };
58
19
  options?: ChartConfiguration['options'] & {
@@ -73,23 +34,11 @@ export interface ExtendedChartConfiguration extends ChartConfiguration {
73
34
  text?: string;
74
35
  display?: boolean;
75
36
  };
76
- begin_at_zero?: boolean;
77
- };
78
- r?: {
79
- begin_at_zero?: boolean;
80
- ticks?: {
81
- step_size?: number;
82
- };
83
37
  };
84
38
  };
85
39
  index_axis?: 'x' | 'y';
86
40
  };
87
41
  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;
93
42
  }
94
43
  export interface DynamicValue {
95
44
  path: string;
@@ -98,25 +47,11 @@ export interface DynamicValue {
98
47
  export interface ArrayConfig {
99
48
  labelField: string;
100
49
  valueField: string;
101
- xField?: string;
102
- yField?: string;
103
50
  }
104
51
  export interface DataPoint {
105
52
  label: string;
106
53
  value: string;
107
- xValue?: string;
108
- yValue?: string;
109
54
  dynamicValue?: DynamicValue | any;
110
- dynamicXValue?: DynamicValue | any;
111
- dynamicYValue?: DynamicValue | any;
112
55
  selectedValue?: any;
113
- selectedXValue?: any;
114
- selectedYValue?: any;
115
56
  arrayConfig?: ArrayConfig;
116
57
  }
117
- export interface Series {
118
- id: string;
119
- name: string;
120
- chartType: ChartType;
121
- dataPoints: DataPoint[];
122
- }
package/lib/main.lib.d.ts CHANGED
@@ -191,6 +191,7 @@ export * from './util/userAgents';
191
191
  export * from './util/pitcher-settings.util';
192
192
  export * from './util/eval';
193
193
  export * from './util/storage.util';
194
+ export * from './util/handlebars';
194
195
  export * from './apps/collection-selector/utils/content-selector-adapter.util';
195
196
  export * from './util/soql.util.ts';
196
197
  export * from './utils/iframeInitialize';
@@ -1 +1,36 @@
1
1
  export declare function renderTemplate(template: string, context?: Record<string, any>): string;
2
+ export interface CustomHandlebarsHelper {
3
+ name: string;
4
+ code: string;
5
+ description?: string;
6
+ }
7
+ /**
8
+ * Register a single custom Handlebars helper from code string
9
+ * @param helper - The helper definition with name and code
10
+ * @returns true if registration succeeded, false otherwise
11
+ */
12
+ export declare function registerCustomHelper(helper: CustomHandlebarsHelper): boolean;
13
+ /**
14
+ * Register multiple custom Handlebars helpers
15
+ * @param helpers - Array of helper definitions
16
+ * @returns Object with counts of successful and failed registrations
17
+ */
18
+ export declare function registerCustomHelpers(helpers: CustomHandlebarsHelper[]): {
19
+ registered: number;
20
+ failed: number;
21
+ };
22
+ /**
23
+ * Load and register custom Handlebars helpers from installed apps
24
+ * Looks for the "handlebars-helpers" app and registers helpers from its metadata
25
+ * @param installedApps - Array of installed app files
26
+ * @returns Object with counts of successful and failed registrations
27
+ */
28
+ export declare function loadCustomHelpersFromApps(installedApps: Array<{
29
+ app_metadata?: {
30
+ name?: string;
31
+ };
32
+ metadata?: Record<string, any>;
33
+ }>): {
34
+ registered: number;
35
+ failed: number;
36
+ };
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,
@@ -857,28 +846,19 @@
857
846
  "preview": null,
858
847
  "removeAll": null,
859
848
  "selectDynamicValue": null,
860
- "series": null,
861
- "seriesName": null,
862
849
  "types": {
863
- "area": null,
864
850
  "bar": null,
865
- "bubble": null,
866
851
  "doughnut": null,
867
852
  "line": null,
868
853
  "pie": null,
869
854
  "polarArea": null,
870
- "radar": null,
871
- "scatter": null
855
+ "radar": null
872
856
  },
873
857
  "useCustomColors": null,
874
858
  "useThemeColors": null,
875
859
  "valueField": null,
876
- "viewModeControls": null,
877
- "width": null,
878
860
  "xAxisLabel": null,
879
- "xValueField": null,
880
- "yAxisLabel": null,
881
- "yValueField": null
861
+ "yAxisLabel": null
882
862
  },
883
863
  "deletedFile": {
884
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": "Κύκλος",
@@ -857,28 +846,19 @@
857
846
  "preview": "Προεπισκόπηση",
858
847
  "removeAll": "Αφαίρεση όλων",
859
848
  "selectDynamicValue": "Επιλέξτε μια δυναμική τιμή",
860
- "series": "Σειρά",
861
- "seriesName": "Όνομα σειράς",
862
849
  "types": {
863
- "area": "Γράφημα περιοχής",
864
850
  "bar": "Ραβδόγραμμα",
865
- "bubble": "Γράφημα φυσαλίδων",
866
851
  "doughnut": "Διάγραμμα Δαχτυλίδι",
867
852
  "line": "Γραμμικό Γράφημα",
868
853
  "pie": "Κυκλικό Διάγραμμα",
869
854
  "polarArea": "Πολικό Διάγραμμα",
870
- "radar": "Διάγραμμα Ραντάρ",
871
- "scatter": "Γράφημα διασποράς"
855
+ "radar": "Διάγραμμα Ραντάρ"
872
856
  },
873
857
  "useCustomColors": "Χρήση προσαρμοσμένων χρωμάτων",
874
858
  "useThemeColors": "Χρήση χρωμάτων θέματος",
875
859
  "valueField": "Πεδίο Τιμής",
876
- "viewModeControls": "Χειριστήρια λειτουργίας προβολής",
877
- "width": "Πλάτος",
878
860
  "xAxisLabel": "Ετικέτα Άξονα Χ",
879
- "xValueField": "Πεδίο τιμής X",
880
- "yAxisLabel": "Ετικέτα Άξονα Υ",
881
- "yValueField": "Πεδίο τιμής Y"
861
+ "yAxisLabel": "Ετικέτα Άξονα Υ"
882
862
  },
883
863
  "deletedFile": {
884
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",
@@ -857,28 +846,19 @@
857
846
  "preview": "Preview",
858
847
  "removeAll": "Remove all",
859
848
  "selectDynamicValue": "Select a dynamic value",
860
- "series": "Series",
861
- "seriesName": "Series Name",
862
849
  "types": {
863
- "area": "Area Chart",
864
850
  "bar": "Bar Chart",
865
- "bubble": "Bubble Chart",
866
851
  "doughnut": "Doughnut Chart",
867
852
  "line": "Line Chart",
868
853
  "pie": "Pie Chart",
869
854
  "polarArea": "Polar Area Chart",
870
- "radar": "Radar Chart",
871
- "scatter": "Scatter Chart"
855
+ "radar": "Radar Chart"
872
856
  },
873
857
  "useCustomColors": "Use custom colors",
874
858
  "useThemeColors": "Use theme colors",
875
859
  "valueField": "Value Field",
876
- "viewModeControls": "View Mode Controls",
877
- "width": "Width",
878
860
  "xAxisLabel": "X-Axis Label",
879
- "xValueField": "X Value Field",
880
- "yAxisLabel": "Y-Axis Label",
881
- "yValueField": "Y Value Field"
861
+ "yAxisLabel": "Y-Axis Label"
882
862
  },
883
863
  "deletedFile": {
884
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",
@@ -857,28 +846,19 @@
857
846
  "preview": "Vista previa",
858
847
  "removeAll": "Eliminar todo",
859
848
  "selectDynamicValue": "Seleccionar un valor dinámico",
860
- "series": "Serie",
861
- "seriesName": "Nombre de la serie",
862
849
  "types": {
863
- "area": "Gráfico de área",
864
850
  "bar": "Gráfico de barras",
865
- "bubble": "Gráfico de burbujas",
866
851
  "doughnut": "Gráfico de dona",
867
852
  "line": "Gráfico de líneas",
868
853
  "pie": "Gráfico circular",
869
854
  "polarArea": "Gráfico de área polar",
870
- "radar": "Gráfico de radar",
871
- "scatter": "Gráfico de dispersión"
855
+ "radar": "Gráfico de radar"
872
856
  },
873
857
  "useCustomColors": "Usar colores personalizados",
874
858
  "useThemeColors": "Usar colores del tema",
875
859
  "valueField": "Campo de valor",
876
- "viewModeControls": "Controles del modo vista",
877
- "width": "Ancho",
878
860
  "xAxisLabel": "Etiqueta del eje X",
879
- "xValueField": "Campo de valor X",
880
- "yAxisLabel": "Etiqueta del eje Y",
881
- "yValueField": "Campo de valor Y"
861
+ "yAxisLabel": "Etiqueta del eje Y"
882
862
  },
883
863
  "deletedFile": {
884
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
- "chartTypeSwitcherMultiSeriesDisabled": "Ne peut pas être activé pour les graphiques multi-séries.",
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",
@@ -857,28 +846,19 @@
857
846
  "preview": "Aperçu",
858
847
  "removeAll": "Supprimer tous",
859
848
  "selectDynamicValue": "Sélectionner une valeur dynamique",
860
- "series": "Série",
861
- "seriesName": "Nom de la série",
862
849
  "types": {
863
- "area": "Graphique en aires",
864
850
  "bar": "Graphique en barres",
865
- "bubble": "Graphique en bulles",
866
851
  "doughnut": "Graphique en anneau",
867
852
  "line": "Graphique en ligne",
868
853
  "pie": "Graphique en secteurs",
869
854
  "polarArea": "Graphique en secteurs polaires",
870
- "radar": "Graphique en radar",
871
- "scatter": "Graphique en nuage de points"
855
+ "radar": "Graphique en radar"
872
856
  },
873
857
  "useCustomColors": "Utiliser les couleurs personnalisées",
874
858
  "useThemeColors": "Utiliser les couleurs du thème",
875
859
  "valueField": "Champ de valeur",
876
- "viewModeControls": "Contrôles du mode visualisation",
877
- "width": "Largeur",
878
860
  "xAxisLabel": "Label de l'axe X",
879
- "xValueField": "Champ de valeur X",
880
- "yAxisLabel": "Label de l'axe Y",
881
- "yValueField": "Champ de valeur Y"
861
+ "yAxisLabel": "Label de l'axe Y"
882
862
  },
883
863
  "deletedFile": {
884
864
  "clickMessage": "Cliquer ici pour ajouter un nouveau",
package/locale/it.json CHANGED
@@ -812,73 +812,53 @@
812
812
  "stripingStartPosition": null
813
813
  },
814
814
  "dataCharts": {
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",
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": "In basso",
836
- "left": "Sinistra",
837
- "none": "Nessuna",
838
- "right": "Destra",
839
- "top": "In alto"
826
+ "bottom": "Bottom",
827
+ "left": "Left",
828
+ "none": "None",
829
+ "right": "Right",
830
+ "top": "Top"
840
831
  },
841
- "orientation": "Orientamento del grafico",
832
+ "orientation": "Chart Orientation",
842
833
  "orientations": {
843
- "horizontal": "Orizzontale",
844
- "vertical": "Verticale"
834
+ "horizontal": "Horizontal",
835
+ "vertical": "Vertical"
845
836
  },
846
- "percentDisplay": "Mostra numeri come percentuali",
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": "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",
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",
862
849
  "types": {
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"
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"
882
862
  },
883
863
  "deletedFile": {
884
864
  "clickMessage": "Click here to add a new one",