@pitcher/canvas-ui 2025.12.8-91341 → 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.
@@ -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 ExtendedChartConfiguration extends ChartConfiguration {
3
- data_points?: Array<{
4
- label: string;
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
- dynamic_value?: {
7
- path: string;
8
- value: string;
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
+ }
@@ -11,19 +11,11 @@ type __VLS_Props = {
11
11
  areSomeSelected: boolean;
12
12
  addedItemIds?: CanvasRetrieve['id'][];
13
13
  selectedItemIds?: CanvasRetrieve['id'][];
14
- currentSort?: {
15
- field: string;
16
- order: 'asc' | 'desc';
17
- };
18
14
  };
19
15
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
20
16
  "clear-selection": () => any;
21
17
  "items-added": (itemIds: string[], position?: "bottom" | "top" | undefined) => any;
22
18
  "items-removed": (itemIds: string[]) => any;
23
- "sort-changed": (sort: {
24
- field: string;
25
- order: "asc" | "desc";
26
- }) => any;
27
19
  "toggle-select-all": () => any;
28
20
  "page-first": () => any;
29
21
  "page-last": () => any;
@@ -33,10 +25,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
33
25
  "onClear-selection"?: (() => any) | undefined;
34
26
  "onItems-added"?: ((itemIds: string[], position?: "bottom" | "top" | undefined) => any) | undefined;
35
27
  "onItems-removed"?: ((itemIds: string[]) => any) | undefined;
36
- "onSort-changed"?: ((sort: {
37
- field: string;
38
- order: "asc" | "desc";
39
- }) => any) | undefined;
40
28
  "onToggle-select-all"?: (() => any) | undefined;
41
29
  "onPage-first"?: (() => any) | undefined;
42
30
  "onPage-last"?: (() => any) | undefined;
@@ -1,4 +1,4 @@
1
- export type LaunchDarklyBooleanFlagKey = 'ai_code_generation_model' | 'ai_text_generation_model' | 'ai_image_generation_model' | 'ai_video_generation_model' | 'allow_ai_prompts_in_canvas_text' | 'allow_bulk_actions_canvases_files' | 'allow_content_grid_autofill' | 'allow_canvas_duplication' | 'allow_canvases_tables_columns_settings' | 'allow_table_column_resizing' | 'allow_creating_canvas_with_no_template' | 'allow_dynamic_data_table_for_scribble_component' | 'allow_html_for_scribble_component' | 'allow_embeddable_for_scribble_component' | 'allow_embeddable_hiding' | 'allow_multimedia_for_scribble_component' | 'allow_note_taking' | 'allow_rep_canvas_metadata_edit' | 'allow_rep_file_distributions' | 'allow_rep_file_rating' | 'allow_rep_file_upload' | 'allow_saving_annotations_in_personal_layer' | 'allow_user_to_edit_font_size_and_color_in_canvas_tokens' | 'are_sections_system_controlled' | 'enable_canvas_core_distributions' | 'enable_file_core_distributions' | 'copy_context_to_canvas' | 'copy_template_metadata_to_canvas' | 'disable_canvas_edit_for_reps' | 'disable_custom_tooltips' | 'disable_file_edit_content' | 'disable_fullscreen_canvas_builder' | 'disable_impact_web_browser_fullscreen' | 'display_section_list_name' | 'disable_download_canvas' | 'enable_ai_generated_thumbnails' | 'enable_analytics' | 'enable_app_developer_role' | 'enable_algolia_search' | 'enable_background_image_theme_options' | 'enable_better_canvas_builder_control_bars_on_zoom' | 'enable_bulk_update_file_attributes' | 'enable_canvas_as_home' | 'enable_canvas_blocks' | 'enable_canvas_node_debugging' | 'enable_canvas_locks' | 'enable_canvas_template_edit_in_impact' | 'enable_canvas_tokens' | 'enable_collaborations' | 'enable_collection_player_data_accessor' | 'enable_content_grid_data_accessor' | 'enable_content_type_change_in_content_selector' | 'enable_cross_tab_instance_reload_for_ld_sync' | 'enable_create_section_from_section_template' | 'enable_custom_display_overrides' | 'enable_default_crm_shape' | 'enable_detailed_date_format' | 'enable_dsr_readonly_annotations' | 'enable_dynamic_data_table_component' | 'enable_custom_data_tables' | 'enable_embedded_video_autoplay' | 'enable_embedded_video' | 'enable_enhanced_canvas_drawer_app' | 'enable_enhanced_indicators' | 'enable_enhanced_section_execution_states' | 'enable_experimental_canvas_builder_dnd' | 'enable_extra_file_data' | 'enable_file_pages_metadata' | 'enable_file_revisions' | 'enable_folder_details_edit' | 'enable_handlebar_template_support' | 'enable_height_in_component_theming' | 'enable_hotspot_visibility' | 'enable_improved_canvas_node_updating' | 'enable_individual_users_in_file_distribution' | 'enable_insearch_in_section_selector' | 'enable_instance_cloner' | 'enable_advanced_cloner' | 'enable_instance_editor_role' | 'enable_instance_navigation_from_management' | 'enable_knock_notifications' | 'enable_maintain_section_theme_control' | 'enable_metadata_in_file_uploads_with_default_values' | 'enable_more_intuitive_component_spacing' | 'enable_multimedia_component_ai_images' | 'enable_new_meeting_bar' | 'enable_original_pdf_link' | 'enable_scale_content' | 'enable_sorting_in_section_picker' | 'enable_sorting_in_tiptap_table' | 'enable_theme_assets' | 'enable_toc_enhancements_to_support_same_section_in_section_list' | 'enable_pia_assistant' | 'enable_pipe_character_multi_search' | 'enable_popup_apps' | 'enable_reorder_search' | 'enable_reorder_scribble_isolation' | 'enable_reorder_component_options_menu' | 'enable_resizable_multimedia_component' | 'enable_responsive_scribble_component' | 'enable_saved_canvases_filters' | 'enable_short_tag_column_in_tables' | 'enable_scribble_component' | 'enable_scribble_content_as_background' | 'enable_search_and_filters_in_multimedia_component' | 'enable_section_context_in_dsr' | 'enable_selectors_dnd' | 'enable_section_selector_edit_section' | 'enable_smart_folders' | 'enable_smart_folders_for_sections' | 'enable_smart_folders_in_section_selector' | 'enable_smart_folders_in_files' | 'enable_sorting_in_sections' | 'enable_suggested_tags' | 'enable_template_folders' | 'enable_theme_options_border_radius' | 'enable_themes' | 'hide_asset_uploader' | 'include_files_content_in_print' | 'interpolate_rep_canvases_on_edit_mode' | 'is_fe_sentry_enabled' | 'is_timeline_component_allowed' | 'launch_in_full_screen_on_present_mode' | 'prefer_online_handlers' | 'restrict_owned_files_from_admins' | 'show_asset_manager_for_multimedia' | 'show_clear_all_annotations_button' | 'show_content_selector_list_view' | 'show_metadata_filters_in_all_canvas_things' | 'show_only_preview_mode_for_html_component' | 'show_popularity_icons' | 'use_core_endpoint_for_analytics' | 'convert_pptx_to_section_with_scribble_pdfjs' | 'use_short_url_for_shared_link' | 'use_zoho_instead_of_ms_wopi' | 'enable_new_section_list' | 'enable_sharebox_apps' | 'enable_sharebox_bulk_filtering' | 'enable_back_to_previous_location_in_canvas' | 'enable_crm_shape_for_external_links' | 'enable_adaptive_popup_apps' | 'enable_file_version_polling' | 'skip_pspdfkit_wait_for_high_res_thumbs' | 'enable_reactive_scribble_component_toolbar' | 'enable_embeddable_full_screen_mode' | 'enable_enhanced_user_management' | 'keep_static_pptx_editable' | 'enable_canvas_pdf_dimensions' | 'enable_editable_pptx_of_canvas' | 'enable_canvas_control_bars_collapse';
1
+ export type LaunchDarklyBooleanFlagKey = 'ai_code_generation_model' | 'ai_text_generation_model' | 'ai_image_generation_model' | 'ai_video_generation_model' | 'allow_ai_prompts_in_canvas_text' | 'allow_bulk_actions_canvases_files' | 'allow_content_grid_autofill' | 'allow_canvas_duplication' | 'allow_canvases_tables_columns_settings' | 'allow_table_column_resizing' | 'allow_creating_canvas_with_no_template' | 'allow_dynamic_data_table_for_scribble_component' | 'allow_html_for_scribble_component' | 'allow_embeddable_for_scribble_component' | 'allow_embeddable_hiding' | 'allow_multimedia_for_scribble_component' | 'allow_note_taking' | 'allow_rep_canvas_metadata_edit' | 'allow_rep_file_distributions' | 'allow_rep_file_rating' | 'allow_rep_file_upload' | 'allow_saving_annotations_in_personal_layer' | 'allow_user_to_edit_font_size_and_color_in_canvas_tokens' | 'are_sections_system_controlled' | 'enable_canvas_core_distributions' | 'enable_file_core_distributions' | 'copy_context_to_canvas' | 'copy_template_metadata_to_canvas' | 'disable_canvas_edit_for_reps' | 'disable_custom_tooltips' | 'disable_file_edit_content' | 'disable_fullscreen_canvas_builder' | 'disable_impact_web_browser_fullscreen' | 'display_section_list_name' | 'disable_download_canvas' | 'enable_ai_generated_thumbnails' | 'enable_analytics' | 'enable_app_developer_role' | 'enable_algolia_search' | 'enable_background_image_theme_options' | 'enable_better_canvas_builder_control_bars_on_zoom' | 'enable_bulk_update_file_attributes' | 'enable_canvas_as_home' | 'enable_canvas_blocks' | 'enable_canvas_node_debugging' | 'enable_canvas_locks' | 'enable_canvas_template_edit_in_impact' | 'enable_canvas_tokens' | 'enable_collaborations' | 'enable_collection_player_data_accessor' | 'enable_content_grid_data_accessor' | 'enable_content_type_change_in_content_selector' | 'enable_cross_tab_instance_reload_for_ld_sync' | 'enable_create_section_from_section_template' | 'enable_custom_display_overrides' | 'enable_default_crm_shape' | 'enable_detailed_date_format' | 'enable_dsr_readonly_annotations' | 'enable_dynamic_data_table_component' | 'enable_custom_data_tables' | 'enable_embedded_video_autoplay' | 'enable_embedded_video' | 'enable_enhanced_canvas_drawer_app' | 'enable_enhanced_indicators' | 'enable_enhanced_section_execution_states' | 'enable_experimental_canvas_builder_dnd' | 'enable_extra_file_data' | 'enable_file_pages_metadata' | 'enable_file_revisions' | 'enable_folder_details_edit' | 'enable_handlebar_template_support' | 'enable_height_in_component_theming' | 'enable_hotspot_visibility' | 'enable_improved_canvas_node_updating' | 'enable_individual_users_in_file_distribution' | 'enable_insearch_in_section_selector' | 'enable_instance_cloner' | 'enable_advanced_cloner' | 'enable_instance_editor_role' | 'enable_instance_navigation_from_management' | 'enable_knock_notifications' | 'enable_maintain_section_theme_control' | 'enable_metadata_in_file_uploads_with_default_values' | 'enable_more_intuitive_component_spacing' | 'enable_multimedia_component_ai_images' | 'enable_new_meeting_bar' | 'enable_original_pdf_link' | 'enable_scale_content' | 'enable_sorting_in_tiptap_table' | 'enable_theme_assets' | 'enable_toc_enhancements_to_support_same_section_in_section_list' | 'enable_pia_assistant' | 'enable_pipe_character_multi_search' | 'enable_popup_apps' | 'enable_reorder_search' | 'enable_reorder_scribble_isolation' | 'enable_reorder_component_options_menu' | 'enable_resizable_multimedia_component' | 'enable_responsive_scribble_component' | 'enable_saved_canvases_filters' | 'enable_short_tag_column_in_tables' | 'enable_scribble_component' | 'enable_scribble_content_as_background' | 'enable_search_and_filters_in_multimedia_component' | 'enable_section_context_in_dsr' | 'enable_selectors_dnd' | 'enable_section_selector_edit_section' | 'enable_smart_folders' | 'enable_smart_folders_for_sections' | 'enable_smart_folders_in_section_selector' | 'enable_smart_folders_in_files' | 'enable_sorting_in_sections' | 'enable_suggested_tags' | 'enable_template_folders' | 'enable_theme_options_border_radius' | 'enable_themes' | 'hide_asset_uploader' | 'include_files_content_in_print' | 'interpolate_rep_canvases_on_edit_mode' | 'is_fe_sentry_enabled' | 'is_timeline_component_allowed' | 'launch_in_full_screen_on_present_mode' | 'prefer_online_handlers' | 'restrict_owned_files_from_admins' | 'show_asset_manager_for_multimedia' | 'show_clear_all_annotations_button' | 'show_content_selector_list_view' | 'show_metadata_filters_in_all_canvas_things' | 'show_only_preview_mode_for_html_component' | 'show_popularity_icons' | 'use_core_endpoint_for_analytics' | 'convert_pptx_to_section_with_scribble_pdfjs' | 'use_short_url_for_shared_link' | 'use_zoho_instead_of_ms_wopi' | 'enable_new_section_list' | 'enable_sharebox_apps' | 'enable_sharebox_bulk_filtering' | 'enable_back_to_previous_location_in_canvas' | 'enable_crm_shape_for_external_links' | 'enable_adaptive_popup_apps' | 'enable_file_version_polling' | 'skip_pspdfkit_wait_for_high_res_thumbs' | 'enable_reactive_scribble_component_toolbar' | 'enable_embeddable_full_screen_mode' | 'enable_enhanced_user_management' | 'keep_static_pptx_editable' | 'enable_canvas_pdf_dimensions' | 'enable_editable_pptx_of_canvas' | 'enable_canvas_control_bars_collapse';
2
2
  export type LaunchDarklyNumberFlagKey = 'canvas_section_selector_page_size' | 'canvas_section_selector_selected_items_with_thumbnail_size';
3
3
  type LaunchDarklyObjectFlags = {
4
4
  canvas_manager_table_columns: CanvasManagerTableColumns;
package/locale/de.json CHANGED
@@ -145,12 +145,9 @@
145
145
  "sortBy": null,
146
146
  "sortOptions": {
147
147
  "modifiedAsc": null,
148
- "modifiedDate": null,
149
148
  "modifiedDesc": null,
150
149
  "nameAsc": null,
151
- "nameDesc": null,
152
- "nameShortAsc": null,
153
- "nameShortDesc": null
150
+ "nameDesc": null
154
151
  },
155
152
  "trash": null
156
153
  },
@@ -815,14 +812,23 @@
815
812
  "stripingStartPosition": null
816
813
  },
817
814
  "dataCharts": {
815
+ "addSeries": null,
818
816
  "addYourChart": null,
819
817
  "animation": null,
818
+ "chartSettings": null,
819
+ "chartSize": null,
820
820
  "chartTitle": null,
821
821
  "chartType": null,
822
+ "chartTypeSwitcherMultiSeriesDisabled": null,
822
823
  "colorScheme": null,
823
824
  "configureArrayObjectFields": null,
824
825
  "dataPoints": null,
826
+ "dataSettings": null,
825
827
  "editDataChartsComponent": null,
828
+ "enableChartTypeSwitcher": null,
829
+ "enableDataEntry": null,
830
+ "enableFullscreenBtn": null,
831
+ "height": null,
826
832
  "labelField": null,
827
833
  "legendPosition": null,
828
834
  "legendPositions": {
@@ -837,6 +843,8 @@
837
843
  "horizontal": null,
838
844
  "vertical": null
839
845
  },
846
+ "percentDisplay": null,
847
+ "percentDisplayHint": null,
840
848
  "pointStyle": null,
841
849
  "pointStyles": {
842
850
  "circle": null,
@@ -849,19 +857,28 @@
849
857
  "preview": null,
850
858
  "removeAll": null,
851
859
  "selectDynamicValue": null,
860
+ "series": null,
861
+ "seriesName": null,
852
862
  "types": {
863
+ "area": null,
853
864
  "bar": null,
865
+ "bubble": null,
854
866
  "doughnut": null,
855
867
  "line": null,
856
868
  "pie": null,
857
869
  "polarArea": null,
858
- "radar": null
870
+ "radar": null,
871
+ "scatter": null
859
872
  },
860
873
  "useCustomColors": null,
861
874
  "useThemeColors": null,
862
875
  "valueField": null,
876
+ "viewModeControls": null,
877
+ "width": null,
863
878
  "xAxisLabel": null,
864
- "yAxisLabel": null
879
+ "xValueField": null,
880
+ "yAxisLabel": null,
881
+ "yValueField": null
865
882
  },
866
883
  "deletedFile": {
867
884
  "clickMessage": null,
package/locale/el.json CHANGED
@@ -145,12 +145,9 @@
145
145
  "sortBy": "Ταξινόμηση",
146
146
  "sortOptions": {
147
147
  "modifiedAsc": "Τροποποίηση (παλιότερα)",
148
- "modifiedDate": "Ημερομηνία τροποποίησης",
149
148
  "modifiedDesc": "Τροποποίηση (νεότερα)",
150
149
  "nameAsc": "Όνομα (Α-Ω)",
151
- "nameDesc": "Όνομα (Ω-Α)",
152
- "nameShortAsc": "Α-Ω",
153
- "nameShortDesc": "Ω-Α"
150
+ "nameDesc": "Όνομα (Ω-Α)"
154
151
  },
155
152
  "trash": "Κάδος ανακύκλωσης"
156
153
  },
@@ -815,14 +812,23 @@
815
812
  "stripingStartPosition": "Θέση έναρξης ριγέ"
816
813
  },
817
814
  "dataCharts": {
815
+ "addSeries": "Προσθήκη σειράς",
818
816
  "addYourChart": "Προσθέστε το γράφημά σας",
819
817
  "animation": "Κίνηση",
818
+ "chartSettings": "Ρυθμίσεις γραφήματος",
819
+ "chartSize": "Μέγεθος γραφήματος",
820
820
  "chartTitle": "Τίτλος Γραφήματος",
821
821
  "chartType": "Τύπος Γραφήματος",
822
+ "chartTypeSwitcherMultiSeriesDisabled": "Δεν μπορεί να ενεργοποιηθεί για γραφήματα πολλαπλών σειρών.",
822
823
  "colorScheme": "Χρωματικό Σχήμα",
823
824
  "configureArrayObjectFields": "Ρύθμιση Πεδίων Πίνακα/Αντικειμένου",
824
825
  "dataPoints": "Σημεία Δεδομένων",
826
+ "dataSettings": "Ρυθμίσεις δεδομένων",
825
827
  "editDataChartsComponent": "Επεξεργασία Γραφήματος",
828
+ "enableChartTypeSwitcher": "Επιτρέψτε αλλαγή τύπου γραφήματος σε λειτουργία προβολής",
829
+ "enableDataEntry": "Επιτρέψτε εισαγωγή δεδομένων από χρήστες σε λειτουργία επεξεργασίας",
830
+ "enableFullscreenBtn": "Εμφάνιση κουμπιού πλήρους οθόνης σε λειτουργία προβολής",
831
+ "height": "Ύψος",
826
832
  "labelField": "Πεδίο Ετικέτας",
827
833
  "legendPosition": "Θέση Υπομνήματος",
828
834
  "legendPositions": {
@@ -837,6 +843,8 @@
837
843
  "horizontal": "Οριζόντια",
838
844
  "vertical": "Κάθετα"
839
845
  },
846
+ "percentDisplay": "Εμφάνιση αριθμών ως ποσοστά",
847
+ "percentDisplayHint": "Οι τιμές μεταξύ 0-1 θα εμφανίζονται ως ποσοστά",
840
848
  "pointStyle": "Στυλ Σημείων",
841
849
  "pointStyles": {
842
850
  "circle": "Κύκλος",
@@ -849,19 +857,28 @@
849
857
  "preview": "Προεπισκόπηση",
850
858
  "removeAll": "Αφαίρεση όλων",
851
859
  "selectDynamicValue": "Επιλέξτε μια δυναμική τιμή",
860
+ "series": "Σειρά",
861
+ "seriesName": "Όνομα σειράς",
852
862
  "types": {
863
+ "area": "Γράφημα περιοχής",
853
864
  "bar": "Ραβδόγραμμα",
865
+ "bubble": "Γράφημα φυσαλίδων",
854
866
  "doughnut": "Διάγραμμα Δαχτυλίδι",
855
867
  "line": "Γραμμικό Γράφημα",
856
868
  "pie": "Κυκλικό Διάγραμμα",
857
869
  "polarArea": "Πολικό Διάγραμμα",
858
- "radar": "Διάγραμμα Ραντάρ"
870
+ "radar": "Διάγραμμα Ραντάρ",
871
+ "scatter": "Γράφημα διασποράς"
859
872
  },
860
873
  "useCustomColors": "Χρήση προσαρμοσμένων χρωμάτων",
861
874
  "useThemeColors": "Χρήση χρωμάτων θέματος",
862
875
  "valueField": "Πεδίο Τιμής",
876
+ "viewModeControls": "Χειριστήρια λειτουργίας προβολής",
877
+ "width": "Πλάτος",
863
878
  "xAxisLabel": "Ετικέτα Άξονα Χ",
864
- "yAxisLabel": "Ετικέτα Άξονα Υ"
879
+ "xValueField": "Πεδίο τιμής X",
880
+ "yAxisLabel": "Ετικέτα Άξονα Υ",
881
+ "yValueField": "Πεδίο τιμής Y"
865
882
  },
866
883
  "deletedFile": {
867
884
  "clickMessage": "Κάντε κλικ εδώ για να προσθέσετε ένα νέο",
package/locale/en.json CHANGED
@@ -145,12 +145,9 @@
145
145
  "sortBy": "Sort by",
146
146
  "sortOptions": {
147
147
  "modifiedAsc": "Modified date (oldest first)",
148
- "modifiedDate": "Modified date",
149
148
  "modifiedDesc": "Modified date (newest first)",
150
149
  "nameAsc": "Name (A-Z)",
151
- "nameDesc": "Name (Z-A)",
152
- "nameShortAsc": "A-Z",
153
- "nameShortDesc": "Z-A"
150
+ "nameDesc": "Name (Z-A)"
154
151
  },
155
152
  "trash": "Trash"
156
153
  },
@@ -815,14 +812,23 @@
815
812
  "stripingStartPosition": "Striping start position"
816
813
  },
817
814
  "dataCharts": {
815
+ "addSeries": "Add Series",
818
816
  "addYourChart": "Add your chart",
819
817
  "animation": "Animation",
818
+ "chartSettings": "Chart Settings",
819
+ "chartSize": "Chart Size",
820
820
  "chartTitle": "Chart Title",
821
821
  "chartType": "Chart Type",
822
+ "chartTypeSwitcherMultiSeriesDisabled": "This can't be enabled for multi-series charts.",
822
823
  "colorScheme": "Color Scheme",
823
824
  "configureArrayObjectFields": "Configure Array/Object Fields",
824
825
  "dataPoints": "Data Points",
826
+ "dataSettings": "Data Settings",
825
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",
826
832
  "labelField": "Label Field",
827
833
  "legendPosition": "Legend Position",
828
834
  "legendPositions": {
@@ -837,6 +843,8 @@
837
843
  "horizontal": "Horizontal",
838
844
  "vertical": "Vertical"
839
845
  },
846
+ "percentDisplay": "Show Numbers as Percentages",
847
+ "percentDisplayHint": "Values between 0-1 will be shown as percentages",
840
848
  "pointStyle": "Point Style",
841
849
  "pointStyles": {
842
850
  "circle": "Circle",
@@ -849,19 +857,28 @@
849
857
  "preview": "Preview",
850
858
  "removeAll": "Remove all",
851
859
  "selectDynamicValue": "Select a dynamic value",
860
+ "series": "Series",
861
+ "seriesName": "Series Name",
852
862
  "types": {
863
+ "area": "Area Chart",
853
864
  "bar": "Bar Chart",
865
+ "bubble": "Bubble Chart",
854
866
  "doughnut": "Doughnut Chart",
855
867
  "line": "Line Chart",
856
868
  "pie": "Pie Chart",
857
869
  "polarArea": "Polar Area Chart",
858
- "radar": "Radar Chart"
870
+ "radar": "Radar Chart",
871
+ "scatter": "Scatter Chart"
859
872
  },
860
873
  "useCustomColors": "Use custom colors",
861
874
  "useThemeColors": "Use theme colors",
862
875
  "valueField": "Value Field",
876
+ "viewModeControls": "View Mode Controls",
877
+ "width": "Width",
863
878
  "xAxisLabel": "X-Axis Label",
864
- "yAxisLabel": "Y-Axis Label"
879
+ "xValueField": "X Value Field",
880
+ "yAxisLabel": "Y-Axis Label",
881
+ "yValueField": "Y Value Field"
865
882
  },
866
883
  "deletedFile": {
867
884
  "clickMessage": "Click here to add a new one",
package/locale/es.json CHANGED
@@ -145,12 +145,9 @@
145
145
  "sortBy": "Ordenar por",
146
146
  "sortOptions": {
147
147
  "modifiedAsc": "Fecha de modificación (asc)",
148
- "modifiedDate": "Fecha de modificación",
149
148
  "modifiedDesc": "Fecha de modificación (desc)",
150
149
  "nameAsc": "Nombre (asc)",
151
- "nameDesc": "Nombre (desc)",
152
- "nameShortAsc": "A-Z",
153
- "nameShortDesc": "Z-A"
150
+ "nameDesc": "Nombre (desc)"
154
151
  },
155
152
  "trash": "Papelera"
156
153
  },
@@ -815,14 +812,23 @@
815
812
  "stripingStartPosition": "Posición de inicio de filas alternadas"
816
813
  },
817
814
  "dataCharts": {
815
+ "addSeries": "Agregar serie",
818
816
  "addYourChart": "Agregar tu gráfico",
819
817
  "animation": "Animación",
818
+ "chartSettings": "Configuración del gráfico",
819
+ "chartSize": "Tamaño del gráfico",
820
820
  "chartTitle": "Título del gráfico",
821
821
  "chartType": "Tipo de gráfico",
822
+ "chartTypeSwitcherMultiSeriesDisabled": "No se puede habilitar para gráficos de múltiples series.",
822
823
  "colorScheme": "Esquema de colores",
823
824
  "configureArrayObjectFields": "Configurar campos de Array/Objeto",
824
825
  "dataPoints": "Puntos de datos",
826
+ "dataSettings": "Configuración de datos",
825
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",
826
832
  "labelField": "Campo de etiqueta",
827
833
  "legendPosition": "Posición de la leyenda",
828
834
  "legendPositions": {
@@ -837,6 +843,8 @@
837
843
  "horizontal": "Horizontal",
838
844
  "vertical": "Vertical"
839
845
  },
846
+ "percentDisplay": "Mostrar números como porcentajes",
847
+ "percentDisplayHint": "Los valores entre 0-1 se mostrarán como porcentajes",
840
848
  "pointStyle": "Estilo de punto",
841
849
  "pointStyles": {
842
850
  "circle": "Círculo",
@@ -849,19 +857,28 @@
849
857
  "preview": "Vista previa",
850
858
  "removeAll": "Eliminar todo",
851
859
  "selectDynamicValue": "Seleccionar un valor dinámico",
860
+ "series": "Serie",
861
+ "seriesName": "Nombre de la serie",
852
862
  "types": {
863
+ "area": "Gráfico de área",
853
864
  "bar": "Gráfico de barras",
865
+ "bubble": "Gráfico de burbujas",
854
866
  "doughnut": "Gráfico de dona",
855
867
  "line": "Gráfico de líneas",
856
868
  "pie": "Gráfico circular",
857
869
  "polarArea": "Gráfico de área polar",
858
- "radar": "Gráfico de radar"
870
+ "radar": "Gráfico de radar",
871
+ "scatter": "Gráfico de dispersión"
859
872
  },
860
873
  "useCustomColors": "Usar colores personalizados",
861
874
  "useThemeColors": "Usar colores del tema",
862
875
  "valueField": "Campo de valor",
876
+ "viewModeControls": "Controles del modo vista",
877
+ "width": "Ancho",
863
878
  "xAxisLabel": "Etiqueta del eje X",
864
- "yAxisLabel": "Etiqueta del eje Y"
879
+ "xValueField": "Campo de valor X",
880
+ "yAxisLabel": "Etiqueta del eje Y",
881
+ "yValueField": "Campo de valor Y"
865
882
  },
866
883
  "deletedFile": {
867
884
  "clickMessage": "Haz clic aquí para agregar uno nuevo",
package/locale/fr.json CHANGED
@@ -145,12 +145,9 @@
145
145
  "sortBy": "Trier par",
146
146
  "sortOptions": {
147
147
  "modifiedAsc": "Date de modification (asc)",
148
- "modifiedDate": "Date de modification",
149
148
  "modifiedDesc": "Date de modification (desc)",
150
149
  "nameAsc": "Nom (asc)",
151
- "nameDesc": "Nom (desc)",
152
- "nameShortAsc": "A-Z",
153
- "nameShortDesc": "Z-A"
150
+ "nameDesc": "Nom (desc)"
154
151
  },
155
152
  "trash": "Corbeille"
156
153
  },
@@ -815,14 +812,23 @@
815
812
  "stripingStartPosition": "Position de départ des lignes alternées"
816
813
  },
817
814
  "dataCharts": {
815
+ "addSeries": "Ajouter une série",
818
816
  "addYourChart": "Ajouter votre graphique",
819
817
  "animation": "Animation",
818
+ "chartSettings": "Paramètres du graphique",
819
+ "chartSize": "Taille du graphique",
820
820
  "chartTitle": "Titre du graphique",
821
821
  "chartType": "Type de graphique",
822
- "colorScheme": "Color Scheme",
822
+ "chartTypeSwitcherMultiSeriesDisabled": "Ne peut pas être activé pour les graphiques multi-séries.",
823
+ "colorScheme": "Schéma de couleurs",
823
824
  "configureArrayObjectFields": "Configurer les champs Array/Object",
824
825
  "dataPoints": "Points de données",
826
+ "dataSettings": "Paramètres des données",
825
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",
826
832
  "labelField": "Champ de label",
827
833
  "legendPosition": "Position de la légende",
828
834
  "legendPositions": {
@@ -837,6 +843,8 @@
837
843
  "horizontal": "Horizontal",
838
844
  "vertical": "Vertical"
839
845
  },
846
+ "percentDisplay": "Afficher les nombres en pourcentages",
847
+ "percentDisplayHint": "Les valeurs entre 0 et 1 seront affichées en pourcentages",
840
848
  "pointStyle": "Style de point",
841
849
  "pointStyles": {
842
850
  "circle": "Cercle",
@@ -849,19 +857,28 @@
849
857
  "preview": "Aperçu",
850
858
  "removeAll": "Supprimer tous",
851
859
  "selectDynamicValue": "Sélectionner une valeur dynamique",
860
+ "series": "Série",
861
+ "seriesName": "Nom de la série",
852
862
  "types": {
863
+ "area": "Graphique en aires",
853
864
  "bar": "Graphique en barres",
865
+ "bubble": "Graphique en bulles",
854
866
  "doughnut": "Graphique en anneau",
855
867
  "line": "Graphique en ligne",
856
868
  "pie": "Graphique en secteurs",
857
869
  "polarArea": "Graphique en secteurs polaires",
858
- "radar": "Graphique en radar"
870
+ "radar": "Graphique en radar",
871
+ "scatter": "Graphique en nuage de points"
859
872
  },
860
873
  "useCustomColors": "Utiliser les couleurs personnalisées",
861
874
  "useThemeColors": "Utiliser les couleurs du thème",
862
875
  "valueField": "Champ de valeur",
876
+ "viewModeControls": "Contrôles du mode visualisation",
877
+ "width": "Largeur",
863
878
  "xAxisLabel": "Label de l'axe X",
864
- "yAxisLabel": "Label de l'axe Y"
879
+ "xValueField": "Champ de valeur X",
880
+ "yAxisLabel": "Label de l'axe Y",
881
+ "yValueField": "Champ de valeur Y"
865
882
  },
866
883
  "deletedFile": {
867
884
  "clickMessage": "Cliquer ici pour ajouter un nouveau",