@univerjs-pro/chart-ui 1.0.0-alpha.7 → 1.0.0-beta.0
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/lib/cjs/index.js +1 -1
- package/lib/cjs/locale/ar-SA.js +1 -1
- package/lib/cjs/locale/ca-ES.js +1 -1
- package/lib/cjs/locale/de-DE.js +1 -1
- package/lib/cjs/locale/en-US.js +1 -1
- package/lib/cjs/locale/es-ES.js +1 -1
- package/lib/cjs/locale/fa-IR.js +1 -1
- package/lib/cjs/locale/fr-FR.js +1 -1
- package/lib/cjs/locale/id-ID.js +1 -1
- package/lib/cjs/locale/it-IT.js +1 -1
- package/lib/cjs/locale/ja-JP.js +1 -1
- package/lib/cjs/locale/ko-KR.js +1 -1
- package/lib/cjs/locale/pl-PL.js +1 -1
- package/lib/cjs/locale/pt-BR.js +1 -1
- package/lib/cjs/locale/ru-RU.js +1 -1
- package/lib/cjs/locale/sk-SK.js +1 -1
- package/lib/cjs/locale/vi-VN.js +1 -1
- package/lib/cjs/locale/zh-CN.js +1 -1
- package/lib/cjs/locale/zh-HK.js +1 -1
- package/lib/cjs/locale/zh-TW.js +1 -1
- package/lib/es/index.js +1 -1
- package/lib/es/locale/ar-SA.js +1 -1
- package/lib/es/locale/ca-ES.js +1 -1
- package/lib/es/locale/de-DE.js +1 -1
- package/lib/es/locale/en-US.js +1 -1
- package/lib/es/locale/es-ES.js +1 -1
- package/lib/es/locale/fa-IR.js +1 -1
- package/lib/es/locale/fr-FR.js +1 -1
- package/lib/es/locale/id-ID.js +1 -1
- package/lib/es/locale/it-IT.js +1 -1
- package/lib/es/locale/ja-JP.js +1 -1
- package/lib/es/locale/ko-KR.js +1 -1
- package/lib/es/locale/pl-PL.js +1 -1
- package/lib/es/locale/pt-BR.js +1 -1
- package/lib/es/locale/ru-RU.js +1 -1
- package/lib/es/locale/sk-SK.js +1 -1
- package/lib/es/locale/vi-VN.js +1 -1
- package/lib/es/locale/zh-CN.js +1 -1
- package/lib/es/locale/zh-HK.js +1 -1
- package/lib/es/locale/zh-TW.js +1 -1
- package/lib/index.css +323 -6
- package/lib/index.js +1 -1
- package/lib/locale/ar-SA.js +1 -1
- package/lib/locale/ca-ES.js +1 -1
- package/lib/locale/de-DE.js +1 -1
- package/lib/locale/en-US.js +1 -1
- package/lib/locale/es-ES.js +1 -1
- package/lib/locale/fa-IR.js +1 -1
- package/lib/locale/fr-FR.js +1 -1
- package/lib/locale/id-ID.js +1 -1
- package/lib/locale/it-IT.js +1 -1
- package/lib/locale/ja-JP.js +1 -1
- package/lib/locale/ko-KR.js +1 -1
- package/lib/locale/pl-PL.js +1 -1
- package/lib/locale/pt-BR.js +1 -1
- package/lib/locale/ru-RU.js +1 -1
- package/lib/locale/sk-SK.js +1 -1
- package/lib/locale/vi-VN.js +1 -1
- package/lib/locale/zh-CN.js +1 -1
- package/lib/locale/zh-HK.js +1 -1
- package/lib/locale/zh-TW.js +1 -1
- package/lib/types/components/ChartEditPanel.d.ts +49 -0
- package/lib/types/components/ChartInlineTableEditor.d.ts +5 -0
- package/lib/types/components/ChartSemanticDataFields.d.ts +28 -0
- package/lib/types/components/ChartTypeOptions.d.ts +148 -2
- package/lib/types/components/FontFormatBar.d.ts +19 -1
- package/lib/types/components/chart-inline-starter-data.d.ts +23 -0
- package/lib/types/components/use-chart-panel-input-focus.d.ts +4 -0
- package/lib/types/controllers/components.controller.d.ts +4 -2
- package/lib/types/editor/ChartEditorProvider.d.ts +11 -0
- package/lib/types/editor/atoms/common/ChartFontAtom.d.ts +28 -0
- package/lib/types/editor/atoms/common/ChartNumberFormatAtom.d.ts +9 -0
- package/lib/types/editor/atoms/common/chart-number-format.d.ts +28 -0
- package/lib/types/editor/components/ChartCheckboxField.d.ts +11 -0
- package/lib/types/editor/components/ChartColorField.d.ts +13 -0
- package/lib/types/editor/components/ChartField.d.ts +15 -0
- package/lib/types/editor/components/ChartFieldGroup.d.ts +9 -0
- package/lib/types/editor/components/ChartFieldGroupTitle.d.ts +6 -0
- package/lib/types/editor/components/ChartFieldRow.d.ts +5 -0
- package/lib/types/editor/components/ChartFontField.d.ts +28 -0
- package/lib/types/editor/components/ChartImageSelectField.d.ts +13 -0
- package/lib/types/editor/components/ChartListField.d.ts +18 -0
- package/lib/types/editor/components/ChartMultiSelectField.d.ts +25 -0
- package/lib/types/editor/components/ChartNumberField.d.ts +16 -0
- package/lib/types/editor/components/ChartSelectField.d.ts +25 -0
- package/lib/types/editor/components/ChartTextField.d.ts +14 -0
- package/lib/types/editor/hooks/use-chart-config-state.d.ts +3 -0
- package/lib/types/editor/hooks/use-chart-data-mapping-fields.d.ts +5 -0
- package/lib/types/editor/hooks/use-chart-editor-model.d.ts +3 -0
- package/lib/types/editor/hooks/use-chart-runtime-context.d.ts +13 -0
- package/lib/types/editor/routing/chart-edit-panel-route.d.ts +21 -0
- package/lib/types/editor/sections/ChartAxisSections.d.ts +63 -0
- package/lib/types/editor/sections/ChartIndicatorLineSection.d.ts +20 -0
- package/lib/types/editor/sections/ChartLegendSection.d.ts +27 -0
- package/lib/types/editor/sections/ChartLineAndAreaSection.d.ts +11 -0
- package/lib/types/editor/sections/ChartParetoSeriesSection.d.ts +26 -0
- package/lib/types/editor/sections/ChartSeriesSection.d.ts +60 -0
- package/lib/types/editor/sections/ChartSetupSections.d.ts +21 -0
- package/lib/types/editor/sections/ChartStyleSection.d.ts +15 -0
- package/lib/types/editor/sections/ChartTitleSections.d.ts +50 -0
- package/lib/types/editor/sections/ChartTrendlineSection.d.ts +18 -0
- package/lib/types/editor/sections/chart-capabilities.d.ts +10 -0
- package/lib/types/editor/sections/chart-style-options.d.ts +86 -0
- package/lib/types/editor/sections/specific-section/ChartCandlestickStyleSection.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/ChartFunnelStyleSection.d.ts +10 -0
- package/lib/types/editor/sections/specific-section/ChartHeatmapStyleSection.d.ts +10 -0
- package/lib/types/editor/sections/specific-section/ChartHistogramStyleSection.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/ChartPieStyleSection.d.ts +21 -0
- package/lib/types/editor/sections/specific-section/ChartRadarStyleSection.d.ts +9 -0
- package/lib/types/editor/sections/specific-section/ChartRelationStyleSection.d.ts +17 -0
- package/lib/types/editor/sections/specific-section/ChartTreemapStyleSection.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/ChartTypeSpecificSections.d.ts +9 -0
- package/lib/types/editor/sections/specific-section/ChartWaterfallStyleSection.d.ts +26 -0
- package/lib/types/editor/sections/specific-section/ChartWordCloudStyleSection.d.ts +21 -0
- package/lib/types/editor/sections/specific-section/ChordDataMappingAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/ChordLabelAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/ChordLayoutAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/ChordRibbonAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/GaugeDataMappingAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/GaugeModeAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/GaugePointerAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/GaugeProgressAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/GaugeRangesAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/GaugeScaleAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/SunburstCenterLabelAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/SunburstDataMappingAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/SunburstLabelAtom.d.ts +1 -0
- package/lib/types/editor/sections/specific-section/chord-field-options.d.ts +2 -0
- package/lib/types/editor/sections/specific-section/chord-style.d.ts +16 -0
- package/lib/types/editor/sections/specific-section/gauge-style.d.ts +10 -0
- package/lib/types/editor/sections/specific-section/sunburst-label.d.ts +8 -0
- package/lib/types/editor/utils/chart-runtime-axis.d.ts +3 -0
- package/lib/types/float-menu/ChartElementFloatMenu.d.ts +2 -2
- package/lib/types/float-menu/chart-element-selection.d.ts +7 -0
- package/lib/types/float-menu/constants.d.ts +72 -77
- package/lib/types/float-menu/create-chart-element-float-menu-adapter.d.ts +10 -0
- package/lib/types/float-menu/pie-mark-patch.d.ts +8 -0
- package/lib/types/float-menu/types.d.ts +28 -9
- package/lib/types/index.d.ts +68 -3
- package/lib/types/locale/en-US.d.ts +481 -58
- package/lib/types/services/chart-host-adapter.d.ts +12 -0
- package/lib/types/services/chart-snapshot-queue.d.ts +58 -0
- package/lib/types/services/chart-ui.service.d.ts +19 -0
- package/lib/types/services/chart-view-state-projector.d.ts +15 -0
- package/lib/types/services/chart-view-state-registry.d.ts +11 -0
- package/lib/types/services/chart-view-state.d.ts +118 -0
- package/lib/types/services/inline-chart-creation.d.ts +42 -0
- package/lib/types/services/register-chart-config-states.d.ts +3 -0
- package/lib/types/services/register-chart-view-states/chart-specific.d.ts +4 -0
- package/lib/types/services/register-chart-view-states/semantic.d.ts +4 -0
- package/lib/umd/index.js +1 -1
- package/lib/umd/locale/ar-SA.js +1 -1
- package/lib/umd/locale/ca-ES.js +1 -1
- package/lib/umd/locale/de-DE.js +1 -1
- package/lib/umd/locale/en-US.js +1 -1
- package/lib/umd/locale/es-ES.js +1 -1
- package/lib/umd/locale/fa-IR.js +1 -1
- package/lib/umd/locale/fr-FR.js +1 -1
- package/lib/umd/locale/id-ID.js +1 -1
- package/lib/umd/locale/it-IT.js +1 -1
- package/lib/umd/locale/ja-JP.js +1 -1
- package/lib/umd/locale/ko-KR.js +1 -1
- package/lib/umd/locale/pl-PL.js +1 -1
- package/lib/umd/locale/pt-BR.js +1 -1
- package/lib/umd/locale/ru-RU.js +1 -1
- package/lib/umd/locale/sk-SK.js +1 -1
- package/lib/umd/locale/vi-VN.js +1 -1
- package/lib/umd/locale/zh-CN.js +1 -1
- package/lib/umd/locale/zh-HK.js +1 -1
- package/lib/umd/locale/zh-TW.js +1 -1
- package/package.json +11 -8
- package/lib/types/components/ChartEditPanelScaffold.d.ts +0 -16
- package/lib/types/components/ChartEditorFields.d.ts +0 -65
- package/lib/types/components/ChartPresentationFields.d.ts +0 -8
- package/lib/types/components/index.d.ts +0 -16
- package/lib/types/float-menu/index.d.ts +0 -5
package/lib/cjs/locale/fr-FR.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const _0x5a4a1f=_0x173f;(function(_0x432a67,_0x339ca9){const _0x43e00d=_0x173f,_0x19ab84=_0x432a67();while(!![]){try{const _0x3c38fa=-parseInt(_0x43e00d(0xb3))/0x1+-parseInt(_0x43e00d(0xab))/0x2+-parseInt(_0x43e00d(0xc4))/0x3+parseInt(_0x43e00d(0xa0))/0x4+-parseInt(_0x43e00d(0x9a))/0x5*(parseInt(_0x43e00d(0x98))/0x6)+parseInt(_0x43e00d(0xb6))/0x7+parseInt(_0x43e00d(0xc0))/0x8*(parseInt(_0x43e00d(0xb9))/0x9);if(_0x3c38fa===_0x339ca9)break;else _0x19ab84['push'](_0x19ab84['shift']());}catch(_0xf6fd61){_0x19ab84['push'](_0x19ab84['shift']());}}}(_0x6daa,0x5f0de));function _0x173f(_0x20ffa1,_0x33428b){_0x20ffa1=_0x20ffa1-0x91;const _0x6daa8e=_0x6daa();let _0x173f9c=_0x6daa8e[_0x20ffa1];return _0x173f9c;}const e={'chart-ui':{'common':{'default':_0x5a4a1f(0xa6),'reset':_0x5a4a1f(0x9e)},'presentation':{'wrapLegend':_0x5a4a1f(0xc1)},'inlineTable':{'pasteHint':_0x5a4a1f(0xa5),'addRow':_0x5a4a1f(0x93),'addColumn':_0x5a4a1f(0x97)},'floatMenu':{'menuTitle':{'chart':_0x5a4a1f(0xa1),'chartTitle':_0x5a4a1f(0xae),'subtitle':_0x5a4a1f(0x9f),'axisTitle':_0x5a4a1f(0x92),'legend':_0x5a4a1f(0xa7),'horizontalAxis':_0x5a4a1f(0xb5),'verticalAxis':_0x5a4a1f(0xc6),'rightVerticalAxis':_0x5a4a1f(0x9b),'gridline':'Quadrillage','tick':_0x5a4a1f(0xac),'mark':_0x5a4a1f(0x94),'series':_0x5a4a1f(0xc2),'dataPoint':_0x5a4a1f(0xbe),'dataLabel':_0x5a4a1f(0xbb)},'field':{'title':_0x5a4a1f(0xc7),'subtitle':_0x5a4a1f(0x9f),'position':_0x5a4a1f(0xc3),'size':_0x5a4a1f(0xb8),'align':'Aligner','mode':_0x5a4a1f(0xc5),'map':'Carte','rotate':'Faire\x20pivoter','min':_0x5a4a1f(0xc8),'max':_0x5a4a1f(0xb4),'color':_0x5a4a1f(0xaf),'borderColor':'Couleur\x20de\x20bordure','opacity':_0x5a4a1f(0x9c),'labelPosition':_0x5a4a1f(0xaa),'labelText':'Texte\x20des\x20étiquettes','titleText':_0x5a4a1f(0xba)},'action':{'more':_0x5a4a1f(0xb2),'bold':'Gras','italic':'Italique'},'control':{'labels':_0x5a4a1f(0xa8),'line':'Ligne','reverse':_0x5a4a1f(0xb0),'date':_0x5a4a1f(0xbd)},'option':{'textAlign':{'left':_0x5a4a1f(0x95),'center':_0x5a4a1f(0x9d),'right':_0x5a4a1f(0xb1)},'position':{'top':_0x5a4a1f(0xb7),'bottom':_0x5a4a1f(0xa3),'left':'Gauche','right':_0x5a4a1f(0xb1),'hide':'Masquer','inside':_0x5a4a1f(0xbc),'outside':'À\x20l’extérieur'},'labelText':{'category':_0x5a4a1f(0xa9),'value':_0x5a4a1f(0xa4),'percentage':_0x5a4a1f(0x99)},'axisAlign':{'start':'Début','center':_0x5a4a1f(0x9d),'end':'Fin'},'legendSelectMode':{'single':_0x5a4a1f(0xc9),'multiple':_0x5a4a1f(0x96),'close':_0x5a4a1f(0x91)},'visualMapType':{'continuous':_0x5a4a1f(0xbf),'piecewise':_0x5a4a1f(0xa2)}}}}};module[_0x5a4a1f(0xad)]=e;function _0x6daa(){const _0x1fe90b=['Plus','272945mwUFPA','Max.','Axe\x20horizontal','2394602mmttyg','Haut','Taille','6183FaaqPx','Texte\x20du\x20titre','Étiquette\x20de\x20données','À\x20l’intérieur','Jour','Point\x20de\x20données','Continu','20024GiMUHP','Renvoyer\x20la\x20légende','Séries','Position','1677417ZdFiQd','Mode','Axe\x20vertical','Titre','Min.','Simple','Fermer','Titre\x20de\x20l’axe','Ajouter\x20une\x20ligne','Marque','Gauche','Multiple','Ajouter\x20une\x20colonne','72762NkYZjP','Pourcentage','305GvnJUA','Axe\x20vertical\x20droit','Opacité','Centre','Réinitialiser','Sous-titre','2492892QhNiFK','Graphique','Morceaux','Bas','Valeur','Copiez\x20et\x20collez\x20les\x20données\x20ici','Par\x20défaut','Légende','Étiquettes','Catégorie','Position\x20des\x20étiquettes','1447394PYuCEd','Graduation','exports','Titre\x20du\x20graphique','Couleur','Inverser','Droite'];_0x6daa=function(){return _0x1fe90b;};return _0x6daa();}
|
|
1
|
+
const _0x1bfc13=_0x2969;function _0x2969(_0x1440e1,_0x5833a9){_0x1440e1=_0x1440e1-0x145;const _0x2b91bc=_0x2b91();let _0x29692c=_0x2b91bc[_0x1440e1];return _0x29692c;}(function(_0x316bd8,_0x13ea62){const _0x4511a8=_0x2969,_0x5a589d=_0x316bd8();while(!![]){try{const _0x5bdc37=parseInt(_0x4511a8(0x17f))/0x1*(parseInt(_0x4511a8(0x275))/0x2)+parseInt(_0x4511a8(0x16b))/0x3*(-parseInt(_0x4511a8(0x16e))/0x4)+parseInt(_0x4511a8(0x19a))/0x5+-parseInt(_0x4511a8(0x157))/0x6*(-parseInt(_0x4511a8(0x251))/0x7)+-parseInt(_0x4511a8(0x1ce))/0x8*(-parseInt(_0x4511a8(0x1e4))/0x9)+parseInt(_0x4511a8(0x1f2))/0xa*(parseInt(_0x4511a8(0x24d))/0xb)+-parseInt(_0x4511a8(0x260))/0xc*(parseInt(_0x4511a8(0x26e))/0xd);if(_0x5bdc37===_0x13ea62)break;else _0x5a589d['push'](_0x5a589d['shift']());}catch(_0xc69f80){_0x5a589d['push'](_0x5a589d['shift']());}}}(_0x2b91,0x32e2d));const e={'chart-ui':{'editor':{'defaultColor':_0x1bfc13(0x1f9),'fontSize':_0x1bfc13(0x1eb)},'setup':{'stack':_0x1bfc13(0x26a),'percentStacked':_0x1bfc13(0x1e7)},'chartTypes':{'line':_0x1bfc13(0x228),'column':'Graphique\x20en\x20colonnes','columnStacked':_0x1bfc13(0x233),'columnPercentStacked':_0x1bfc13(0x1ec),'bar':'Graphique\x20en\x20barres','barStacked':'Graphique\x20en\x20barres\x20empilées','barPercentStacked':_0x1bfc13(0x1e6),'pie':_0x1bfc13(0x1de),'donut':'Graphique\x20en\x20beignet','pieOfPie':_0x1bfc13(0x175),'barOfPie':'Graphique\x20barres\x20de\x20secteur','area':'Graphique\x20en\x20aires','areaStacked':_0x1bfc13(0x1ab),'areaPercentStacked':_0x1bfc13(0x21c),'radar':'Graphique\x20radar','scatter':_0x1bfc13(0x1a7),'combination':_0x1bfc13(0x1fc),'wordCloud':'Graphique\x20en\x20nuage\x20de\x20mots','funnel':_0x1bfc13(0x267),'bubble':_0x1bfc13(0x23a),'relation':_0x1bfc13(0x209),'waterfall':'Graphique\x20en\x20cascade','pareto':_0x1bfc13(0x246),'sankey':'Graphique\x20de\x20Sankey','heatmap':_0x1bfc13(0x1ed),'boxplot':_0x1bfc13(0x1d8),'candlestick':'Graphique\x20en\x20chandeliers','histogram':'Histogramme','treemap':'Carte\x20proportionnelle','sunburst':_0x1bfc13(0x1c5),'gauge':'Graphique\x20de\x20jauge','chord':_0x1bfc13(0x1f0)},'section':{'waterfall':_0x1bfc13(0x165),'paretoBar':'Série\x20de\x20Diagramme\x20en\x20Barres','paretoLine':'Série\x20du\x20Pourcentage\x20Cumulé','pie':_0x1bfc13(0x1de),'wordCloud':_0x1bfc13(0x23c),'radar':'Graphique\x20radar','funnel':_0x1bfc13(0x267),'relation':_0x1bfc13(0x209),'lineAndArea':_0x1bfc13(0x14b),'gridlinesAndTicks':_0x1bfc13(0x249),'indicatorLine':_0x1bfc13(0x186),'candlestick':_0x1bfc13(0x1d1),'histogram':_0x1bfc13(0x281),'treemap':_0x1bfc13(0x15d),'sunburst':_0x1bfc13(0x172),'gauge':_0x1bfc13(0x270),'chord':_0x1bfc13(0x1bd)},'presentation':{'backgroundColor':_0x1bfc13(0x290),'theme':_0x1bfc13(0x1d7),'gradientFill':'Remplissage\x20dégradé','bodyFontSize':_0x1bfc13(0x20b),'bodyFontColor':'Couleur\x20de\x20la\x20police\x20du\x20corps','titleType':_0x1bfc13(0x229),'horizontalAxisTitle':_0x1bfc13(0x262),'verticalAxisTitle':_0x1bfc13(0x1e9),'rightVerticalAxisTitle':_0x1bfc13(0x1bc),'wrap':_0x1bfc13(0x26f),'selectMode':_0x1bfc13(0x191),'visualMapType':'Carte\x20visuelle','align':_0x1bfc13(0x212)},'numberFormat':{'source':_0x1bfc13(0x1c4),'number':'Numéro','scientific':_0x1bfc13(0x1af),'custom':_0x1bfc13(0x14a),'preview':_0x1bfc13(0x183),'generalType':_0x1bfc13(0x15a),'accountingType':_0x1bfc13(0x25c),'thousandsType':_0x1bfc13(0x278),'formatTypes':_0x1bfc13(0x155),'generalDesc':_0x1bfc13(0x1b6),'accountingDesc':_0x1bfc13(0x21e),'currencyDesc':_0x1bfc13(0x22a),'dateDesc':_0x1bfc13(0x241),'thousandsDesc':_0x1bfc13(0x1e3),'decimalPlaces':'Décimales','currencyTypes':'Types\x20de\x20devises','negativeNumberTypes':_0x1bfc13(0x230),'dateTypes':_0x1bfc13(0x1ff),'setFormat':'Définir\x20le\x20format\x20de\x20l’étiquette'},'series':{'rightAxis':_0x1bfc13(0x198),'allSeries':'Toutes\x20les\x20séries','aggregate':_0x1bfc13(0x289),'borderOpacity':_0x1bfc13(0x27f),'solid':_0x1bfc13(0x150),'pointShape':_0x1bfc13(0x18f),'pointSize':_0x1bfc13(0x1c0),'pointColor':_0x1bfc13(0x148),'removeDataPoint':_0x1bfc13(0x1ca),'square':_0x1bfc13(0x272),'rect':_0x1bfc13(0x1cc),'roundRect':'Rectangle\x20arrondi','pin':_0x1bfc13(0x187),'emptyCircle':_0x1bfc13(0x161),'emptySquare':_0x1bfc13(0x25d),'emptyTriangle':_0x1bfc13(0x20d),'emptyDiamond':_0x1bfc13(0x255),'emptyRect':_0x1bfc13(0x1a3),'emptyRoundRect':'Rectangle\x20arrondi\x20vide','emptyPin':_0x1bfc13(0x244),'emptyArrow':_0x1bfc13(0x170)},'lineAndArea':{'lineStyle':_0x1bfc13(0x19f),'line':_0x1bfc13(0x234),'smooth':_0x1bfc13(0x23b),'step':'Étape','invalidValues':'Valeurs\x20invalides','breakLine':_0x1bfc13(0x215),'connect':'Connecter\x20des\x20points\x20de\x20données','zero':'Traiter\x20comme\x20zéro'},'axis':{'useDateAxis':_0x1bfc13(0x1dc),'target':_0x1bfc13(0x22f),'lineColor':_0x1bfc13(0x1cd),'lineWidth':_0x1bfc13(0x194),'labelRotation':_0x1bfc13(0x264),'reverse':_0x1bfc13(0x257),'gridlineVisible':_0x1bfc13(0x206),'gridlineColor':_0x1bfc13(0x1b8),'gridlineWidth':_0x1bfc13(0x28b),'tickVisible':_0x1bfc13(0x25a),'tickLength':_0x1bfc13(0x214),'tickWidth':_0x1bfc13(0x1a1),'tickColor':_0x1bfc13(0x285),'tickPosition':'Position\x20de\x20la\x20coche'},'indicator':{'lineColor':'Couleur\x20de\x20la\x20ligne\x20indicatrice','lineType':_0x1bfc13(0x280),'labelBackground':_0x1bfc13(0x218),'labelText':_0x1bfc13(0x14d)},'trendline':{'add':_0x1bfc13(0x1e0),'type':'Tapez','linear':_0x1bfc13(0x21f),'exponential':_0x1bfc13(0x188),'logarithmic':_0x1bfc13(0x1d9),'polynomial':'Polynôme','power':'Puissance','movingAverage':'Moyenne\x20mobile','showFormula':_0x1bfc13(0x284),'showR2':_0x1bfc13(0x179),'order':_0x1bfc13(0x253),'period':'Période','formulaColor':'Couleur\x20de\x20la\x20formule','r2Color':_0x1bfc13(0x1da)},'pareto':{'includeZeroValues':_0x1bfc13(0x17c)},'plotArea':{'label':'Plot\x20area','manual':_0x1bfc13(0x1f6),'left':_0x1bfc13(0x27a),'top':_0x1bfc13(0x19c),'width':'Width\x20(%)','height':_0x1bfc13(0x200)},'bar':{'layout':_0x1bfc13(0x248),'gapWidth':_0x1bfc13(0x22c),'overlap':'Series\x20overlap\x20(%)'},'pie':{'mode':_0x1bfc13(0x1db),'modeNormal':_0x1bfc13(0x160),'modePieOfPie':_0x1bfc13(0x1b0),'modeBarOfPie':_0x1bfc13(0x15e),'splitType':'Fractionner\x20par','splitAuto':_0x1bfc13(0x247),'splitPosition':_0x1bfc13(0x22d),'splitCustom':'Personnalisé','customSelectedCount':_0x1bfc13(0x1b1),'customSelectedCountValue':_0x1bfc13(0x20a),'positionCount':_0x1bfc13(0x220),'valueLessThan':_0x1bfc13(0x204),'percentageLessThan':'Pourcentage\x20inférieur\x20à','secondarySize':_0x1bfc13(0x27c),'advancedLayout':_0x1bfc13(0x28f),'connector':_0x1bfc13(0x1fa),'slices':_0x1bfc13(0x1e5),'gapWidth':_0x1bfc13(0x20f),'connectorColor':'Couleur\x20de\x20la\x20ligne\x20de\x20connexion','connectorWidth':_0x1bfc13(0x1c2),'connectorType':_0x1bfc13(0x1fe),'aggregateOther':_0x1bfc13(0x276),'aggregateMembers':'Éléments','valueScale':'Échelle\x20des\x20valeurs','doughnutHole':_0x1bfc13(0x156),'startAngle':_0x1bfc13(0x259),'explosion':_0x1bfc13(0x153),'paddingAngle':'Espacement\x20des\x20tranches','halfPie':_0x1bfc13(0x1fb),'rosePie':_0x1bfc13(0x286),'labelLine':'Ligne\x20d\x27étiquette'},'radar':{'shape':_0x1bfc13(0x202),'polygon':_0x1bfc13(0x18a),'fill':_0x1bfc13(0x208)},'funnel':{'gap':_0x1bfc13(0x21d),'absoluteValues':_0x1bfc13(0x1ee)},'heatmap':{'unit':_0x1bfc13(0x210),'labels':_0x1bfc13(0x217)},'relation':{'nodes':_0x1bfc13(0x19e),'interaction':_0x1bfc13(0x23d),'edgeLength':_0x1bfc13(0x184),'circular':_0x1bfc13(0x18b),'force':'Forcer','nodeShape':'Forme\x20du\x20nœud','valueSize':_0x1bfc13(0x1ad),'rotateLabels':_0x1bfc13(0x1f1),'gravity':_0x1bfc13(0x242),'repulsion':_0x1bfc13(0x20e)},'wordCloud':{'maskImage':_0x1bfc13(0x22e),'repeat':_0x1bfc13(0x1f4),'cloud':'Nuage','rect':_0x1bfc13(0x178),'cardioid':_0x1bfc13(0x287),'heart':_0x1bfc13(0x26b),'triangle-forward':'Triangle\x20avant','pentagon':_0x1bfc13(0x237),'star':'Étoile'},'waterfall':{'styleTarget':_0x1bfc13(0x288),'positive':_0x1bfc13(0x225),'negative':_0x1bfc13(0x18d),'stackType':_0x1bfc13(0x1df),'arrangement':_0x1bfc13(0x173),'subtotal':'Sous-total','includeSubtotal':_0x1bfc13(0x1b3),'connector':_0x1bfc13(0x24f)},'candlestick':{'candle':_0x1bfc13(0x17b),'body':'Corps','wick':_0x1bfc13(0x16a),'state':_0x1bfc13(0x14f),'open':_0x1bfc13(0x1dd),'high':_0x1bfc13(0x25e),'low':_0x1bfc13(0x245),'close':_0x1bfc13(0x1e1),'rising':'En\x20hausse','falling':_0x1bfc13(0x24a),'doji':_0x1bfc13(0x1f7),'bodyColor':_0x1bfc13(0x18c),'fillOpacity':_0x1bfc13(0x279),'wickColor':_0x1bfc13(0x277),'wickWidth':_0x1bfc13(0x211),'wickOpacity':_0x1bfc13(0x269),'candleWidth':_0x1bfc13(0x226),'hollow':_0x1bfc13(0x1b5),'columnsError':'Les\x20données\x20du\x20graphique\x20en\x20chandeliers\x20nécessitent\x20les\x20colonnes\x20Catégorie,\x20Ouverture,\x20Plus\x20haut,\x20Plus\x20bas\x20et\x20Clôture.','series':_0x1bfc13(0x1b7)},'histogram':{'binGap':_0x1bfc13(0x177),'binningMode':_0x1bfc13(0x1a6),'count':'Compter','width':_0x1bfc13(0x17e),'binCount':_0x1bfc13(0x271),'binWidth':_0x1bfc13(0x151),'underflow':'Seuil\x20de\x20débordement','overflow':_0x1bfc13(0x192),'frequency':_0x1bfc13(0x283)},'treemap':{'parentLabelLayout':'Disposition\x20de\x20l\x27étiquette\x20parent','banner':_0x1bfc13(0x27e),'overlapping':_0x1bfc13(0x166),'leafLabel':_0x1bfc13(0x1cb),'hierarchy':_0x1bfc13(0x197),'diagnostic':_0x1bfc13(0x1d4)},'sunburst':{'hierarchy':_0x1bfc13(0x1c3),'addHierarchy':'Ajouter\x20une\x20hiérarchie','moveUp':_0x1bfc13(0x169),'moveDown':_0x1bfc13(0x1d3),'removeHierarchy':_0x1bfc13(0x190),'centerLabel':'Total\x20central','labelFormat':'Style\x20d\x27étiquette','diagnostic':_0x1bfc13(0x1bf)},'gauge':{'scale':_0x1bfc13(0x1b9),'majorDivisions':_0x1bfc13(0x1d5),'minorDivisions':_0x1bfc13(0x181),'angles':_0x1bfc13(0x266),'endAngle':'Angle\x20de\x20fin','ranges':_0x1bfc13(0x1ea),'rangeFrom':'De','rangeTo':'À','addRange':'Ajouter\x20une\x20plage','removeRange':_0x1bfc13(0x1bb),'axisTick':_0x1bfc13(0x1a0),'splitLine':'Lignes\x20divisées','pointer':_0x1bfc13(0x240),'anchor':'Ancre','progress':_0x1bfc13(0x167),'detail':_0x1bfc13(0x20c),'pointerNeedle':_0x1bfc13(0x149),'pointerSlim':_0x1bfc13(0x236),'template':_0x1bfc13(0x168),'modern':_0x1bfc13(0x17d),'classic':'Classique','minimal':'Minime','advanced':_0x1bfc13(0x19d),'customized':_0x1bfc13(0x26d),'axisLabelNumberFormat':_0x1bfc13(0x171),'detailNumberFormat':_0x1bfc13(0x238),'emptyDiagnostic':_0x1bfc13(0x193),'mappingDiagnostic':_0x1bfc13(0x189),'configDiagnostic':'La\x20configuration\x20du\x20graphique\x20de\x20jauge\x20n’est\x20pas\x20valide.\x20Vérifiez\x20l’échelle,\x20les\x20plages,\x20les\x20proportions\x20et\x20les\x20tailles.'},'chord':{'source':'Source','target':_0x1bfc13(0x1e8),'count':_0x1bfc13(0x239),'node':_0x1bfc13(0x1c9),'ribbon':_0x1bfc13(0x273),'clockwise':_0x1bfc13(0x282),'padAngle':_0x1bfc13(0x250),'minAngle':_0x1bfc13(0x16c),'innerRadius':_0x1bfc13(0x1d0),'outerRadius':'Rayon\x20extérieur','invalidRadii':_0x1bfc13(0x163),'rotation':_0x1bfc13(0x1d6),'distance':'Distance','width':_0x1bfc13(0x17e),'focus':'Concentrez-vous','solid':_0x1bfc13(0x159),'gradient':_0x1bfc13(0x158),'adjacency':_0x1bfc13(0x203),'self':_0x1bfc13(0x22b),'emptyDiagnostic':_0x1bfc13(0x14c),'mappingDiagnostic':_0x1bfc13(0x154),'configDiagnostic':'La\x20configuration\x20du\x20diagramme\x20de\x20cordes\x20n’est\x20pas\x20valide.\x20Vérifiez\x20les\x20angles,\x20les\x20rayons,\x20l’opacité\x20et\x20les\x20tailles.','associatedValue':_0x1bfc13(0x232)},'common':{'category':_0x1bfc13(0x25b),'seriesName':_0x1bfc13(0x145),'value':_0x1bfc13(0x1f5),'percentage':'Pourcentage','borderColor':'Couleur\x20de\x20la\x20bordure','labelContent':_0x1bfc13(0x21a),'labelPosition':_0x1bfc13(0x261),'dataLabels':_0x1bfc13(0x224),'chartType':_0x1bfc13(0x28d),'bold':_0x1bfc13(0x256),'italic':_0x1bfc13(0x243),'shape':_0x1bfc13(0x235),'chartStyle':_0x1bfc13(0x28e),'chartAndAxisTitles':_0x1bfc13(0x207),'legend':_0x1bfc13(0x1c7),'chartTitle':_0x1bfc13(0x26c),'subtitle':_0x1bfc13(0x182),'series':_0x1bfc13(0x162),'dataPoint':_0x1bfc13(0x18e),'trendline':_0x1bfc13(0x219),'horizontalAxis':_0x1bfc13(0x1a4),'verticalAxis':_0x1bfc13(0x14e),'rightVerticalAxis':_0x1bfc13(0x199),'layout':_0x1bfc13(0x1df),'arrow':_0x1bfc13(0x265),'axisLabels':'Étiquettes\x20des\x20axes','currency':'Devise','date':_0x1bfc13(0x222),'displayName':_0x1bfc13(0x15b),'emphasis':_0x1bfc13(0x205),'heatmap':_0x1bfc13(0x1ed),'lineColor':'Couleur\x20de\x20ligne','lineWidth':_0x1bfc13(0x194),'min':_0x1bfc13(0x1a2),'max':_0x1bfc13(0x174),'mode':_0x1bfc13(0x1a5),'stacked':_0x1bfc13(0x1ef),'title':_0x1bfc13(0x1a8),'auto':_0x1bfc13(0x247),'position':{'label':_0x1bfc13(0x22d),'inside':_0x1bfc13(0x147),'outside':_0x1bfc13(0x196),'top':_0x1bfc13(0x1aa),'right':_0x1bfc13(0x16f),'bottom':_0x1bfc13(0x195),'left':_0x1bfc13(0x176),'hide':_0x1bfc13(0x1c6)},'axisAlign':{'start':_0x1bfc13(0x164),'center':_0x1bfc13(0x27b),'end':_0x1bfc13(0x1d2)},'textAlign':{'left':_0x1bfc13(0x176),'center':_0x1bfc13(0x27b),'right':_0x1bfc13(0x16f)},'legendSelectMode':{'single':_0x1bfc13(0x231),'multiple':_0x1bfc13(0x1c8),'disabled':'Désactivé'},'visualMapType':{'continuous':'Continu','piecewise':_0x1bfc13(0x24b)},'default':_0x1bfc13(0x1b2),'reset':_0x1bfc13(0x1fd),'color':'Couleur','opacity':'Opacité','font':'Police','none':'Aucun','numberFormat':_0x1bfc13(0x15c),'borderWidth':_0x1bfc13(0x268),'borderType':_0x1bfc13(0x213),'lineType':_0x1bfc13(0x254),'dashed':_0x1bfc13(0x16d),'dotted':_0x1bfc13(0x152),'circle':'Cercle','triangle':'Triangle','diamond':_0x1bfc13(0x221),'axisLine':_0x1bfc13(0x1ae),'minimum':_0x1bfc13(0x1a2),'maximum':_0x1bfc13(0x1ba),'startAngle':_0x1bfc13(0x146),'valueField':_0x1bfc13(0x23e),'categoryName':_0x1bfc13(0x17a),'ownValue':_0x1bfc13(0x1c1),'children':_0x1bfc13(0x1ac),'label':_0x1bfc13(0x263),'editChart':'Éditeur\x20de\x20graphique','deleteChart':_0x1bfc13(0x1be),'insertChart':_0x1bfc13(0x15f),'insertChartFailed':'Échec\x20de\x20l\x27insertion\x20du\x20graphique','openChartPanel':_0x1bfc13(0x223),'hideChartPanel':'Masquer\x20le\x20panneau\x20de\x20graphique','exportImage':_0x1bfc13(0x258),'copy':'Copier','setup':_0x1bfc13(0x185),'customize':_0x1bfc13(0x1b4),'data':'Données','tableDataEmpty':_0x1bfc13(0x19b),'dataRange':'Plage\x20de\x20données','editData':_0x1bfc13(0x252),'inlineData':_0x1bfc13(0x1e2),'switchRowColumn':'Basculer\x20vers\x20ligne/colonne','useAsCategoryLabels':'Utiliser\x20{0}\x20comme\x20catégorie','cancel':_0x1bfc13(0x274),'insert':_0x1bfc13(0x27d),'apply':_0x1bfc13(0x21b),'duplicate':'Dupliquer'},'inlineTable':{'pasteHint':_0x1bfc13(0x227),'addRow':_0x1bfc13(0x1f8),'addColumn':_0x1bfc13(0x1a9)},'floatMenu':{'menuTitle':{'chart':_0x1bfc13(0x1cf),'axisTitle':_0x1bfc13(0x23f),'gridline':'Quadrillage','tick':_0x1bfc13(0x25f),'mark':_0x1bfc13(0x201),'dataLabel':_0x1bfc13(0x28c)},'field':{'position':'Poste','size':'Taille','align':_0x1bfc13(0x28a),'map':'Carte','rotate':_0x1bfc13(0x1f3),'labelText':'Texte\x20des\x20étiquettes','titleText':'Texte\x20du\x20titre'},'action':{'more':_0x1bfc13(0x216)},'control':{'labels':_0x1bfc13(0x180),'line':_0x1bfc13(0x234),'reverse':_0x1bfc13(0x24e)}}}};function _0x2b91(){const _0x433761=['Largeur\x20de\x20bougie','Collez\x20un\x20tableau\x20à\x20partir\x20de\x20Sheets,\x20d\x27Excel\x20ou\x20d\x27une\x20page\x20Web\x20pour\x20remplacer\x20les\x20données\x20en\x20ligne.','Graphique\x20en\x20ligne','Type\x20de\x20titre','Le\x20format\x20monétaire\x20est\x20utilisé\x20pour\x20les\x20valeurs\x20financières\x20générales,\x20tandis\x20que\x20le\x20format\x20comptabilité\x20aligne\x20les\x20décimales\x20dans\x20une\x20colonne\x20de\x20valeurs.','Nœud\x20actuel','Gap\x20width\x20(%)','Position','ID\x20de\x20l\x27image\x20du\x20masque','Axe','Types\x20de\x20nombres\x20négatifs','Simple','Valeur\x20associée','Empiler\x20·\x20Graphique\x20en\x20colonnes','Ligne','Forme','Aiguille\x20fine','Pentagone','Format\x20du\x20numéro\x20de\x20détail','Nombre\x20de\x20relations','Graphique\x20en\x20bulles','Lisse','Nuage\x20de\x20mots','Interaction','Champ\x20de\x20valeur','Titre\x20de\x20l’axe','Pointeur','Le\x20format\x20date\x20affiche\x20les\x20numéros\x20de\x20série\x20comme\x20des\x20valeurs\x20de\x20date\x20et\x20d’heure.','La\x20gravité','Italique','Épingle\x20vide','Plus\x20bas','Graphique\x20de\x20Pareto','Automatique','Bar\x20spacing','Lignes\x20de\x20grille\x20et\x20graduations','Chute','Par\x20morceaux','exports','1640254PlZMiG','Inverseur','Ligne\x20de\x20connecteur','Angle\x20du\x20tampon','311605jJWoqJ','Modifier\x20les\x20données','Commande','Type\x20de\x20ligne','Losange\x20vide','Gras','Axe\x20inversé','Exporter\x20en\x20tant\x20qu’image','Start\x20angle','Tiques','Catégorie','Comptabilité','Carré\x20vide','Plus\x20haut','Remise\x20des\x20diplômes','408ciVmIg','Position\x20de\x20l\x27étiquette','Titre\x20de\x20l\x27axe\x20horizontal','Étiquette','Rotation\x20des\x20étiquettes','Flèche','Angles','Graphique\x20en\x20entonnoir','Largeur\x20de\x20bordure','Opacité\x20de\x20la\x20mèche','Empiler','Coeur','Titre\x20du\x20graphique','Personnalisé','343551MBylhZ','Légende\x20de\x20l\x27enveloppe','Tableau\x20de\x20jauge','Nombre\x20de\x20bacs','Carré','Ruban','Annuler','738426WYnUVi','Autre','Couleur\x20de\x20la\x20mèche','Milleième','Remplissez\x20l\x27opacité','Left\x20(%)','Centre','Taille\x20du\x20graphique\x20secondaire','Insérer','Bannière','Opacité\x20de\x20la\x20bordure','Type\x20de\x20ligne\x20indicatrice','Graphique\x20histogramme','Dans\x20le\x20sens\x20des\x20aiguilles\x20d\x27une\x20montre','Fréquence','Afficher\x20la\x20formule','Couleur\x20de\x20la\x20coche','Tarte\x20aux\x20roses','Cardioïde','Cible\x20du\x20style','Agréger','Aligneur','Largeur\x20du\x20quadrillage','Étiquette\x20de\x20données','Type\x20de\x20graphique','Style\x20de\x20graphique','Disposition\x20avancée','Couleur\x20de\x20fond','Nom\x20de\x20la\x20série','Angle\x20de\x20départ','À\x20l\x27intérieur','Couleur\x20du\x20point','Aiguille\x20classique','Format\x20personnalisé','Graphique\x20en\x20ligne\x20/\x20Graphique\x20en\x20aires','Le\x20diagramme\x20de\x20cordes\x20nécessite\x20au\x20moins\x20une\x20relation\x20de\x20poids\x20positif\x20entre\x20deux\x20nœuds\x20distincts.','Couleur\x20du\x20texte\x20de\x20l\x27étiquette','Axe\x20vertical','État\x20de\x20la\x20bougie','Solide','Largeur\x20du\x20bac','Pointillé','Explosion\x20(%)','Le\x20diagramme\x20de\x20cordes\x20nécessite\x20des\x20champs\x20Source\x20et\x20Cible\x20distincts\x20et,\x20éventuellement,\x20un\x20champ\x20Valeur\x20différent.','Types\x20de\x20formats','Trou\x20de\x20beignet','18IyJgwz','Dégradé','Couleur\x20unie','Général','Nom\x20d\x27affichage','Format\x20des\x20nombres','Graphique\x20arborescent','Barres\x20de\x20secteur','Insérer\x20un\x20graphique','Standard','Cercle\x20vide','Série','Le\x20rayon\x20intérieur\x20doit\x20être\x20plus\x20petit\x20que\x20le\x20rayon\x20extérieur.','Début','Graphique\x20en\x20cascade','Chevauchement','Progrès','Modèle','Déplacer\x20le\x20champ\x20hiérarchique\x20vers\x20le\x20haut','Mèche','22314vaWTez','Angle\x20minimal','En\x20pointillés','32sFRSyE','Droite','Flèche\x20vide','Format\x20numérique\x20des\x20étiquettes\x20de\x20l’axe','Tableau\x20des\x20rayons\x20de\x20soleil','Cascade','Maximum','Graphique\x20secteurs\x20de\x20secteur','Gauche','Espace\x20entre\x20les\x20bacs','Rectangulaire','Afficher\x20R²','Nom\x20de\x20la\x20catégorie','Bougie','Inclure\x20des\x20valeurs\x20nulles','Moderne','Largeur','1xJCsDZ','Étiquettes','Divisions\x20secondaires\x20par\x20division\x20principale','Sous-titre','Aperçu','Longueur\x20des\x20arêtes','Configurer','Ligne\x20indicatrice','Épingle','Exponentiel','Le\x20graphique\x20de\x20jauge\x20nécessite\x20un\x20champ\x20d’étiquette\x20et\x20exactement\x20un\x20champ\x20de\x20valeur.','Polygone','Circulaire','Couleur\x20du\x20corps','Négatif','Point\x20de\x20données','Forme\x20du\x20point','Supprimer\x20le\x20champ\x20de\x20hiérarchie','Mode\x20de\x20sélection','Seuil\x20de\x20débordement','Le\x20graphique\x20de\x20jauge\x20nécessite\x20au\x20moins\x20une\x20valeur\x20numérique\x20finie.','Largeur\x20de\x20ligne','Bas','À\x20l\x27extérieur','Champs\x20de\x20hiérarchie','Axe\x20droit','Axe\x20vertical\x20droit','560305uUFETa','Les\x20données\x20du\x20tableau\x20sont\x20vides','Top\x20(%)','Paramètres\x20avancés','Nœuds','Style\x20de\x20ligne','Tiques\x20d\x27axe','Largeur\x20de\x20tique','Minimum','Rectangle\x20vide','Axe\x20horizontal','Mode','Mode\x20de\x20regroupement','Graphique\x20de\x20dispersion','Titre','Ajouter\x20une\x20colonne','Haut','Graphique\x20en\x20aires\x20empilées','Éléments\x20enfants','Dimensionner\x20les\x20nœuds\x20par\x20valeur','Ligne\x20d\x27axe','Scientifique','Secteurs\x20de\x20secteur','Fractionnement\x20personnalisé','Par\x20défaut','Utiliser\x20le\x20sous-total','Personnaliser','Bougie\x20creuse','Le\x20format\x20général\x20n’applique\x20aucun\x20format\x20numérique\x20spécifique.','Série\x20OHLC','Couleur\x20du\x20quadrillage','Échelle','Maximale','Supprimer\x20la\x20plage','Titre\x20de\x20l\x27axe\x20vertical\x20droit','Tableau\x20d\x27accords','Supprimer\x20le\x20graphique','Le\x20graphique\x20en\x20rayons\x20de\x20soleil\x20nécessite\x20au\x20moins\x20un\x20champ\x20hiérarchique\x20et\x20un\x20champ\x20de\x20valeur\x20numérique.','Taille\x20du\x20point','Valeur\x20propre','Largeur\x20de\x20la\x20ligne\x20de\x20connexion','Hiérarchie','Format\x20source','Diagramme\x20en\x20rayons\x20de\x20soleil','Masquer','Légende','Plusieurs','Nœud','Supprimer\x20le\x20point\x20de\x20données','Étiquettes\x20de\x20feuilles','Rectangle','Couleur\x20de\x20ligne','2504hfHGnn','Graphique','Rayon\x20intérieur','Graphique\x20en\x20chandeliers','Fin','Déplacer\x20le\x20champ\x20hiérarchique\x20vers\x20le\x20bas','La\x20carte\x20arborescente\x20nécessite\x20au\x20moins\x20un\x20champ\x20hiérarchique\x20et\x20un\x20champ\x20de\x20valeur\x20numérique.','Divisions\x20principales','Rotation','Thème','Boîte\x20à\x20moustaches','Logarithmique','Couleur\x20R²','Forme\x20du\x20graphique','Traiter\x20les\x20étiquettes\x20comme\x20des\x20dates','Ouverture','Graphique\x20en\x20camembert','Disposition','Ajouter\x20une\x20courbe\x20de\x20tendance','Clôture','Données\x20en\x20ligne','Le\x20format\x20millième\x20est\x20utilisé\x20pour\x20les\x20nombres\x20généraux\x20;\x20les\x20formats\x20monétaire\x20et\x20comptabilité\x20offrent\x20des\x20options\x20spécifiques\x20pour\x20les\x20valeurs\x20financières.','11574MnFaKc','Secteurs','Graphique\x20en\x20barres\x20empilées\x20en\x20pourcentage','Pourcentage\x20empilé','Cible','Titre\x20de\x20l\x27axe\x20vertical','Gammes','Taille\x20de\x20la\x20police','Pourcentage\x20empilé\x20·\x20Graphique\x20en\x20colonnes','Carte\x20thermique','Utiliser\x20des\x20valeurs\x20absolues','Empilé','Diagramme\x20de\x20cordes','Faire\x20pivoter\x20les\x20étiquettes','10avldQU','Faire\x20pivoter','Répéter\x20des\x20mots','Valeur','Manual','Doji','Ajouter\x20une\x20ligne','Couleur\x20par\x20défaut','Connecteur','Demi-tarte','Graphique\x20combiné','Réinitialiser','Type\x20de\x20ligne\x20de\x20connexion','Types\x20de\x20dates','Height\x20(%)','Marque','Forme\x20du\x20radar','Nœuds\x20adjacents','Valeur\x20inférieure\x20à','Accentuation','Quadrillage','Titres\x20du\x20graphique\x20et\x20des\x20axes','Remplissage\x20de\x20la\x20zone','Graphique\x20de\x20relation','{0}\x20points\x20de\x20données\x20sélectionnés','Taille\x20de\x20la\x20police\x20du\x20corps','Détail','Triangle\x20vide','Répulsion','Écart\x20entre\x20les\x20graphiques\x20principal\x20et\x20secondaire','Unité\x20de\x20valeur','Largeur\x20de\x20mèche','Alignement','Type\x20de\x20bordure','Longueur\x20de\x20tique','Ligne\x20de\x20rupture','Plus','Étiquettes\x20de\x20cellules','Fond\x20d\x27étiquette','Courbe\x20de\x20tendance','Contenu\x20de\x20l’étiquette','Appliquer','Graphique\x20en\x20aires\x20empilées\x20en\x20pourcentage','Écart\x20entre\x20les\x20articles','Le\x20format\x20comptabilité\x20aligne\x20les\x20symboles\x20monétaires\x20et\x20les\x20points\x20décimaux\x20dans\x20une\x20colonne.','Linéaire','Nombre\x20de\x20points\x20de\x20données\x20secondaires','Diamant','Date','Ouvrir\x20le\x20panneau\x20de\x20graphique','Étiquettes\x20de\x20données','Positif'];_0x2b91=function(){return _0x433761;};return _0x2b91();}module[_0x1bfc13(0x24c)]=e;
|
package/lib/cjs/locale/id-ID.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
function _0x1ae8(){const _0x3751a0=['Kontinu','Perataan','32503ZikFLe','Ganda','4OKZspC','Tanda','Atur\x20ulang','Subjudul','Posisi\x20label','Peta','Sumbu\x20vertikal','Tambah\x20Kolom','1324320XLgLLH','Putar','Label','2452324wnodRT','116163FvxOEY','Bagan','Teks\x20label','Kiri','Tanda\x20skala','Akhir','Tengah','6RRNeqJ','Teks\x20judul','Sumbu\x20horizontal','Ukuran','Bawaan','Seri','Berdasarkan\x20bagian','Tutup','12bFFJpn','Opasitas','Bungkus\x20legenda','Bawah','Warna\x20batas','Tambah\x20Baris','Tanggal','120WnXeQg','Kategori','Judul\x20sumbu','Kanan','Tebal','Tunggal','Garis\x20kisi','Persentase','Salin\x20dan\x20tempel\x20data\x20di\x20sini','Minimal','Di\x20luar','359295hmYvHk','424955bKpSmD','Di\x20dalam','Nilai','Sembunyikan','Judul\x20bagan','exports','Miring','5190383rOWNrK','Sumbu\x20vertikal\x20kanan','Atas','Judul'];_0x1ae8=function(){return _0x3751a0;};return _0x1ae8();}const _0x46c2a5=_0x1282;function _0x1282(_0x4646e8,_0x51f975){_0x4646e8=_0x4646e8-0x18b;const _0x1ae8ca=_0x1ae8();let _0x128264=_0x1ae8ca[_0x4646e8];return _0x128264;}(function(_0x556483,_0x2dcbc1){const _0x23a066=_0x1282,_0x305e7c=_0x556483();while(!![]){try{const _0x330425=parseInt(_0x23a066(0x193))/0x1*(parseInt(_0x23a066(0x1b0))/0x2)+parseInt(_0x23a066(0x1c2))/0x3*(parseInt(_0x23a066(0x195))/0x4)+parseInt(_0x23a066(0x1c3))/0x5+-parseInt(_0x23a066(0x1a8))/0x6*(-parseInt(_0x23a066(0x1a0))/0x7)+parseInt(_0x23a066(0x1b7))/0x8*(-parseInt(_0x23a066(0x1a1))/0x9)+parseInt(_0x23a066(0x19d))/0xa+-parseInt(_0x23a066(0x18d))/0xb;if(_0x330425===_0x2dcbc1)break;else _0x305e7c['push'](_0x305e7c['shift']());}catch(_0x46b0b0){_0x305e7c['push'](_0x305e7c['shift']());}}}(_0x1ae8,0x34ff8));const e={'chart-ui':{'common':{'default':_0x46c2a5(0x1ac),'reset':_0x46c2a5(0x197)},'presentation':{'wrapLegend':_0x46c2a5(0x1b2)},'inlineTable':{'pasteHint':_0x46c2a5(0x1bf),'addRow':_0x46c2a5(0x1b5),'addColumn':_0x46c2a5(0x19c)},'floatMenu':{'menuTitle':{'chart':_0x46c2a5(0x1a2),'chartTitle':_0x46c2a5(0x1c7),'subtitle':_0x46c2a5(0x198),'axisTitle':_0x46c2a5(0x1b9),'legend':'Legenda','horizontalAxis':_0x46c2a5(0x1aa),'verticalAxis':_0x46c2a5(0x19b),'rightVerticalAxis':_0x46c2a5(0x18e),'gridline':_0x46c2a5(0x1bd),'tick':_0x46c2a5(0x1a5),'mark':_0x46c2a5(0x196),'series':_0x46c2a5(0x1ad),'dataPoint':'Titik\x20data','dataLabel':'Label\x20data'},'field':{'title':_0x46c2a5(0x190),'subtitle':_0x46c2a5(0x198),'position':'Posisi','size':_0x46c2a5(0x1ab),'align':_0x46c2a5(0x192),'mode':'Mode','map':_0x46c2a5(0x19a),'rotate':_0x46c2a5(0x19e),'min':_0x46c2a5(0x1c0),'max':'Maks','color':'Warna','borderColor':_0x46c2a5(0x1b4),'opacity':_0x46c2a5(0x1b1),'labelPosition':_0x46c2a5(0x199),'labelText':_0x46c2a5(0x1a3),'titleText':_0x46c2a5(0x1a9)},'action':{'more':'Lainnya','bold':_0x46c2a5(0x1bb),'italic':_0x46c2a5(0x18c)},'control':{'labels':_0x46c2a5(0x19f),'line':'Garis','reverse':'Balikkan','date':_0x46c2a5(0x1b6)},'option':{'textAlign':{'left':_0x46c2a5(0x1a4),'center':_0x46c2a5(0x1a7),'right':_0x46c2a5(0x1ba)},'position':{'top':_0x46c2a5(0x18f),'bottom':_0x46c2a5(0x1b3),'left':_0x46c2a5(0x1a4),'right':_0x46c2a5(0x1ba),'hide':_0x46c2a5(0x1c6),'inside':_0x46c2a5(0x1c4),'outside':_0x46c2a5(0x1c1)},'labelText':{'category':_0x46c2a5(0x1b8),'value':_0x46c2a5(0x1c5),'percentage':_0x46c2a5(0x1be)},'axisAlign':{'start':'Awal','center':'Tengah','end':_0x46c2a5(0x1a6)},'legendSelectMode':{'single':_0x46c2a5(0x1bc),'multiple':_0x46c2a5(0x194),'close':_0x46c2a5(0x1af)},'visualMapType':{'continuous':_0x46c2a5(0x191),'piecewise':_0x46c2a5(0x1ae)}}}}};module[_0x46c2a5(0x18b)]=e;
|
|
1
|
+
const _0x9f91a3=_0x1b6f;(function(_0x554e4f,_0x532a0f){const _0x31735f=_0x1b6f,_0x30c40c=_0x554e4f();while(!![]){try{const _0x5e6b2c=-parseInt(_0x31735f(0x2b5))/0x1*(parseInt(_0x31735f(0x27e))/0x2)+parseInt(_0x31735f(0x28d))/0x3+parseInt(_0x31735f(0x2dd))/0x4+parseInt(_0x31735f(0x327))/0x5+-parseInt(_0x31735f(0x2e5))/0x6*(-parseInt(_0x31735f(0x27a))/0x7)+-parseInt(_0x31735f(0x2d0))/0x8*(parseInt(_0x31735f(0x1e6))/0x9)+-parseInt(_0x31735f(0x30b))/0xa*(parseInt(_0x31735f(0x297))/0xb);if(_0x5e6b2c===_0x532a0f)break;else _0x30c40c['push'](_0x30c40c['shift']());}catch(_0x4bf59a){_0x30c40c['push'](_0x30c40c['shift']());}}}(_0x6193,0x9086a));const e={'chart-ui':{'editor':{'defaultColor':'Warna\x20bawaan','fontSize':_0x9f91a3(0x2b0)},'setup':{'stack':_0x9f91a3(0x203),'percentStacked':_0x9f91a3(0x28f)},'chartTypes':{'line':_0x9f91a3(0x229),'column':_0x9f91a3(0x219),'columnStacked':'Tumpuk\x20·\x20Grafik\x20kolom','columnPercentStacked':_0x9f91a3(0x2b9),'bar':'Grafik\x20batang','barStacked':_0x9f91a3(0x274),'barPercentStacked':_0x9f91a3(0x24a),'pie':_0x9f91a3(0x1e4),'donut':_0x9f91a3(0x1f3),'pieOfPie':_0x9f91a3(0x2b7),'barOfPie':_0x9f91a3(0x29a),'area':'Grafik\x20area','areaStacked':_0x9f91a3(0x244),'areaPercentStacked':_0x9f91a3(0x307),'radar':_0x9f91a3(0x223),'scatter':_0x9f91a3(0x284),'combination':'Grafik\x20kombinasi','wordCloud':_0x9f91a3(0x2d9),'funnel':_0x9f91a3(0x201),'bubble':'Grafik\x20gelembung','relation':'Grafik\x20relasi','waterfall':'Grafik\x20air\x20terjun','pareto':_0x9f91a3(0x31a),'sankey':_0x9f91a3(0x2b3),'heatmap':_0x9f91a3(0x2a0),'boxplot':_0x9f91a3(0x1ec),'candlestick':_0x9f91a3(0x255),'histogram':'Histogram','treemap':_0x9f91a3(0x2ca),'sunburst':_0x9f91a3(0x2c5),'gauge':_0x9f91a3(0x26a),'chord':_0x9f91a3(0x275)},'section':{'waterfall':_0x9f91a3(0x1f6),'paretoBar':_0x9f91a3(0x26e),'paretoLine':_0x9f91a3(0x1d6),'pie':_0x9f91a3(0x1e4),'wordCloud':_0x9f91a3(0x1f9),'radar':_0x9f91a3(0x223),'funnel':_0x9f91a3(0x201),'relation':_0x9f91a3(0x1ef),'lineAndArea':_0x9f91a3(0x1e3),'gridlinesAndTicks':_0x9f91a3(0x22e),'indicatorLine':'Garis\x20indikator','candlestick':'Grafik\x20kandil','histogram':_0x9f91a3(0x235),'treemap':_0x9f91a3(0x1fa),'sunburst':_0x9f91a3(0x24f),'gauge':_0x9f91a3(0x23a),'chord':_0x9f91a3(0x27d)},'presentation':{'backgroundColor':'Warna\x20latar\x20belakang','theme':_0x9f91a3(0x1fd),'gradientFill':_0x9f91a3(0x315),'bodyFontSize':_0x9f91a3(0x2cf),'bodyFontColor':_0x9f91a3(0x2e0),'titleType':_0x9f91a3(0x2f7),'horizontalAxisTitle':_0x9f91a3(0x2ee),'verticalAxisTitle':'Judul\x20sumbu\x20vertikal','rightVerticalAxisTitle':_0x9f91a3(0x2fb),'wrap':_0x9f91a3(0x2e2),'selectMode':'Modus\x20pemilihan','visualMapType':_0x9f91a3(0x2ff),'align':_0x9f91a3(0x243)},'numberFormat':{'source':_0x9f91a3(0x2c6),'number':_0x9f91a3(0x20d),'scientific':_0x9f91a3(0x1eb),'custom':_0x9f91a3(0x30c),'preview':_0x9f91a3(0x1fe),'generalType':_0x9f91a3(0x270),'accountingType':'Akuntansi','thousandsType':'Persentil\x20Ribuan','formatTypes':_0x9f91a3(0x2ed),'generalDesc':_0x9f91a3(0x222),'accountingDesc':'Format\x20angka\x20akuntansi\x20menyelaraskan\x20simbol\x20mata\x20uang\x20dan\x20titik\x20desimal\x20dalam\x20sebuah\x20kolom.','currencyDesc':_0x9f91a3(0x231),'dateDesc':_0x9f91a3(0x21e),'thousandsDesc':_0x9f91a3(0x254),'decimalPlaces':_0x9f91a3(0x224),'currencyTypes':_0x9f91a3(0x23d),'negativeNumberTypes':_0x9f91a3(0x296),'dateTypes':_0x9f91a3(0x2d8),'setFormat':_0x9f91a3(0x278)},'series':{'rightAxis':_0x9f91a3(0x300),'allSeries':_0x9f91a3(0x216),'aggregate':_0x9f91a3(0x238),'borderOpacity':_0x9f91a3(0x2c4),'solid':_0x9f91a3(0x1d8),'pointShape':_0x9f91a3(0x308),'pointSize':_0x9f91a3(0x31d),'pointColor':'Warna\x20titik','removeDataPoint':'Hapus\x20titik\x20data','square':_0x9f91a3(0x1e5),'rect':_0x9f91a3(0x267),'roundRect':_0x9f91a3(0x200),'pin':_0x9f91a3(0x24b),'emptyCircle':_0x9f91a3(0x281),'emptySquare':_0x9f91a3(0x202),'emptyTriangle':_0x9f91a3(0x218),'emptyDiamond':_0x9f91a3(0x246),'emptyRect':_0x9f91a3(0x209),'emptyRoundRect':'Persegi\x20panjang\x20membulat\x20kosong','emptyPin':'Pin\x20kosong','emptyArrow':_0x9f91a3(0x1e0)},'lineAndArea':{'lineStyle':_0x9f91a3(0x2d1),'line':_0x9f91a3(0x2ae),'smooth':_0x9f91a3(0x247),'step':_0x9f91a3(0x1de),'invalidValues':'Nilai\x20tidak\x20valid','breakLine':_0x9f91a3(0x1e1),'connect':_0x9f91a3(0x265),'zero':_0x9f91a3(0x2cd)},'axis':{'useDateAxis':_0x9f91a3(0x227),'target':_0x9f91a3(0x298),'lineColor':_0x9f91a3(0x303),'lineWidth':_0x9f91a3(0x21c),'labelRotation':'Rotasi\x20label','reverse':_0x9f91a3(0x2a4),'gridlineVisible':_0x9f91a3(0x266),'gridlineColor':'Warna\x20garis\x20kisi','gridlineWidth':_0x9f91a3(0x2a6),'tickVisible':_0x9f91a3(0x20e),'tickLength':'Panjang\x20centang','tickWidth':'Lebar\x20centang','tickColor':_0x9f91a3(0x31b),'tickPosition':_0x9f91a3(0x251)},'indicator':{'lineColor':_0x9f91a3(0x2ac),'lineType':'Jenis\x20garis\x20indikator','labelBackground':'Latar\x20belakang\x20label','labelText':_0x9f91a3(0x2a5)},'trendline':{'add':_0x9f91a3(0x2e3),'type':_0x9f91a3(0x249),'linear':'Linier','exponential':'Eksponensial','logarithmic':_0x9f91a3(0x2f5),'polynomial':'Polinomial','power':'Kekuatan','movingAverage':_0x9f91a3(0x2f8),'showFormula':'Tampilkan\x20rumus','showR2':_0x9f91a3(0x239),'order':_0x9f91a3(0x2c0),'period':_0x9f91a3(0x2da),'formulaColor':_0x9f91a3(0x289),'r2Color':_0x9f91a3(0x24e)},'pareto':{'includeZeroValues':'Sertakan\x20nilai\x20nol'},'plotArea':{'label':_0x9f91a3(0x25b),'manual':_0x9f91a3(0x2b1),'left':_0x9f91a3(0x328),'top':_0x9f91a3(0x2d6),'width':_0x9f91a3(0x29c),'height':_0x9f91a3(0x2bf)},'bar':{'layout':'Bar\x20spacing','gapWidth':'Gap\x20width\x20(%)','overlap':_0x9f91a3(0x276)},'pie':{'mode':_0x9f91a3(0x29b),'modeNormal':_0x9f91a3(0x295),'modePieOfPie':_0x9f91a3(0x257),'modeBarOfPie':_0x9f91a3(0x1f2),'splitType':_0x9f91a3(0x2ad),'splitAuto':_0x9f91a3(0x306),'splitPosition':_0x9f91a3(0x2f4),'splitCustom':_0x9f91a3(0x2d2),'customSelectedCount':_0x9f91a3(0x1f4),'customSelectedCountValue':_0x9f91a3(0x2ef),'positionCount':_0x9f91a3(0x27c),'valueLessThan':_0x9f91a3(0x31f),'percentageLessThan':_0x9f91a3(0x226),'secondarySize':_0x9f91a3(0x1d5),'advancedLayout':_0x9f91a3(0x1f7),'connector':_0x9f91a3(0x30e),'slices':_0x9f91a3(0x1ff),'gapWidth':_0x9f91a3(0x30f),'connectorColor':'Warna\x20garis\x20penghubung','connectorWidth':_0x9f91a3(0x2fd),'connectorType':'Jenis\x20garis\x20penghubung','aggregateOther':_0x9f91a3(0x2c2),'aggregateMembers':'Anggota','valueScale':'Skala\x20nilai','doughnutHole':_0x9f91a3(0x279),'startAngle':_0x9f91a3(0x26b),'explosion':_0x9f91a3(0x319),'paddingAngle':_0x9f91a3(0x2a1),'halfPie':_0x9f91a3(0x22c),'rosePie':_0x9f91a3(0x26c),'labelLine':_0x9f91a3(0x313)},'radar':{'shape':_0x9f91a3(0x2ab),'polygon':_0x9f91a3(0x1e2),'fill':_0x9f91a3(0x240)},'funnel':{'gap':'Kesenjangan\x20barang','absoluteValues':_0x9f91a3(0x237)},'heatmap':{'unit':_0x9f91a3(0x242),'labels':_0x9f91a3(0x2e8)},'relation':{'nodes':_0x9f91a3(0x2c3),'interaction':'Interaksi','edgeLength':_0x9f91a3(0x305),'circular':_0x9f91a3(0x1e8),'force':_0x9f91a3(0x23e),'nodeShape':'Bentuk\x20simpul','valueSize':_0x9f91a3(0x2b6),'rotateLabels':_0x9f91a3(0x1db),'gravity':'Gravitasi','repulsion':_0x9f91a3(0x220)},'wordCloud':{'maskImage':_0x9f91a3(0x2b2),'repeat':_0x9f91a3(0x283),'cloud':_0x9f91a3(0x2d7),'rect':_0x9f91a3(0x267),'cardioid':_0x9f91a3(0x2f1),'heart':_0x9f91a3(0x28c),'triangle-forward':_0x9f91a3(0x321),'pentagon':_0x9f91a3(0x2c8),'star':_0x9f91a3(0x326)},'waterfall':{'styleTarget':'Target\x20gaya','positive':_0x9f91a3(0x30d),'negative':_0x9f91a3(0x302),'stackType':_0x9f91a3(0x293),'arrangement':_0x9f91a3(0x1fb),'subtotal':_0x9f91a3(0x2f9),'includeSubtotal':_0x9f91a3(0x31c),'connector':_0x9f91a3(0x1f1)},'candlestick':{'candle':_0x9f91a3(0x2dc),'body':_0x9f91a3(0x309),'wick':_0x9f91a3(0x1ea),'state':_0x9f91a3(0x2fa),'open':_0x9f91a3(0x2f0),'high':'Tertinggi','low':_0x9f91a3(0x215),'close':_0x9f91a3(0x2f6),'rising':_0x9f91a3(0x1dd),'falling':'Jatuh','doji':_0x9f91a3(0x208),'bodyColor':'Warna\x20tubuh','fillOpacity':_0x9f91a3(0x325),'wickColor':_0x9f91a3(0x250),'wickWidth':'Lebar\x20sumbu','wickOpacity':_0x9f91a3(0x22a),'candleWidth':_0x9f91a3(0x28b),'hollow':'Lilin\x20berongga','columnsError':_0x9f91a3(0x2c7),'series':_0x9f91a3(0x287)},'histogram':{'binGap':'Celah\x20tempat\x20sampah','binningMode':_0x9f91a3(0x2ea),'count':_0x9f91a3(0x28a),'width':'Lebar','binCount':_0x9f91a3(0x2e9),'binWidth':'Lebar\x20wadah','underflow':_0x9f91a3(0x258),'overflow':_0x9f91a3(0x25f),'frequency':_0x9f91a3(0x1ee)},'treemap':{'parentLabelLayout':_0x9f91a3(0x28e),'banner':_0x9f91a3(0x1d7),'overlapping':_0x9f91a3(0x20c),'leafLabel':_0x9f91a3(0x2fe),'hierarchy':_0x9f91a3(0x282),'diagnostic':_0x9f91a3(0x1d9)},'sunburst':{'hierarchy':_0x9f91a3(0x304),'addHierarchy':_0x9f91a3(0x210),'moveUp':'Pindahkan\x20bidang\x20hierarki\x20ke\x20atas','moveDown':_0x9f91a3(0x25e),'removeHierarchy':_0x9f91a3(0x301),'centerLabel':_0x9f91a3(0x212),'labelFormat':'Gaya\x20label','diagnostic':_0x9f91a3(0x234)},'gauge':{'scale':_0x9f91a3(0x1dc),'majorDivisions':_0x9f91a3(0x2cc),'minorDivisions':_0x9f91a3(0x2bd),'angles':_0x9f91a3(0x232),'endAngle':'Sudut\x20akhir','ranges':_0x9f91a3(0x213),'rangeFrom':'Dari','rangeTo':_0x9f91a3(0x1da),'addRange':'Tambahkan\x20jangkauan','removeRange':_0x9f91a3(0x314),'axisTick':_0x9f91a3(0x230),'splitLine':'Garis\x20terpisah','pointer':'penunjuk','anchor':_0x9f91a3(0x1f5),'progress':_0x9f91a3(0x2af),'detail':_0x9f91a3(0x2bb),'pointerNeedle':_0x9f91a3(0x23b),'pointerSlim':_0x9f91a3(0x2de),'template':_0x9f91a3(0x214),'modern':_0x9f91a3(0x22b),'classic':_0x9f91a3(0x253),'minimal':'Minimal','advanced':'Pengaturan\x20lanjutan','customized':'Kustom','axisLabelNumberFormat':_0x9f91a3(0x22d),'detailNumberFormat':_0x9f91a3(0x233),'emptyDiagnostic':_0x9f91a3(0x25c),'mappingDiagnostic':_0x9f91a3(0x23f),'configDiagnostic':_0x9f91a3(0x1e9)},'chord':{'source':_0x9f91a3(0x221),'target':_0x9f91a3(0x22f),'count':_0x9f91a3(0x206),'node':_0x9f91a3(0x2e7),'ribbon':'Pita','clockwise':_0x9f91a3(0x20f),'padAngle':_0x9f91a3(0x294),'minAngle':_0x9f91a3(0x1fc),'innerRadius':_0x9f91a3(0x1f8),'outerRadius':_0x9f91a3(0x2bc),'invalidRadii':'Jari-jari\x20dalam\x20harus\x20lebih\x20kecil\x20dari\x20jari-jari\x20luar.','rotation':_0x9f91a3(0x29f),'distance':_0x9f91a3(0x20b),'width':_0x9f91a3(0x311),'focus':'Fokus','solid':'Warna\x20solid','gradient':_0x9f91a3(0x25a),'adjacency':_0x9f91a3(0x1df),'self':_0x9f91a3(0x263),'emptyDiagnostic':_0x9f91a3(0x2c9),'mappingDiagnostic':_0x9f91a3(0x277),'configDiagnostic':_0x9f91a3(0x2df),'associatedValue':_0x9f91a3(0x268)},'common':{'category':'Kategori','seriesName':_0x9f91a3(0x2a7),'value':_0x9f91a3(0x2a8),'percentage':'Persentase','borderColor':'Warna\x20perbatasan','labelContent':_0x9f91a3(0x31e),'labelPosition':'Posisi\x20label','dataLabels':_0x9f91a3(0x272),'chartType':_0x9f91a3(0x323),'bold':_0x9f91a3(0x2e6),'italic':_0x9f91a3(0x2f3),'shape':_0x9f91a3(0x2fc),'chartStyle':_0x9f91a3(0x299),'chartAndAxisTitles':'Judul\x20grafik\x20dan\x20sumbu','legend':_0x9f91a3(0x318),'chartTitle':_0x9f91a3(0x26f),'subtitle':'Subjudul','series':_0x9f91a3(0x2db),'dataPoint':_0x9f91a3(0x211),'trendline':_0x9f91a3(0x2d5),'horizontalAxis':_0x9f91a3(0x2ce),'verticalAxis':'Sumbu\x20vertikal','rightVerticalAxis':_0x9f91a3(0x2d4),'layout':_0x9f91a3(0x256),'arrow':'Panah','axisLabels':'Label\x20sumbu','currency':_0x9f91a3(0x29d),'date':'Tanggal','displayName':_0x9f91a3(0x2a9),'emphasis':'Penekanan','heatmap':_0x9f91a3(0x2a0),'lineColor':'Warna\x20garis','lineWidth':'Lebar\x20garis','min':_0x9f91a3(0x1e7),'max':'Maksimum','mode':_0x9f91a3(0x24c),'stacked':'Ditumpuk','title':_0x9f91a3(0x21f),'auto':_0x9f91a3(0x306),'position':{'label':_0x9f91a3(0x2f4),'inside':_0x9f91a3(0x273),'outside':'Di\x20luar','top':_0x9f91a3(0x2aa),'right':_0x9f91a3(0x291),'bottom':_0x9f91a3(0x2be),'left':'kiri','hide':_0x9f91a3(0x324)},'axisAlign':{'start':_0x9f91a3(0x2b8),'center':'Tengah','end':_0x9f91a3(0x2eb)},'textAlign':{'left':_0x9f91a3(0x271),'center':_0x9f91a3(0x2a2),'right':_0x9f91a3(0x291)},'legendSelectMode':{'single':_0x9f91a3(0x241),'multiple':_0x9f91a3(0x27f),'disabled':_0x9f91a3(0x30a)},'visualMapType':{'continuous':_0x9f91a3(0x1ed),'piecewise':_0x9f91a3(0x312)},'default':'Bawaan','reset':_0x9f91a3(0x204),'color':_0x9f91a3(0x2ec),'opacity':'Opasitas','font':_0x9f91a3(0x2e4),'none':_0x9f91a3(0x2d3),'numberFormat':_0x9f91a3(0x2e1),'borderWidth':_0x9f91a3(0x2c1),'borderType':'Jenis\x20perbatasan','lineType':_0x9f91a3(0x2a3),'dashed':_0x9f91a3(0x23c),'dotted':'bertitik','circle':_0x9f91a3(0x262),'triangle':_0x9f91a3(0x280),'diamond':_0x9f91a3(0x29e),'axisLine':_0x9f91a3(0x316),'minimum':_0x9f91a3(0x317),'maximum':_0x9f91a3(0x322),'startAngle':'Sudut\x20awal','valueField':'Bidang\x20nilai','categoryName':_0x9f91a3(0x21b),'ownValue':_0x9f91a3(0x292),'children':'Elemen\x20turunan','label':_0x9f91a3(0x2f2),'editChart':_0x9f91a3(0x290),'deleteChart':_0x9f91a3(0x225),'insertChart':_0x9f91a3(0x248),'insertChartFailed':_0x9f91a3(0x252),'openChartPanel':_0x9f91a3(0x27b),'hideChartPanel':_0x9f91a3(0x285),'exportImage':_0x9f91a3(0x26d),'copy':'Salin','setup':'Pengaturan','customize':'Kustomisasi','data':_0x9f91a3(0x245),'tableDataEmpty':_0x9f91a3(0x24d),'dataRange':_0x9f91a3(0x2ba),'editData':_0x9f91a3(0x2cb),'inlineData':_0x9f91a3(0x2b4),'switchRowColumn':_0x9f91a3(0x25d),'useAsCategoryLabels':'Gunakan\x20{0}\x20sebagai\x20kategori','cancel':'Batal','insert':_0x9f91a3(0x264),'apply':_0x9f91a3(0x310),'duplicate':_0x9f91a3(0x236)},'inlineTable':{'pasteHint':_0x9f91a3(0x20a),'addRow':_0x9f91a3(0x21a),'addColumn':_0x9f91a3(0x217)},'floatMenu':{'menuTitle':{'chart':_0x9f91a3(0x288),'axisTitle':'Judul\x20sumbu','gridline':_0x9f91a3(0x266),'tick':_0x9f91a3(0x260),'mark':_0x9f91a3(0x205),'dataLabel':_0x9f91a3(0x269)},'field':{'position':_0x9f91a3(0x2f4),'size':_0x9f91a3(0x21d),'align':_0x9f91a3(0x261),'map':_0x9f91a3(0x259),'rotate':_0x9f91a3(0x286),'labelText':'label\x20teks','titleText':_0x9f91a3(0x207)},'action':{'more':_0x9f91a3(0x2c2)},'control':{'labels':_0x9f91a3(0x228),'line':_0x9f91a3(0x2ae),'reverse':_0x9f91a3(0x320)}}}};function _0x1b6f(_0x2e9db7,_0x342dff){_0x2e9db7=_0x2e9db7-0x1d5;const _0x619308=_0x6193();let _0x1b6ff6=_0x619308[_0x2e9db7];return _0x1b6ff6;}module[_0x9f91a3(0x1f0)]=e;function _0x6193(){const _0x403d6a=['Peta\x20panas','Jarak\x20irisan','Tengah','Tipe\x20garis','Sumbu\x20terbalik','Label\x20warna\x20teks','Lebar\x20garis\x20kisi','Nama\x20seri','Nilai','Nama\x20tampilan','Atas','Bentuk\x20radar','Warna\x20garis\x20indikator','Pisahkan\x20berdasarkan','Garis','Kemajuan','Ukuran\x20huruf','Manual','ID\x20gambar\x20topeng','Grafik\x20Sankey','Data\x20Inline','25748DiSnSH','Ukuran\x20node\x20berdasarkan\x20nilai','Grafik\x20pai\x20dari\x20pai','Awal','Tumpuk\x20persen\x20·\x20Grafik\x20kolom','Rentang\x20data','Detil','Jari-jari\x20luar','Pembagian\x20kecil\x20per\x20pembagian\x20utama','Bawah','Height\x20(%)','Memesan','Lebar\x20perbatasan','Lainnya','Node','Opasitas\x20batas','Diagram\x20sunburst','Format\x20sumber','Data\x20grafik\x20kandil\x20memerlukan\x20kolom\x20Kategori,\x20Buka,\x20Tertinggi,\x20Terendah,\x20dan\x20Tutup.','segi\x20lima','Diagram\x20chord\x20memerlukan\x20setidaknya\x20satu\x20hubungan\x20berbobot\x20positif\x20antara\x20dua\x20simpul\x20yang\x20berbeda.','Peta\x20pohon','Edit\x20Data','Pembagian\x20utama','Perlakukan\x20sebagai\x20nol','Sumbu\x20horizontal','Ukuran\x20font\x20tubuh','4295128jjVOfL','Gaya\x20garis','Kustom','Tidak\x20ada','Sumbu\x20vertikal\x20kanan','Garis\x20tren','Top\x20(%)','Awan','Jenis\x20Tanggal','Grafik\x20awan\x20kata','Titik','Seri','Lilin','3477936vXqvbe','Jarum\x20ramping','Konfigurasi\x20diagram\x20chord\x20tidak\x20valid.\x20Periksa\x20sudut,\x20jari-jari,\x20opasitas,\x20dan\x20ukurannya.','Warna\x20font\x20tubuh','Format\x20angka','Bungkus\x20legenda','Tambah\x20garis\x20tren','huruf','6dhZalf','Tebal','simpul','Label\x20sel','Jumlah\x20sampah','Mode\x20pengelompokan','Akhir','Warna','Jenis\x20Format','Judul\x20sumbu\x20horizontal','{0}\x20titik\x20data\x20dipilih','Pembukaan','Kardioid','Label','Miring','Posisi','Logaritma','Penutupan','Jenis\x20judul','Rata-rata\x20bergerak','Subtotal','Keadaan\x20lilin','Judul\x20sumbu\x20vertikal\x20kanan','Bentuk','Lebar\x20garis\x20penghubung','Label\x20daun','Peta\x20visual','Sumbu\x20kanan','Hapus\x20bidang\x20hierarki','Negatif','Warna\x20garis','Hirarki','Panjang\x20sisi','Otomatis','Grafik\x20area\x20tumpuk\x20persen','Bentuk\x20titik','Badan','Dinonaktifkan','10PNGARI','Format\x20khusus','Positif','Konektor','Jarak\x20antara\x20grafik\x20utama\x20dan\x20sekunder','Terapkan','Lebar','Berdasarkan\x20bagian','Garis\x20label','Hapus\x20jangkauan','Isian\x20gradien','Garis\x20sumbu','Minimal','Legenda','Explosion\x20(%)','Grafik\x20Pareto','Centang\x20warna','Gunakan\x20subtotal','Ukuran\x20titik','Isi\x20label','Nilai\x20kurang\x20dari','Balikkan','Segitiga\x20ke\x20depan','Maksimal','Jenis\x20grafik','Sembunyikan','Isi\x20opacity','Bintang','2765580HUmzNH','Left\x20(%)','Ukuran\x20grafik\x20sekunder','Seri\x20Persentase\x20Kumulatif','Spanduk','Padat','Grafik\x20peta\x20pohon\x20memerlukan\x20setidaknya\x20satu\x20bidang\x20hierarki\x20dan\x20satu\x20bidang\x20nilai\x20numerik.','Untuk','Putar\x20label','Skala','Bangkit','Langkah','Simpul\x20yang\x20berdekatan','Panah\x20kosong','Garis\x20putus-putus','Poligon','Grafik\x20garis\x20/\x20Grafik\x20area','Grafik\x20pai','Persegi','9CIyqoK','Minimum','Melingkar','Konfigurasi\x20grafik\x20pengukur\x20tidak\x20valid.\x20Periksa\x20skala,\x20rentang,\x20rasio,\x20dan\x20ukurannya.','Sumbu','Ilmiah','Grafik\x20boxplot','Kontinu','Frekuensi','Grafik\x20relasi','exports','Garis\x20konektor','Batang\x20dari\x20pai','Grafik\x20donat','Pemisahan\x20kustom','Jangkar','Grafik\x20air\x20terjun','Tata\x20letak\x20lanjutan','Jari-jari\x20dalam','Awan\x20kata','Bagan\x20peta\x20pohon','Air\x20terjun','Sudut\x20minimal','Tema','Pratinjau','Irisan','Persegi\x20panjang\x20membulat','Grafik\x20corong','Persegi\x20kosong','Tumpuk','Setel\x20ulang','Tanda','Jumlah\x20hubungan','Teks\x20judul','Doji','Persegi\x20panjang\x20kosong','Tempelkan\x20tabel\x20dari\x20Spreadsheet,\x20Excel,\x20atau\x20halaman\x20web\x20untuk\x20menggantikan\x20data\x20sebaris.','Jarak','Tumpang\x20tindih','Nomor','kutu','Searah\x20jarum\x20jam','Tambahkan\x20hierarki','Titik\x20data','Total\x20tengah','Rentang','Templat','Terendah','Semua\x20seri','Tambahkan\x20kolom','Segitiga\x20kosong','Grafik\x20kolom','Tambahkan\x20baris','Nama\x20kategori','Lebar\x20garis','Ukuran','Format\x20tanggal\x20menampilkan\x20nomor\x20seri\x20tanggal\x20dan\x20waktu\x20sebagai\x20nilai\x20tanggal.','Judul','Tolakan','Sumber','Format\x20umum\x20tidak\x20mengandung\x20format\x20angka\x20tertentu.','Grafik\x20radar','Tempat\x20Desimal','Hapus\x20grafik','Persentase\x20kurang\x20dari','Perlakukan\x20label\x20sebagai\x20tanggal','Label\x20gelembung','Grafik\x20garis','Opasitas\x20sumbu','Modern','Setengah\x20kue','Format\x20angka\x20label\x20sumbu','Garis\x20kisi\x20dan\x20tanda\x20centang','Sasaran','Kutu\x20sumbu','Format\x20mata\x20uang\x20digunakan\x20untuk\x20nilai\x20moneter\x20umum,\x20format\x20akuntansi\x20menyelaraskan\x20titik\x20desimal\x20dalam\x20sebuah\x20kolom\x20nilai.','Sudut','Format\x20angka\x20detail','Grafik\x20sunburst\x20memerlukan\x20setidaknya\x20satu\x20bidang\x20hierarki\x20dan\x20satu\x20bidang\x20nilai\x20numerik.','Bagan\x20histogram','Duplikat','Gunakan\x20nilai\x20absolut','Agregasikan','Tunjukkan\x20R²','Bagan\x20pengukur','Jarum\x20klasik','Putus-putus','Jenis\x20Mata\x20Uang','Memaksa','Grafik\x20pengukur\x20memerlukan\x20satu\x20bidang\x20label\x20dan\x20tepat\x20satu\x20bidang\x20nilai.','Isi\x20wilayah','Tunggal','Satuan\x20nilai','Penyelarasan','Grafik\x20area\x20bertumpuk','Data','Wajik\x20kosong','Halus','Sisipkan\x20grafik','Ketik','Grafik\x20batang\x20tumpuk\x20persen','Pin','Modus','Data\x20tabel\x20kosong','warna\x20R²','Bagan\x20sinar\x20matahari','Warna\x20sumbu','Posisi\x20centang','Gagal\x20menyisipkan\x20grafik','Klasik','Format\x20persentil\x20ribuan\x20digunakan\x20untuk\x20angka\x20umum,\x20format\x20mata\x20uang\x20dan\x20akuntansi\x20menyediakan\x20format\x20khusus\x20untuk\x20nilai\x20moneter.','Grafik\x20candlestick','Tata\x20letak','Pai\x20dari\x20pai','Ambang\x20batas\x20aliran\x20bawah','Peta','Gradien','Plot\x20area','Grafik\x20pengukur\x20memerlukan\x20setidaknya\x20satu\x20nilai\x20numerik\x20berhingga.','Beralih\x20ke\x20baris/kolom','Pindahkan\x20bidang\x20hierarki\x20ke\x20bawah','Ambang\x20batas\x20meluap','Tanda\x20Skala','Pelaaan','Lingkaran','Simpul\x20saat\x20ini','Sisipkan','Hubungkan\x20titik\x20data','Garis\x20kisi','Persegi\x20panjang','Nilai\x20terkait','Labeli\x20data','Diagram\x20pengukur','Start\x20angle','pai\x20mawar','Ekspor\x20sebagai\x20gambar','Seri\x20Grafik\x20Batang','Judul\x20bagan','Umum','kiri','Label\x20data','Di\x20dalam','Grafik\x20batang\x20bertumpuk','Diagram\x20chord','Series\x20overlap\x20(%)','Diagram\x20chord\x20memerlukan\x20bidang\x20Sumber\x20dan\x20Target\x20yang\x20berbeda\x20serta\x20bidang\x20Nilai\x20berbeda\x20yang\x20opsional.','Atur\x20format\x20label','Lubang\x20donat','3823925AerzhG','Buka\x20panel\x20grafik','Jumlah\x20titik\x20data\x20grafik\x20sekunder','Bagan\x20akord','8WlnXDW','Ganda','Segitiga','Lingkaran\x20kosong','Bidang\x20hierarki','Ulangi\x20kata-kata','Grafik\x20sebar','Sembunyikan\x20panel\x20grafik','Putar','Seri\x20OHLC','Bagan','Warna\x20rumus','Hitung','Lebar\x20lilin','Hati','2756304LcKpgu','Tata\x20letak\x20label\x20induk','Tumpuk\x20persen','Editor\x20grafik','Kanan','Nilai\x20sendiri','Pengaturan','Sudut\x20bantalan','Reguler','Jenis\x20Angka\x20Negatif','18213602nreNsc','sumbu','Gaya\x20grafik','Grafik\x20batang\x20dari\x20pai','Bentuk\x20grafik','Width\x20(%)','Mata\x20uang','berlian','Rotasi'];_0x6193=function(){return _0x403d6a;};return _0x6193();}
|
package/lib/cjs/locale/it-IT.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const _0x228cab=_0x3da9;function _0x1d8d(){const _0x394385=['793iqAFfa','Linea','1488501xpiYWu','Fine','Ruota','Opacità','Aggiungi\x20riga','Valore','Interno','minimo','Titolo\x20dell’asse','Destra','223908XBNvIG','80WcytwQ','Singola','Etichette','Altro','8HURcvc','Linea\x20della\x20griglia','Grafico','Posizione\x20etichetta','Marca','Sottotitolo','Etichetta\x20dati','Corsivo','A\x20capo\x20legenda','Esterno','Titolo','Asse\x20orizzontale','Predefinito','Grassetto','Punto\x20dati','515Aisrzc','Categoria','Superiore','Inizio','Modalità','Copia\x20e\x20incolla\x20i\x20dati\x20qui','Testo\x20etichetta','Data','exports','Testo\x20titolo','Nascondi','Centro','Chiudi','Continua','Dimensione','1464OSJwEw','6054DTpBkr','2376VUPDVO','129010DEIvIa','Colore','Legenda','Titolo\x20del\x20grafico','Asse\x20verticale\x20destro','275YLuleI','176078cwyCeZ','31389cLCuFp','Sinistra','Allinea'];_0x1d8d=function(){return _0x394385;};return _0x1d8d();}(function(_0x11f081,_0x4aabb0){const _0x58127=_0x3da9,_0x27f73e=_0x11f081();while(!![]){try{const _0x53be68=-parseInt(_0x58127(0xfb))/0x1*(parseInt(_0x58127(0xd3))/0x2)+parseInt(_0x58127(0xf1))/0x3*(-parseInt(_0x58127(0xf3))/0x4)+-parseInt(_0x58127(0xe2))/0x5*(parseInt(_0x58127(0xf2))/0x6)+parseInt(_0x58127(0xfa))/0x7*(-parseInt(_0x58127(0x10b))/0x8)+parseInt(_0x58127(0x100))/0x9+-parseInt(_0x58127(0xf4))/0xa*(parseInt(_0x58127(0xf9))/0xb)+-parseInt(_0x58127(0x10a))/0xc*(-parseInt(_0x58127(0xfe))/0xd);if(_0x53be68===_0x4aabb0)break;else _0x27f73e['push'](_0x27f73e['shift']());}catch(_0x27827f){_0x27f73e['push'](_0x27f73e['shift']());}}}(_0x1d8d,0x334f8));function _0x3da9(_0x50a077,_0x367a0a){_0x50a077=_0x50a077-0xd3;const _0x1d8da3=_0x1d8d();let _0x3da97a=_0x1d8da3[_0x50a077];return _0x3da97a;}const e={'chart-ui':{'common':{'default':_0x228cab(0xdf),'reset':'Reimposta'},'presentation':{'wrapLegend':_0x228cab(0xdb)},'inlineTable':{'pasteHint':_0x228cab(0xe7),'addRow':_0x228cab(0x104),'addColumn':'Aggiungi\x20colonna'},'floatMenu':{'menuTitle':{'chart':_0x228cab(0xd5),'chartTitle':_0x228cab(0xf7),'subtitle':_0x228cab(0xd8),'axisTitle':_0x228cab(0x108),'legend':_0x228cab(0xf6),'horizontalAxis':_0x228cab(0xde),'verticalAxis':'Asse\x20verticale','rightVerticalAxis':_0x228cab(0xf8),'gridline':_0x228cab(0xd4),'tick':'Tacca','mark':_0x228cab(0xd7),'series':'Serie','dataPoint':_0x228cab(0xe1),'dataLabel':_0x228cab(0xd9)},'field':{'title':_0x228cab(0xdd),'subtitle':_0x228cab(0xd8),'position':'Posizione','size':_0x228cab(0xf0),'align':_0x228cab(0xfd),'mode':_0x228cab(0xe6),'map':'Mappa','rotate':_0x228cab(0x102),'min':_0x228cab(0x107),'max':'Massimo','color':_0x228cab(0xf5),'borderColor':'Colore\x20bordo','opacity':_0x228cab(0x103),'labelPosition':_0x228cab(0xd6),'labelText':_0x228cab(0xe8),'titleText':_0x228cab(0xeb)},'action':{'more':_0x228cab(0x10e),'bold':_0x228cab(0xe0),'italic':_0x228cab(0xda)},'control':{'labels':_0x228cab(0x10d),'line':_0x228cab(0xff),'reverse':'Inverti','date':_0x228cab(0xe9)},'option':{'textAlign':{'left':_0x228cab(0xfc),'center':_0x228cab(0xed),'right':_0x228cab(0x109)},'position':{'top':_0x228cab(0xe4),'bottom':'Inferiore','left':_0x228cab(0xfc),'right':'Destra','hide':_0x228cab(0xec),'inside':_0x228cab(0x106),'outside':_0x228cab(0xdc)},'labelText':{'category':_0x228cab(0xe3),'value':_0x228cab(0x105),'percentage':'Percentuale'},'axisAlign':{'start':_0x228cab(0xe5),'center':'Centro','end':_0x228cab(0x101)},'legendSelectMode':{'single':_0x228cab(0x10c),'multiple':'Multipla','close':_0x228cab(0xee)},'visualMapType':{'continuous':_0x228cab(0xef),'piecewise':'A\x20tratti'}}}}};module[_0x228cab(0xea)]=e;
|
|
1
|
+
const _0x471381=_0x3593;(function(_0x5b4a03,_0x2b7cc3){const _0xacb6e5=_0x3593,_0x21c7a7=_0x5b4a03();while(!![]){try{const _0x40955b=parseInt(_0xacb6e5(0x1de))/0x1*(-parseInt(_0xacb6e5(0x212))/0x2)+-parseInt(_0xacb6e5(0x284))/0x3+parseInt(_0xacb6e5(0x2a2))/0x4+-parseInt(_0xacb6e5(0x23a))/0x5*(-parseInt(_0xacb6e5(0x2ef))/0x6)+-parseInt(_0xacb6e5(0x2ae))/0x7*(parseInt(_0xacb6e5(0x2c8))/0x8)+parseInt(_0xacb6e5(0x2d8))/0x9+-parseInt(_0xacb6e5(0x270))/0xa;if(_0x40955b===_0x2b7cc3)break;else _0x21c7a7['push'](_0x21c7a7['shift']());}catch(_0x35e0a4){_0x21c7a7['push'](_0x21c7a7['shift']());}}}(_0x5b1a,0x7fcf4));function _0x3593(_0x4acd39,_0x58082a){_0x4acd39=_0x4acd39-0x1bb;const _0x5b1a80=_0x5b1a();let _0x359331=_0x5b1a80[_0x4acd39];return _0x359331;}const e={'chart-ui':{'editor':{'defaultColor':'Colore\x20predefinito','fontSize':_0x471381(0x208)},'setup':{'stack':_0x471381(0x2e8),'percentStacked':'Impila\x20percentuale'},'chartTypes':{'line':_0x471381(0x1d1),'column':'Grafico\x20a\x20colonne','columnStacked':_0x471381(0x264),'columnPercentStacked':'Impila\x20percentuale\x20·\x20Grafico\x20a\x20colonne','bar':_0x471381(0x1fd),'barStacked':_0x471381(0x2a9),'barPercentStacked':_0x471381(0x290),'pie':_0x471381(0x2f4),'donut':_0x471381(0x1f2),'pieOfPie':_0x471381(0x22e),'barOfPie':_0x471381(0x2f6),'area':_0x471381(0x2cc),'areaStacked':_0x471381(0x20f),'areaPercentStacked':'Grafico\x20ad\x20area\x20impilato\x20percentuale','radar':'Grafico\x20radar','scatter':_0x471381(0x203),'combination':_0x471381(0x237),'wordCloud':'Grafico\x20nuvola\x20di\x20parole','funnel':_0x471381(0x266),'bubble':'Grafico\x20a\x20bolle','relation':_0x471381(0x272),'waterfall':_0x471381(0x281),'pareto':_0x471381(0x2c7),'sankey':_0x471381(0x251),'heatmap':_0x471381(0x2dd),'boxplot':_0x471381(0x26d),'candlestick':_0x471381(0x29b),'histogram':'Istogramma','treemap':'Mappa\x20ad\x20albero','sunburst':_0x471381(0x2e0),'gauge':_0x471381(0x24e),'chord':_0x471381(0x207)},'section':{'waterfall':_0x471381(0x281),'paretoBar':_0x471381(0x2bf),'paretoLine':_0x471381(0x287),'pie':_0x471381(0x2f4),'wordCloud':_0x471381(0x2bc),'radar':_0x471381(0x1f1),'funnel':_0x471381(0x266),'relation':_0x471381(0x272),'lineAndArea':_0x471381(0x1e4),'gridlinesAndTicks':_0x471381(0x2be),'indicatorLine':_0x471381(0x1f7),'candlestick':_0x471381(0x2e2),'histogram':_0x471381(0x294),'treemap':_0x471381(0x249),'sunburst':_0x471381(0x283),'gauge':'Grafico\x20del\x20calibro','chord':_0x471381(0x1d5)},'presentation':{'backgroundColor':'Colore\x20di\x20sfondo','theme':_0x471381(0x22b),'gradientFill':_0x471381(0x260),'bodyFontSize':_0x471381(0x21d),'bodyFontColor':_0x471381(0x1f4),'titleType':_0x471381(0x218),'horizontalAxisTitle':_0x471381(0x267),'verticalAxisTitle':_0x471381(0x20a),'rightVerticalAxisTitle':_0x471381(0x248),'wrap':_0x471381(0x1bc),'selectMode':_0x471381(0x1fb),'visualMapType':_0x471381(0x2d7),'align':_0x471381(0x21e)},'numberFormat':{'source':_0x471381(0x296),'number':'Numero','scientific':'Scientifico','custom':_0x471381(0x1c6),'preview':_0x471381(0x1ee),'generalType':_0x471381(0x27e),'accountingType':_0x471381(0x26e),'thousandsType':_0x471381(0x1c3),'formatTypes':_0x471381(0x252),'generalDesc':_0x471381(0x27b),'accountingDesc':_0x471381(0x231),'currencyDesc':_0x471381(0x23c),'dateDesc':_0x471381(0x2e4),'thousandsDesc':_0x471381(0x1ec),'decimalPlaces':'Cifre\x20decimali','currencyTypes':_0x471381(0x297),'negativeNumberTypes':_0x471381(0x27c),'dateTypes':_0x471381(0x1ca),'setFormat':'Imposta\x20formato\x20etichetta'},'series':{'rightAxis':_0x471381(0x2f7),'allSeries':'Tutte\x20le\x20serie','aggregate':_0x471381(0x1db),'borderOpacity':'Opacità\x20del\x20bordo','solid':_0x471381(0x2d1),'pointShape':_0x471381(0x1e6),'pointSize':'Dimensione\x20in\x20punti','pointColor':_0x471381(0x23f),'removeDataPoint':_0x471381(0x259),'square':_0x471381(0x241),'rect':_0x471381(0x222),'roundRect':_0x471381(0x234),'pin':'Spillo','emptyCircle':'Cerchio\x20vuoto','emptySquare':'Quadrato\x20vuoto','emptyTriangle':'Triangolo\x20vuoto','emptyDiamond':'Diamante\x20vuoto','emptyRect':_0x471381(0x21f),'emptyRoundRect':'Rettangolo\x20arrotondato\x20vuoto','emptyPin':_0x471381(0x2d9),'emptyArrow':'Freccia\x20vuota'},'lineAndArea':{'lineStyle':_0x471381(0x246),'line':_0x471381(0x2db),'smooth':_0x471381(0x2c6),'step':'Passo','invalidValues':_0x471381(0x1e8),'breakLine':_0x471381(0x24c),'connect':'Connetti\x20punti\x20dati','zero':'Trattalo\x20come\x20zero'},'axis':{'useDateAxis':_0x471381(0x291),'target':'Asse','lineColor':_0x471381(0x2f1),'lineWidth':_0x471381(0x28b),'labelRotation':'Rotazione\x20dell\x27etichetta','reverse':'Asse\x20inverso','gridlineVisible':_0x471381(0x2e3),'gridlineColor':_0x471381(0x1f0),'gridlineWidth':_0x471381(0x2eb),'tickVisible':_0x471381(0x265),'tickLength':_0x471381(0x22a),'tickWidth':_0x471381(0x278),'tickColor':_0x471381(0x2c4),'tickPosition':_0x471381(0x271)},'indicator':{'lineColor':'Colore\x20della\x20linea\x20dell\x27indicatore','lineType':_0x471381(0x224),'labelBackground':_0x471381(0x277),'labelText':_0x471381(0x2b6)},'trendline':{'add':'Aggiungi\x20linea\x20di\x20tendenza','type':_0x471381(0x2d0),'linear':_0x471381(0x289),'exponential':_0x471381(0x25b),'logarithmic':_0x471381(0x1f9),'polynomial':_0x471381(0x29f),'power':_0x471381(0x1da),'movingAverage':'Media\x20mobile','showFormula':_0x471381(0x1d2),'showR2':_0x471381(0x223),'order':'Ordine','period':'Periodo','formulaColor':'Colore\x20della\x20formula','r2Color':_0x471381(0x2c3)},'pareto':{'includeZeroValues':_0x471381(0x2e7)},'plotArea':{'label':'Plot\x20area','manual':'Manual','left':_0x471381(0x227),'top':_0x471381(0x2b4),'width':_0x471381(0x253),'height':_0x471381(0x25a)},'bar':{'layout':_0x471381(0x23d),'gapWidth':'Gap\x20width\x20(%)','overlap':'Series\x20overlap\x20(%)'},'pie':{'mode':_0x471381(0x1e2),'modeNormal':_0x471381(0x1ff),'modePieOfPie':_0x471381(0x24d),'modeBarOfPie':_0x471381(0x2d4),'splitType':_0x471381(0x2b0),'splitAuto':_0x471381(0x29e),'splitPosition':'Posizione','splitCustom':_0x471381(0x217),'customSelectedCount':_0x471381(0x274),'customSelectedCountValue':'{0}\x20punti\x20dati\x20selezionati','positionCount':'Numero\x20di\x20punti\x20dati\x20secondari','valueLessThan':_0x471381(0x2ec),'percentageLessThan':_0x471381(0x22d),'secondarySize':_0x471381(0x29d),'advancedLayout':_0x471381(0x273),'connector':_0x471381(0x293),'slices':_0x471381(0x1e5),'gapWidth':_0x471381(0x2ad),'connectorColor':_0x471381(0x292),'connectorWidth':_0x471381(0x1f6),'connectorType':_0x471381(0x2c5),'aggregateOther':'Altro','aggregateMembers':_0x471381(0x1cf),'valueScale':_0x471381(0x2c2),'doughnutHole':_0x471381(0x279),'startAngle':'Start\x20angle','explosion':'Explosion\x20(%)','paddingAngle':_0x471381(0x2a5),'halfPie':'Mezza\x20torta','rosePie':_0x471381(0x1dc),'labelLine':'Linea\x20di\x20etichetta'},'radar':{'shape':_0x471381(0x1cd),'polygon':_0x471381(0x2a1),'fill':_0x471381(0x2ed)},'funnel':{'gap':'Spazio\x20vuoto\x20nell\x27articolo','absoluteValues':_0x471381(0x29a)},'heatmap':{'unit':'Unità\x20di\x20valore','labels':_0x471381(0x240)},'relation':{'nodes':_0x471381(0x2d6),'interaction':'Interazione','edgeLength':_0x471381(0x20d),'circular':_0x471381(0x244),'force':_0x471381(0x268),'nodeShape':_0x471381(0x25c),'valueSize':'Dimensioni\x20dei\x20nodi\x20in\x20base\x20al\x20valore','rotateLabels':_0x471381(0x1f3),'gravity':'Gravità','repulsion':_0x471381(0x2a7)},'wordCloud':{'maskImage':_0x471381(0x1d3),'repeat':_0x471381(0x1eb),'cloud':'Nuvola','rect':_0x471381(0x222),'cardioid':_0x471381(0x221),'heart':_0x471381(0x1fa),'triangle-forward':_0x471381(0x256),'pentagon':_0x471381(0x2b2),'star':_0x471381(0x2ee)},'waterfall':{'styleTarget':_0x471381(0x242),'positive':'Positivo','negative':_0x471381(0x2d5),'stackType':'Disposizione','arrangement':_0x471381(0x1c1),'subtotal':_0x471381(0x2b9),'includeSubtotal':'Utilizza\x20subtotale','connector':_0x471381(0x1c5)},'candlestick':{'candle':_0x471381(0x280),'body':_0x471381(0x2b1),'wick':_0x471381(0x26b),'state':_0x471381(0x216),'open':'Apertura','high':'Massimo','low':_0x471381(0x225),'close':_0x471381(0x2a6),'rising':_0x471381(0x228),'falling':_0x471381(0x2ea),'doji':_0x471381(0x211),'bodyColor':_0x471381(0x28a),'fillOpacity':_0x471381(0x2e9),'wickColor':'Colore\x20stoppino','wickWidth':_0x471381(0x215),'wickOpacity':_0x471381(0x209),'candleWidth':_0x471381(0x247),'hollow':_0x471381(0x2b7),'columnsError':_0x471381(0x1be),'series':_0x471381(0x269)},'histogram':{'binGap':_0x471381(0x27a),'binningMode':_0x471381(0x205),'count':_0x471381(0x1ea),'width':_0x471381(0x204),'binCount':'Conteggio\x20contenitori','binWidth':'Larghezza\x20del\x20contenitore','underflow':_0x471381(0x1ce),'overflow':_0x471381(0x26f),'frequency':_0x471381(0x236)},'treemap':{'parentLabelLayout':_0x471381(0x1d8),'banner':_0x471381(0x276),'overlapping':_0x471381(0x20b),'leafLabel':_0x471381(0x282),'hierarchy':_0x471381(0x238),'diagnostic':_0x471381(0x214)},'sunburst':{'hierarchy':_0x471381(0x26c),'addHierarchy':_0x471381(0x25e),'moveUp':_0x471381(0x1d4),'moveDown':_0x471381(0x27d),'removeHierarchy':'Rimuovi\x20il\x20campo\x20della\x20gerarchia','centerLabel':_0x471381(0x275),'labelFormat':_0x471381(0x220),'diagnostic':_0x471381(0x226)},'gauge':{'scale':'Scala','majorDivisions':_0x471381(0x2df),'minorDivisions':_0x471381(0x2e5),'angles':'Angoli','endAngle':'Angolo\x20finale','ranges':_0x471381(0x1cc),'rangeFrom':'Da','rangeTo':'A','addRange':_0x471381(0x239),'removeRange':_0x471381(0x28d),'axisTick':_0x471381(0x1e1),'splitLine':_0x471381(0x22c),'pointer':_0x471381(0x219),'anchor':'Ancora','progress':_0x471381(0x233),'detail':'Dettaglio','pointerNeedle':'Ago\x20classico','pointerSlim':_0x471381(0x28e),'template':'Modello','modern':_0x471381(0x1e7),'classic':_0x471381(0x2cd),'minimal':_0x471381(0x225),'advanced':'Impostazioni\x20avanzate','customized':'Personalizzato','axisLabelNumberFormat':_0x471381(0x243),'detailNumberFormat':'Formato\x20del\x20numero\x20di\x20dettaglio','emptyDiagnostic':_0x471381(0x1c8),'mappingDiagnostic':_0x471381(0x1fe),'configDiagnostic':_0x471381(0x258)},'chord':{'source':_0x471381(0x2f2),'target':_0x471381(0x1d9),'count':_0x471381(0x2aa),'node':_0x471381(0x1f8),'ribbon':_0x471381(0x1ef),'clockwise':_0x471381(0x235),'padAngle':_0x471381(0x2e6),'minAngle':_0x471381(0x2b5),'innerRadius':_0x471381(0x26a),'outerRadius':_0x471381(0x1f5),'invalidRadii':'Il\x20raggio\x20interno\x20deve\x20essere\x20inferiore\x20al\x20raggio\x20esterno.','rotation':_0x471381(0x232),'distance':'Distanza','width':_0x471381(0x204),'focus':_0x471381(0x21a),'solid':'Colore\x20uniforme','gradient':_0x471381(0x257),'adjacency':'Nodi\x20adiacenti','self':'Nodo\x20corrente','emptyDiagnostic':'Il\x20diagramma\x20a\x20corde\x20richiede\x20almeno\x20una\x20relazione\x20con\x20peso\x20positivo\x20tra\x20due\x20nodi\x20distinti.','mappingDiagnostic':'Il\x20diagramma\x20a\x20corde\x20richiede\x20campi\x20Origine\x20e\x20Destinazione\x20distinti\x20e,\x20facoltativamente,\x20un\x20campo\x20Valore\x20diverso.','configDiagnostic':'La\x20configurazione\x20del\x20diagramma\x20a\x20corde\x20non\x20è\x20valida.\x20Controllare\x20angoli,\x20raggi,\x20opacità\x20e\x20dimensioni.','associatedValue':_0x471381(0x1e9)},'common':{'category':_0x471381(0x1d7),'seriesName':_0x471381(0x261),'value':_0x471381(0x25d),'percentage':_0x471381(0x1cb),'borderColor':_0x471381(0x2dc),'labelContent':'Contenuto\x20dell’etichetta','labelPosition':_0x471381(0x1df),'dataLabels':_0x471381(0x202),'chartType':_0x471381(0x28f),'bold':_0x471381(0x1d6),'italic':_0x471381(0x2d3),'shape':_0x471381(0x2f3),'chartStyle':_0x471381(0x21b),'chartAndAxisTitles':_0x471381(0x1bf),'legend':'Legenda','chartTitle':'Titolo\x20del\x20grafico','subtitle':_0x471381(0x288),'series':_0x471381(0x295),'dataPoint':_0x471381(0x29c),'trendline':_0x471381(0x2da),'horizontalAxis':'Asse\x20orizzontale','verticalAxis':_0x471381(0x1e3),'rightVerticalAxis':_0x471381(0x2ab),'layout':'Disposizione','arrow':_0x471381(0x230),'axisLabels':'Etichette\x20degli\x20assi','currency':_0x471381(0x2c0),'date':_0x471381(0x2bd),'displayName':_0x471381(0x206),'emphasis':_0x471381(0x20c),'heatmap':_0x471381(0x2dd),'lineColor':_0x471381(0x2f1),'lineWidth':'Larghezza\x20della\x20linea','min':_0x471381(0x225),'max':_0x471381(0x2cb),'mode':_0x471381(0x1dd),'stacked':_0x471381(0x229),'title':'Titolo','auto':_0x471381(0x29e),'position':{'label':_0x471381(0x24b),'inside':_0x471381(0x285),'outside':_0x471381(0x1bd),'top':_0x471381(0x2cf),'right':_0x471381(0x213),'bottom':_0x471381(0x2c1),'left':_0x471381(0x2ce),'hide':_0x471381(0x210)},'axisAlign':{'start':'Inizio','center':_0x471381(0x2a8),'end':_0x471381(0x24a)},'textAlign':{'left':_0x471381(0x2ce),'center':_0x471381(0x2a8),'right':'Destra'},'legendSelectMode':{'single':'Singola','multiple':_0x471381(0x299),'disabled':'Disattivato'},'visualMapType':{'continuous':'Continuo','piecewise':_0x471381(0x2c9)},'default':'Predefinito','reset':'Ripristina','color':'Colore','opacity':_0x471381(0x1e0),'font':_0x471381(0x250),'none':_0x471381(0x1bb),'numberFormat':_0x471381(0x28c),'borderWidth':_0x471381(0x1fc),'borderType':_0x471381(0x2ac),'lineType':'Tipo\x20di\x20linea','dashed':_0x471381(0x1ed),'dotted':_0x471381(0x2f5),'circle':_0x471381(0x2f8),'triangle':_0x471381(0x286),'diamond':_0x471381(0x2e1),'axisLine':_0x471381(0x2a4),'minimum':'Minimo','maximum':_0x471381(0x2cb),'startAngle':_0x471381(0x2ba),'valueField':_0x471381(0x2de),'categoryName':_0x471381(0x1d0),'ownValue':_0x471381(0x2a3),'children':_0x471381(0x2ca),'label':'Etichetta','editChart':_0x471381(0x2bb),'deleteChart':_0x471381(0x24f),'insertChart':_0x471381(0x263),'insertChartFailed':_0x471381(0x1c2),'openChartPanel':'Apri\x20pannello\x20grafico','hideChartPanel':_0x471381(0x23b),'exportImage':_0x471381(0x2a0),'copy':_0x471381(0x262),'setup':'Configura','customize':'Personalizza','data':_0x471381(0x2b8),'tableDataEmpty':_0x471381(0x2af),'dataRange':_0x471381(0x20e),'editData':'Modifica\x20dati','inlineData':_0x471381(0x2d2),'switchRowColumn':_0x471381(0x27f),'useAsCategoryLabels':_0x471381(0x201),'cancel':_0x471381(0x1c9),'insert':_0x471381(0x22f),'apply':_0x471381(0x1c7),'duplicate':_0x471381(0x1c0)},'inlineTable':{'pasteHint':_0x471381(0x23e),'addRow':_0x471381(0x25f),'addColumn':_0x471381(0x21c)},'floatMenu':{'menuTitle':{'chart':'Grafico','axisTitle':'Titolo\x20dell’asse','gridline':_0x471381(0x2f0),'tick':_0x471381(0x245),'mark':'Marca','dataLabel':_0x471381(0x254)},'field':{'position':_0x471381(0x24b),'size':'Dimensione','align':'Allinea','map':_0x471381(0x255),'rotate':_0x471381(0x200),'labelText':_0x471381(0x1c4),'titleText':'Titolo\x20del\x20testo'},'action':{'more':_0x471381(0x2b3)},'control':{'labels':'Etichetta','line':'Linea','reverse':'Invertiti'}}}};module[_0x471381(0x298)]=e;function _0x5b1a(){const _0x384f10=['Destra','La\x20mappa\x20ad\x20albero\x20richiede\x20almeno\x20un\x20campo\x20gerarchico\x20e\x20un\x20campo\x20di\x20valore\x20numerico.','Larghezza\x20dello\x20stoppino','Stato\x20della\x20candela','Personalizzato','Tipo\x20di\x20titolo','Puntatore','Concentrarsi','Stile\x20grafico','Aggiungi\x20colonna','Dimensione\x20del\x20carattere\x20del\x20corpo','Allineamento','Rettangolo\x20vuoto','Stile\x20dell\x27etichetta','Cardioide','Rettangolo','Mostra\x20R²','Tipo\x20di\x20linea\x20dell\x27indicatore','Minimo','Il\x20grafico\x20radiale\x20gerarchico\x20richiede\x20almeno\x20un\x20campo\x20gerarchico\x20e\x20un\x20campo\x20di\x20valore\x20numerico.','Left\x20(%)','In\x20aumento','Impilato','Lunghezza\x20della\x20spunta','Tema','Linee\x20divise','Percentuale\x20inferiore\x20a','Grafico\x20a\x20torta\x20della\x20torta','Inserisci','Freccia','Il\x20formato\x20contabilità\x20allinea\x20i\x20simboli\x20di\x20valuta\x20e\x20i\x20punti\x20decimali\x20in\x20una\x20colonna.','Rotazione','Progresso','Rettangolo\x20arrotondato','In\x20senso\x20orario','Frequenza','Grafico\x20combinato','Campi\x20gerarchici','Aggiungi\x20intervallo','2807615HlReQY','Nascondi\x20pannello\x20grafico','Il\x20formato\x20valuta\x20è\x20usato\x20per\x20valori\x20monetari\x20generali,\x20il\x20formato\x20contabilità\x20allinea\x20i\x20punti\x20decimali\x20in\x20una\x20colonna\x20di\x20valori.','Bar\x20spacing','Incolla\x20una\x20tabella\x20da\x20Fogli,\x20Excel\x20o\x20una\x20pagina\x20web\x20per\x20sostituire\x20i\x20dati\x20incorporati.','Colore\x20del\x20punto','Etichette\x20delle\x20celle','Quadrato','Destinazione\x20stile','Formato\x20numerico\x20delle\x20etichette\x20dell’asse','Circolare','Tacca','Stile\x20della\x20linea','Larghezza\x20della\x20candela','Titolo\x20dell\x27asse\x20verticale\x20destro','Grafico\x20della\x20mappa\x20ad\x20albero','Fine','Posizione','Rompere\x20la\x20linea','Torta\x20della\x20torta','Grafico\x20a\x20tachimetro','Elimina\x20grafico','Carattere','Grafico\x20di\x20Sankey','Tipi\x20formato','Width\x20(%)','Etichetta\x20dati','Mappa','Triangolo\x20in\x20avanti','Gradiente','La\x20configurazione\x20del\x20grafico\x20a\x20indicatore\x20non\x20è\x20valida.\x20Controllare\x20scala,\x20intervalli,\x20proporzioni\x20e\x20dimensioni.','Rimuovi\x20punto\x20dati','Height\x20(%)','Esponenziale','Forma\x20del\x20nodo','Valore','Aggiungi\x20gerarchia','Aggiungi\x20riga','Riempimento\x20sfumato','Nome\x20della\x20serie','Copia','Inserisci\x20grafico','Impila\x20·\x20Grafico\x20a\x20colonne','Zecche','Grafico\x20a\x20imbuto','Titolo\x20dell\x27asse\x20orizzontale','Forza','Serie\x20OHLC','Raggio\x20interno','Stoppino','Gerarchia','Box\x20plot','Contabilità','Soglia\x20di\x20superamento','6545750SDtDpm','Posizione\x20della\x20spunta','Grafico\x20delle\x20relazioni','Layout\x20avanzato','Divisione\x20personalizzata','Totale\x20centrale','Stendardo','Sfondo\x20dell\x27etichetta','Larghezza\x20del\x20segno\x20di\x20spunta','Buco\x20della\x20ciambella','Spazio\x20nel\x20contenitore','Il\x20formato\x20generale\x20non\x20contiene\x20alcun\x20formato\x20numerico\x20specifico.','Tipi\x20di\x20numeri\x20negativi','Sposta\x20il\x20campo\x20della\x20gerarchia\x20verso\x20il\x20basso','Generale','Passa\x20a\x20riga/colonna','Candela','Grafico\x20a\x20cascata','Etichette\x20fogliari','Grafico\x20dello\x20sprazzo\x20di\x20sole','1047633MbrpNe','Dentro','Triangolo','Serie\x20percentuale\x20cumulativa','Sottotitolo','Lineare','Colore\x20del\x20corpo','Larghezza\x20della\x20linea','Formato\x20numero','Rimuovi\x20intervallo','Ago\x20sottile','Tipo\x20di\x20grafico','Grafico\x20a\x20barre\x20impilato\x20percentuale','Considera\x20le\x20etichette\x20come\x20date','Colore\x20della\x20linea\x20di\x20connessione','Connettore','Grafico\x20dell\x27istogramma','Serie','Formato\x20sorgente','Tipi\x20di\x20valuta','exports','Multipli','Utilizza\x20valori\x20assoluti','Grafico\x20a\x20candele','Punto\x20dati','Dimensione\x20del\x20grafico\x20secondario','Automatico','Polinomio','Esporta\x20come\x20immagine','Poligono','3903188NktfNf','Valore\x20proprio','Linea\x20dell\x27asse','Spaziatura\x20delle\x20fette','Chiusura','Repulsione','Centro','Grafico\x20a\x20barre\x20impilato','Conteggio\x20delle\x20relazioni','Asse\x20verticale\x20destro','Tipo\x20di\x20confine','Distanza\x20tra\x20grafico\x20principale\x20e\x20secondario','259QUoWng','I\x20dati\x20della\x20tabella\x20sono\x20vuoti','Dividi\x20per','Corpo','Pentagono','Altro','Top\x20(%)','Angolo\x20minimo','Colore\x20del\x20testo\x20dell\x27etichetta','Candela\x20cava','Dati','Subtotale','Angolo\x20iniziale','Editor\x20grafico','Nuvola\x20di\x20parole','Data','Linee\x20griglia\x20e\x20segni\x20di\x20graduazione','Serie\x20grafico\x20a\x20barre','Valuta','Inferiore','Scala\x20valori','Colore\x20R²','Colore\x20della\x20spunta','Tipo\x20di\x20linea\x20di\x20connessione','Liscio','Grafico\x20di\x20Pareto','69848kePpkr','A\x20tratti','Elementi\x20figli','Massimo','Grafico\x20ad\x20area','Classico','Sinistra','Superiore','Digitare','Solido','Dati\x20in\x20linea','Corsivo','Barre\x20della\x20torta','Negativo','Nodi','Mappa\x20visiva','3061755ltqdTK','Spillo\x20vuoto','Linea\x20di\x20tendenza','Linea','Colore\x20del\x20bordo','Mappa\x20di\x20calore','Campo\x20valore','Divisioni\x20principali','Grafico\x20radiale','Diamante','Grafico\x20a\x20candela','Linee\x20della\x20griglia','Il\x20formato\x20data\x20visualizza\x20i\x20numeri\x20seriali\x20di\x20data\x20e\x20ora\x20come\x20valori\x20di\x20data.','Divisioni\x20secondarie\x20per\x20divisione\x20principale','Angolo\x20del\x20cuscinetto','Includere\x20valori\x20zero','Impila','Riempi\x20l\x27opacità','Cadere','Larghezza\x20della\x20linea\x20della\x20griglia','Valore\x20inferiore\x20a','Riempimento\x20dell\x27area','Stella','6SnUfJX','Linea\x20della\x20griglia','Colore\x20della\x20linea','Fonte','Forma','Grafico\x20a\x20torta','Punteggiato','Grafico\x20a\x20barre\x20della\x20torta','Asse\x20destro','Cerchio','Nessuno','Avvolgere\x20la\x20leggenda','Fuori','I\x20dati\x20del\x20grafico\x20a\x20candele\x20richiedono\x20le\x20colonne\x20Categoria,\x20Apertura,\x20Massimo,\x20Minimo\x20e\x20Chiusura.','Titoli\x20grafico\x20e\x20assi','Duplica','Cascata','Inserimento\x20grafico\x20non\x20riuscito','Percentile\x20millesimo','Testo\x20etichetta','Linea\x20del\x20connettore','Formato\x20personalizzato','Applica','Il\x20grafico\x20a\x20indicatore\x20richiede\x20almeno\x20un\x20valore\x20numerico\x20finito.','Annulla','Tipi\x20di\x20data','Percentuale','Gamme','Forma\x20radar','Soglia\x20di\x20sottoflusso','Elementi','Nome\x20della\x20categoria','Grafico\x20a\x20linee','Mostra\x20formula','ID\x20immagine\x20maschera','Sposta\x20il\x20campo\x20della\x20gerarchia\x20verso\x20l\x27alto','Grafico\x20degli\x20accordi','Grassetto','Categoria','Layout\x20dell\x27etichetta\x20principale','Obiettivo','Potenza','Aggrega','Torta\x20di\x20rose','Modalità','1QxCztj','Posizione\x20dell\x27etichetta','Opacità','Ticchettii\x20dell\x27asse','Forma\x20del\x20grafico','Asse\x20verticale','Grafico\x20a\x20linee\x20/\x20Grafico\x20ad\x20area','Fette','Forma\x20del\x20punto','Moderno','Valori\x20non\x20validi','Valore\x20associato','Conte','Ripeti\x20le\x20parole','Il\x20formato\x20percentile\x20millesimo\x20è\x20usato\x20per\x20numeri\x20generali,\x20i\x20formati\x20valuta\x20e\x20contabilità\x20forniscono\x20formati\x20specializzati\x20per\x20valori\x20monetari.','Tratteggiato','Anteprima','Nastro','Colore\x20della\x20griglia','Grafico\x20radar','Grafico\x20ad\x20anello','Ruota\x20le\x20etichette','Colore\x20del\x20carattere\x20del\x20corpo','Raggio\x20esterno','Spessore\x20della\x20linea\x20di\x20connessione','Linea\x20indicatore','Nodo','Logaritmico','Cuore','Modalità\x20di\x20selezione','Larghezza\x20del\x20bordo','Grafico\x20a\x20barre','Il\x20grafico\x20a\x20indicatore\x20richiede\x20un\x20campo\x20etichetta\x20ed\x20esattamente\x20un\x20campo\x20valore.','Normale','Ruota','Usa\x20{0}\x20come\x20categoria','Etichette\x20dati','Grafico\x20a\x20dispersione','Larghezza','Modalità\x20di\x20raccolta','Nome\x20visualizzato','Diagramma\x20a\x20corde','Dimensione\x20del\x20carattere','Opacità\x20dello\x20stoppino','Titolo\x20dell\x27asse\x20verticale','Sovrapposizione','Enfasi','Lunghezza\x20collegamento','Intervallo\x20dati','Grafico\x20ad\x20area\x20impilato','Nascondi','Doji','54348IkvzPk'];_0x5b1a=function(){return _0x384f10;};return _0x5b1a();}
|
package/lib/cjs/locale/ja-JP.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const _0x2bb230=_0x5c16;(function(_0x4af1a8,_0x4d6b9b){const _0x560fd9=_0x5c16,_0x15b6a1=_0x4af1a8();while(!![]){try{const _0x401b7d=parseInt(_0x560fd9(0xb9))/0x1+parseInt(_0x560fd9(0xb2))/0x2+-parseInt(_0x560fd9(0x9f))/0x3*(parseInt(_0x560fd9(0xa7))/0x4)+parseInt(_0x560fd9(0x9b))/0x5*(parseInt(_0x560fd9(0xbd))/0x6)+parseInt(_0x560fd9(0xb1))/0x7*(-parseInt(_0x560fd9(0xaf))/0x8)+-parseInt(_0x560fd9(0xad))/0x9+-parseInt(_0x560fd9(0xac))/0xa*(-parseInt(_0x560fd9(0xbb))/0xb);if(_0x401b7d===_0x4d6b9b)break;else _0x15b6a1['push'](_0x15b6a1['shift']());}catch(_0x51f89b){_0x15b6a1['push'](_0x15b6a1['shift']());}}}(_0x1a42,0xd6b4a));function _0x1a42(){const _0x449ab5=['9961vmlAvZ','2980792fLhKCX','不透明度','非表示','データ\x20ラベル','サブタイトル','行を追加','凡例を折り返す','269707MzNMKh','モード','11rmvSDY','データポイント','373578ralCSS','35BAhBEy','最小値','exports','インジケーター','75WMCMfW','閉じる','第2縦軸','チャート','リセット','最大値','列を追加','タイトル','16612WsjHyk','軸のタイトル','サイズ','ラベル','グラフのタイトル','499020DQmXbL','771894pzfGIa','パーセンテージ','6616MfMGIC','罫線の色'];_0x1a42=function(){return _0x449ab5;};return _0x1a42();}const e={'chart-ui':{'common':{'default':'既定','reset':_0x2bb230(0xa3)},'presentation':{'wrapLegend':_0x2bb230(0xb8)},'inlineTable':{'pasteHint':'ここにデータをコピー&ペースト','addRow':_0x2bb230(0xb7),'addColumn':_0x2bb230(0xa5)},'floatMenu':{'menuTitle':{'chart':_0x2bb230(0xa2),'chartTitle':_0x2bb230(0xab),'subtitle':'サブタイトル','axisTitle':_0x2bb230(0xa8),'legend':'凡例','horizontalAxis':'横軸','verticalAxis':'縦軸','rightVerticalAxis':_0x2bb230(0xa1),'gridline':'目盛線','tick':'目盛','mark':_0x2bb230(0x9e),'series':'系列','dataPoint':_0x2bb230(0xbc),'dataLabel':_0x2bb230(0xb5)},'field':{'title':_0x2bb230(0xa6),'subtitle':_0x2bb230(0xb6),'position':'位置','size':_0x2bb230(0xa9),'align':'配置','mode':_0x2bb230(0xba),'map':'マップ','rotate':'回転','min':_0x2bb230(0x9c),'max':_0x2bb230(0xa4),'color':'色','borderColor':_0x2bb230(0xb0),'opacity':_0x2bb230(0xb3),'labelPosition':'ラベルの位置','labelText':'ラベルのテキスト','titleText':'タイトルのテキスト'},'action':{'more':'詳細','bold':'太字','italic':'斜体'},'control':{'labels':_0x2bb230(0xaa),'line':'線','reverse':'反転','date':'日付'},'option':{'textAlign':{'left':'左','center':'中央','right':'右'},'position':{'top':'上','bottom':'下','left':'左','right':'右','hide':_0x2bb230(0xb4),'inside':'内側','outside':'外側'},'labelText':{'category':'項目','value':'値','percentage':_0x2bb230(0xae)},'axisAlign':{'start':'先頭','center':'中央','end':'末尾'},'legendSelectMode':{'single':'単一','multiple':'複数','close':_0x2bb230(0xa0)},'visualMapType':{'continuous':'連続','piecewise':'区分'}}}}};function _0x5c16(_0x47618b,_0x331255){_0x47618b=_0x47618b-0x9b;const _0x1a420d=_0x1a42();let _0x5c1656=_0x1a420d[_0x47618b];return _0x5c1656;}module[_0x2bb230(0x9d)]=e;
|
|
1
|
+
function _0x1c12(){const _0x378f49=['指数関数的','主目盛数','サークル','サンバーストチャート','線の色','近似曲線を追加','R²カラー','最小値','実体の色','コピー','角丸四角形','行を追加','キャンセル','全シリーズ','軸ラベル','バナー','キャンドルの状態','内半径','長方形','非表示','リセット','1541682CwcJtU','カスタマイズ','761223KMWZmj','データポイントを接続する','レーダーグラフ','データを編集','線のスタイル','ヒゲの色','39EDZFMt','行/列を切り替え','白抜きピン','グラフと軸のタイトル','目盛りの位置','終了値','ダイヤモンド','最小角度','目盛りの幅','グリッド線の幅','近似曲線','データ','グラフのスタイル','ラベルの書式設定','カスタム','ビニングモード','値によるノードのサイズ設定','標準形式には、特定の表示形式が含まれていません。','開始角度','多項式','ハート','ツリーマップ','ポリゴン','本文のフォントサイズ','チャート','値のスケール','白抜き三角形','スライス','軸の目盛り','白抜き円','エリアフィル','ライン','主グラフと補助グラフの間隔','ビンの幅','自身の値','データ\x20ポイント','2667coVKrd','ツリーマップには、1\x20つ以上の階層フィールドと\x201\x20つの数値フィールドが必要です。','負の値','ラベルのテキスト','ユーザー設定の分割','グラデーション塗りつぶし','コード図には、異なる\x202\x20つのノード間に正の重みを持つ関係が\x201\x20つ以上必要です。','ノードの形状','パレートグラフ','折れ線グラフ\x20/\x20面グラフ','リニア','Series\x20overlap\x20(%)','重なる','ワードクラウド','データ\x20ラベル','2479587raqnlW','関係図','レーダー形状','塗りつぶしの不透明度','詳細設定','インジケーターラインの種類','モダン','ラベルの回転','Left\x20(%)','数値形式','2yEomNJ','範囲を削除','移動平均','枠線の種類','右縦軸','表示形式の種類','ローソク足','マスク画像ID','ゼロ値を含める','通貨記号','フォーカス','パワー','折れ線グラフ','本文の文字色','中央の合計','位置合わせ','カウント','正方形','累積パーセンテージ系列','7092hHtyvl','タイトルの種類','OHLC\x20系列','Width\x20(%)','枠線の幅','66hsTdHJ','分割基準','グラフの形状','12MINjyY','ミニマル','100%積み上げ','ラベル','カテゴリ','最大値','列の追加','接続線の幅','コード図には異なるソースフィールドとターゲットフィールドが必要です。値フィールドは任意ですが、両者とは異なる必要があります。','小数点以下の桁数','白抜き角丸四角形','単語を繰り返す','レイアウト','補助縦棒グラフ付き円グラフ','ラベルライン','階層の追加','クラウド','ヒートマップ','数式を表示','コード表','ローソク足チャートのデータには、カテゴリ、始値、高値、安値、終値の列が必要です。','正の値','ソース形式','カテゴリ名','箱ひげ図','タイトルのテキスト','目盛りの色','科学的','その他','マップ','エッジの長さ','階層フィールドを削除','インジケーターの線の色','現在のノード','接続線の色','テーマ','テンプレート','タイトル','Explosion\x20(%)','桁区切り','Manual','縦棒グラフ系列','目盛りの長さ','日付の表示形式は、日付と時刻のシリアル値を日付値として表示します。','不透明度','値の単位','ウォーターフォールグラフ','コードダイアグラム','時計回り','細胞ラベル','グラデーション','サンバースト図には、1\x20つ以上の階層フィールドと\x201\x20つの数値フィールドが必要です。','ファネルグラフ','11486076EXIWlY','複合グラフ','サンキーグラフ','会計の表示形式では、通貨記号と小数点を列内で揃えて表示します。','ターゲット','Height\x20(%)','コネクタライン','点の形状','縦棒グラフ','親ラベルのレイアウト','関連付けられた値','ポイントの色','ゼロとして扱う','補助グラフのサイズ','スムーズ','8Vaktpx','ヒゲの不透明度','ステップ','Bar\x20spacing','ゲージ図の設定が無効です。スケール、範囲、比率、サイズを確認してください。','ノード','Plot\x20area','ビン数','グラフを削除','コード図の設定が無効です。角度、半径、不透明度、サイズを確認してください。','コネクター','デフォルトの色','グラフの挿入','クラシック','100%\x20積み上げ面グラフ','凡例をラップする','モード','面グラフ','積み上げ横棒グラフ','絶対値を使用する','背景色','exports','ウォーターフォール図','円グラフ','分割線','階層フィールドを上へ移動','次のパーセンテージ未満','Top\x20(%)','子要素','ドーナツグラフ','積み上げ縦棒グラフ','R²を表示','インラインデータ','ローソク足チャート','目盛範囲','散布図','補助グラフのデータ\x20ポイント数','ゲージ図には、1\x20つ以上の有限な数値が必要です。','枠線の色','ユーザー設定','サイズ','グラフパネルを非表示','Gap\x20width\x20(%)','586225BewiiY','細い針','ビンギャップ','詳細レイアウト','ビジュアルマップ','{0}\x20個のデータ\x20ポイントを選択','ブレークライン','プレビュー','白抜き長方形','目盛線','パーセンテージ','データ範囲','リボン','オーバーフローしきい値','小計を使用する','アイテムギャップ','軸のタイトル','接続線の種類','葉のラベル','シリーズ名','白抜き矢印','バブルグラフ','横軸タイトル','配合色','クラシック針','グラフの種類','範囲を追加','グラフの挿入に失敗しました','ハーフパイ','ラベルを日付として扱う','ペンタゴン','アレンジメント','目盛線と目盛','ゲージチャート','補助円グラフ付き円グラフ','{0}を項目として使用','右縦軸タイトル','積み上げ','ヒストグラム','詳細値の数値形式','トライアングル','相関グラフ','表データが空です。','同時線','Start\x20angle','840250hpkhOA'];_0x1c12=function(){return _0x378f49;};return _0x1c12();}function _0x9eeb(_0x8115ca,_0x3ce947){_0x8115ca=_0x8115ca-0x10d;const _0x1c122c=_0x1c12();let _0x9eebec=_0x1c122c[_0x8115ca];return _0x9eebec;}const _0x2f6999=_0x9eeb;(function(_0x1cf203,_0x3afeed){const _0x1e7696=_0x9eeb,_0x2d3d2d=_0x1cf203();while(!![]){try{const _0x3b500f=-parseInt(_0x1e7696(0x159))/0x1*(parseInt(_0x1e7696(0x19c))/0x2)+-parseInt(_0x1e7696(0x192))/0x3+-parseInt(_0x1e7696(0x1b7))/0x4*(-parseInt(_0x1e7696(0x114))/0x5)+-parseInt(_0x1e7696(0x1af))/0x6*(parseInt(_0x1e7696(0x183))/0x7)+parseInt(_0x1e7696(0x1fb))/0x8*(-parseInt(_0x1e7696(0x157))/0x9)+-parseInt(_0x1e7696(0x141))/0xa*(parseInt(_0x1e7696(0x1b4))/0xb)+-parseInt(_0x1e7696(0x1ec))/0xc*(-parseInt(_0x1e7696(0x15f))/0xd);if(_0x3b500f===_0x3afeed)break;else _0x2d3d2d['push'](_0x2d3d2d['shift']());}catch(_0x89fb87){_0x2d3d2d['push'](_0x2d3d2d['shift']());}}}(_0x1c12,0x7c710));const e={'chart-ui':{'editor':{'defaultColor':_0x2f6999(0x206),'fontSize':'フォントサイズ'},'setup':{'stack':_0x2f6999(0x139),'percentStacked':_0x2f6999(0x1b9)},'chartTypes':{'line':_0x2f6999(0x1a8),'column':_0x2f6999(0x1f4),'columnStacked':_0x2f6999(0x219),'columnPercentStacked':'100%\x20積み上げ縦棒グラフ','bar':'横棒グラフ','barStacked':_0x2f6999(0x20d),'barPercentStacked':'100%\x20積み上げ横棒グラフ','pie':_0x2f6999(0x212),'donut':_0x2f6999(0x218),'pieOfPie':_0x2f6999(0x136),'barOfPie':_0x2f6999(0x1c4),'area':_0x2f6999(0x20c),'areaStacked':'積み上げ面グラフ','areaPercentStacked':_0x2f6999(0x209),'radar':_0x2f6999(0x15b),'scatter':_0x2f6999(0x21e),'combination':_0x2f6999(0x1ed),'wordCloud':_0x2f6999(0x190),'funnel':_0x2f6999(0x1eb),'bubble':_0x2f6999(0x129),'relation':_0x2f6999(0x13d),'waterfall':_0x2f6999(0x1e5),'pareto':_0x2f6999(0x18b),'sankey':_0x2f6999(0x1ee),'heatmap':_0x2f6999(0x1c8),'boxplot':_0x2f6999(0x1cf),'candlestick':_0x2f6999(0x21c),'histogram':_0x2f6999(0x13a),'treemap':_0x2f6999(0x174),'sunburst':_0x2f6999(0x145),'gauge':_0x2f6999(0x135),'chord':_0x2f6999(0x1e6)},'section':{'waterfall':_0x2f6999(0x211),'paretoBar':_0x2f6999(0x1e0),'paretoLine':_0x2f6999(0x1ae),'pie':_0x2f6999(0x212),'wordCloud':_0x2f6999(0x190),'radar':'レーダーチャート','funnel':'じょうごグラフ','relation':_0x2f6999(0x193),'lineAndArea':_0x2f6999(0x18c),'gridlinesAndTicks':_0x2f6999(0x134),'indicatorLine':'指標線','candlestick':_0x2f6999(0x21c),'histogram':'ヒストグラムチャート','treemap':'ツリーマップチャート','sunburst':_0x2f6999(0x145),'gauge':_0x2f6999(0x135),'chord':_0x2f6999(0x1ca)},'presentation':{'backgroundColor':_0x2f6999(0x20f),'theme':_0x2f6999(0x1da),'gradientFill':_0x2f6999(0x188),'bodyFontSize':_0x2f6999(0x176),'bodyFontColor':_0x2f6999(0x1a9),'titleType':_0x2f6999(0x1b0),'horizontalAxisTitle':_0x2f6999(0x12a),'verticalAxisTitle':'縦軸タイトル','rightVerticalAxisTitle':_0x2f6999(0x138),'wrap':_0x2f6999(0x20a),'selectMode':'選択モード','visualMapType':_0x2f6999(0x118),'align':_0x2f6999(0x1ab)},'numberFormat':{'source':_0x2f6999(0x1cd),'number':'番号','scientific':_0x2f6999(0x1d2),'custom':'カスタムフォーマット','preview':_0x2f6999(0x11b),'generalType':'標準','accountingType':'会計','thousandsType':_0x2f6999(0x1de),'formatTypes':_0x2f6999(0x1a1),'generalDesc':_0x2f6999(0x170),'accountingDesc':_0x2f6999(0x1ef),'currencyDesc':'通貨の表示形式は一般的な通貨値に使用され、会計の表示形式は列内の小数点を揃えます。','dateDesc':_0x2f6999(0x1e2),'thousandsDesc':'桁区切りの表示形式は一般的な数値に使用され、通貨と会計の表示形式は通貨値の特殊な表示形式を提供します。','decimalPlaces':_0x2f6999(0x1c0),'currencyTypes':_0x2f6999(0x1a5),'negativeNumberTypes':'負の数の表示形式','dateTypes':'日付の種類','setFormat':_0x2f6999(0x16c)},'series':{'rightAxis':'右軸','allSeries':_0x2f6999(0x14f),'aggregate':'集計','borderOpacity':'枠線の不透明度','solid':'固体','pointShape':_0x2f6999(0x1f3),'pointSize':'ポイントサイズ','pointColor':_0x2f6999(0x1f7),'removeDataPoint':'データ\x20ポイントを削除','square':_0x2f6999(0x1ad),'rect':_0x2f6999(0x154),'roundRect':_0x2f6999(0x14c),'pin':'ピン','emptyCircle':_0x2f6999(0x17c),'emptySquare':'白抜き四角','emptyTriangle':_0x2f6999(0x179),'emptyDiamond':'白抜きひし形','emptyRect':_0x2f6999(0x11c),'emptyRoundRect':_0x2f6999(0x1c1),'emptyPin':_0x2f6999(0x161),'emptyArrow':_0x2f6999(0x128)},'lineAndArea':{'lineStyle':_0x2f6999(0x15d),'line':_0x2f6999(0x17e),'smooth':_0x2f6999(0x1fa),'step':_0x2f6999(0x1fd),'invalidValues':'無効な値','breakLine':_0x2f6999(0x11a),'connect':_0x2f6999(0x15a),'zero':_0x2f6999(0x1f8)},'axis':{'useDateAxis':_0x2f6999(0x131),'target':'軸','lineColor':_0x2f6999(0x146),'lineWidth':'線幅','labelRotation':_0x2f6999(0x199),'reverse':'逆軸','gridlineVisible':'グリッド線','gridlineColor':'グリッド線の色','gridlineWidth':_0x2f6999(0x168),'tickVisible':'ダニ','tickLength':_0x2f6999(0x1e1),'tickWidth':_0x2f6999(0x167),'tickColor':_0x2f6999(0x1d1),'tickPosition':_0x2f6999(0x163)},'indicator':{'lineColor':_0x2f6999(0x1d7),'lineType':_0x2f6999(0x197),'labelBackground':'ラベルの背景','labelText':'ラベルの文字色'},'trendline':{'add':_0x2f6999(0x147),'type':'種類','linear':_0x2f6999(0x18d),'exponential':_0x2f6999(0x142),'logarithmic':'対数','polynomial':_0x2f6999(0x172),'power':_0x2f6999(0x1a7),'movingAverage':_0x2f6999(0x19e),'showFormula':_0x2f6999(0x1c9),'showR2':_0x2f6999(0x21a),'order':'注文','period':'期間','formulaColor':_0x2f6999(0x12b),'r2Color':_0x2f6999(0x148)},'pareto':{'includeZeroValues':_0x2f6999(0x1a4)},'plotArea':{'label':_0x2f6999(0x201),'manual':_0x2f6999(0x1df),'left':_0x2f6999(0x19a),'top':_0x2f6999(0x216),'width':_0x2f6999(0x1b2),'height':_0x2f6999(0x1f1)},'bar':{'layout':_0x2f6999(0x1fe),'gapWidth':_0x2f6999(0x113),'overlap':_0x2f6999(0x18e)},'pie':{'mode':_0x2f6999(0x1b6),'modeNormal':'標準','modePieOfPie':_0x2f6999(0x136),'modeBarOfPie':_0x2f6999(0x1c4),'splitType':_0x2f6999(0x1b5),'splitAuto':'自動','splitPosition':'位置','splitCustom':_0x2f6999(0x110),'customSelectedCount':_0x2f6999(0x187),'customSelectedCountValue':_0x2f6999(0x119),'positionCount':_0x2f6999(0x10d),'valueLessThan':'次の値未満','percentageLessThan':_0x2f6999(0x215),'secondarySize':_0x2f6999(0x1f9),'advancedLayout':_0x2f6999(0x117),'connector':_0x2f6999(0x205),'slices':_0x2f6999(0x17a),'gapWidth':_0x2f6999(0x17f),'connectorColor':_0x2f6999(0x1d9),'connectorWidth':_0x2f6999(0x1be),'connectorType':_0x2f6999(0x125),'aggregateOther':_0x2f6999(0x1d3),'aggregateMembers':'項目','valueScale':_0x2f6999(0x178),'doughnutHole':'ドーナツの穴','startAngle':_0x2f6999(0x140),'explosion':_0x2f6999(0x1dd),'paddingAngle':'スライス間隔','halfPie':_0x2f6999(0x130),'rosePie':'ローズパイ','labelLine':_0x2f6999(0x1c5)},'radar':{'shape':_0x2f6999(0x194),'polygon':_0x2f6999(0x175),'fill':_0x2f6999(0x17d)},'funnel':{'gap':_0x2f6999(0x123),'absoluteValues':_0x2f6999(0x20e)},'heatmap':{'unit':_0x2f6999(0x1e4),'labels':_0x2f6999(0x1e8)},'relation':{'nodes':_0x2f6999(0x200),'interaction':'操作','edgeLength':_0x2f6999(0x1d5),'circular':'円形','force':'力','nodeShape':_0x2f6999(0x18a),'valueSize':_0x2f6999(0x16f),'rotateLabels':'ラベルを回転する','gravity':'重力','repulsion':'反発力'},'wordCloud':{'maskImage':_0x2f6999(0x1a3),'repeat':_0x2f6999(0x1c2),'cloud':_0x2f6999(0x1c7),'rect':'長方形','cardioid':'カーディオイド','heart':_0x2f6999(0x173),'triangle-forward':'前三角','pentagon':_0x2f6999(0x132),'star':'スター'},'waterfall':{'styleTarget':'スタイル対象','positive':_0x2f6999(0x1cc),'negative':_0x2f6999(0x185),'stackType':_0x2f6999(0x133),'arrangement':'滝','subtotal':'小計','includeSubtotal':_0x2f6999(0x122),'connector':_0x2f6999(0x1f2)},'candlestick':{'candle':_0x2f6999(0x1a2),'body':'実体','wick':'ヒゲ','state':_0x2f6999(0x152),'open':'始値','high':'高値','low':'安値','close':'終値','rising':'上昇','falling':'下落','doji':_0x2f6999(0x13f),'bodyColor':_0x2f6999(0x14a),'fillOpacity':_0x2f6999(0x195),'wickColor':_0x2f6999(0x15e),'wickWidth':'ヒゲの幅','wickOpacity':_0x2f6999(0x1fc),'candleWidth':'ローソクの幅','hollow':'中空ローソク','columnsError':_0x2f6999(0x1cb),'series':_0x2f6999(0x1b1)},'histogram':{'binGap':_0x2f6999(0x116),'binningMode':_0x2f6999(0x16e),'count':_0x2f6999(0x1ac),'width':'幅','binCount':_0x2f6999(0x202),'binWidth':_0x2f6999(0x180),'underflow':'アンダーフローしきい値','overflow':_0x2f6999(0x121),'frequency':'度数'},'treemap':{'parentLabelLayout':_0x2f6999(0x1f5),'banner':_0x2f6999(0x151),'overlapping':_0x2f6999(0x18f),'leafLabel':_0x2f6999(0x126),'hierarchy':'階層フィールド','diagnostic':_0x2f6999(0x184)},'sunburst':{'hierarchy':'階層','addHierarchy':_0x2f6999(0x1c6),'moveUp':_0x2f6999(0x214),'moveDown':'階層フィールドを下へ移動','removeHierarchy':_0x2f6999(0x1d6),'centerLabel':_0x2f6999(0x1aa),'labelFormat':'ラベルのスタイル','diagnostic':_0x2f6999(0x1ea)},'gauge':{'scale':_0x2f6999(0x21d),'majorDivisions':_0x2f6999(0x143),'minorDivisions':'主目盛ごとの補助目盛数','angles':'角度','endAngle':'終了角度','ranges':'範囲','rangeFrom':'開始値','rangeTo':_0x2f6999(0x164),'addRange':_0x2f6999(0x12e),'removeRange':_0x2f6999(0x19d),'axisTick':_0x2f6999(0x17b),'splitLine':_0x2f6999(0x213),'pointer':'ポインタ','anchor':'アンカー','progress':'進捗状況','detail':'詳細','pointerNeedle':_0x2f6999(0x12c),'pointerSlim':_0x2f6999(0x115),'template':_0x2f6999(0x1db),'modern':_0x2f6999(0x198),'classic':_0x2f6999(0x208),'minimal':_0x2f6999(0x1b8),'advanced':_0x2f6999(0x196),'customized':_0x2f6999(0x16d),'axisLabelNumberFormat':'軸ラベルの数値形式','detailNumberFormat':_0x2f6999(0x13b),'emptyDiagnostic':_0x2f6999(0x10e),'mappingDiagnostic':'ゲージ図には、1\x20つのラベルフィールドと\x201\x20つの値フィールドが必要です。','configDiagnostic':_0x2f6999(0x1ff)},'chord':{'source':'ソース','target':_0x2f6999(0x1f0),'count':'関係数','node':'ノード','ribbon':_0x2f6999(0x120),'clockwise':_0x2f6999(0x1e7),'padAngle':'間隔角度','minAngle':_0x2f6999(0x166),'innerRadius':_0x2f6999(0x153),'outerRadius':'外半径','invalidRadii':'内側半径は外側半径より小さくなければなりません。','rotation':'回転','distance':'距離','width':'幅','focus':_0x2f6999(0x1a6),'solid':'単色','gradient':_0x2f6999(0x1e9),'adjacency':'隣接ノード','self':_0x2f6999(0x1d8),'emptyDiagnostic':_0x2f6999(0x189),'mappingDiagnostic':_0x2f6999(0x1bf),'configDiagnostic':_0x2f6999(0x204),'associatedValue':_0x2f6999(0x1f6)},'common':{'category':_0x2f6999(0x1bb),'seriesName':_0x2f6999(0x127),'value':'値','percentage':_0x2f6999(0x11e),'borderColor':_0x2f6999(0x10f),'labelContent':'ラベルの内容','labelPosition':'ラベルの位置','dataLabels':'データラベル','chartType':_0x2f6999(0x12d),'bold':'太字','italic':'斜体','shape':'形状','chartStyle':_0x2f6999(0x16b),'chartAndAxisTitles':_0x2f6999(0x162),'legend':'凡例','chartTitle':'グラフのタイトル','subtitle':'サブタイトル','series':'系列','dataPoint':_0x2f6999(0x182),'trendline':_0x2f6999(0x169),'horizontalAxis':'横軸','verticalAxis':'縦軸','rightVerticalAxis':_0x2f6999(0x1a0),'layout':_0x2f6999(0x1c3),'arrow':'矢印','axisLabels':_0x2f6999(0x150),'currency':'通貨','date':'日付','displayName':'表示名','emphasis':'強調','heatmap':'ヒートマップ','lineColor':_0x2f6999(0x146),'lineWidth':'線幅','min':_0x2f6999(0x149),'max':_0x2f6999(0x1bc),'mode':_0x2f6999(0x20b),'stacked':_0x2f6999(0x139),'title':_0x2f6999(0x1dc),'auto':'自動','position':{'label':'位置','inside':'内側','outside':'外側','top':'上','right':'右','bottom':'下','left':'左','hide':_0x2f6999(0x155)},'axisAlign':{'start':'先頭','center':'中央','end':'末尾'},'textAlign':{'left':'左','center':'中央','right':'右'},'legendSelectMode':{'single':'単一','multiple':'複数','disabled':'無効'},'visualMapType':{'continuous':'連続','piecewise':'区分'},'default':'デフォルト','reset':_0x2f6999(0x156),'color':'色','opacity':_0x2f6999(0x1e3),'font':'フォント','none':'なし','numberFormat':_0x2f6999(0x19b),'borderWidth':_0x2f6999(0x1b3),'borderType':_0x2f6999(0x19f),'lineType':'線種','dashed':'破線','dotted':'点線','circle':_0x2f6999(0x144),'triangle':_0x2f6999(0x13c),'diamond':_0x2f6999(0x165),'axisLine':'軸線','minimum':_0x2f6999(0x149),'maximum':_0x2f6999(0x1bc),'startAngle':_0x2f6999(0x171),'valueField':'値フィールド','categoryName':_0x2f6999(0x1ce),'ownValue':_0x2f6999(0x181),'children':_0x2f6999(0x217),'label':_0x2f6999(0x1ba),'editChart':'グラフエディター','deleteChart':_0x2f6999(0x203),'insertChart':_0x2f6999(0x207),'insertChartFailed':_0x2f6999(0x12f),'openChartPanel':'グラフパネルを開く','hideChartPanel':_0x2f6999(0x112),'exportImage':'画像としてエクスポート','copy':_0x2f6999(0x14b),'setup':'設定','customize':_0x2f6999(0x158),'data':_0x2f6999(0x16a),'tableDataEmpty':_0x2f6999(0x13e),'dataRange':_0x2f6999(0x11f),'editData':_0x2f6999(0x15c),'inlineData':_0x2f6999(0x21b),'switchRowColumn':_0x2f6999(0x160),'useAsCategoryLabels':_0x2f6999(0x137),'cancel':_0x2f6999(0x14e),'insert':'挿入','apply':'適用','duplicate':'複製'},'inlineTable':{'pasteHint':'スプレッドシート、Excel、またはウェブページから表を貼り付けて、インライン\x20データを置き換えます。','addRow':_0x2f6999(0x14d),'addColumn':_0x2f6999(0x1bd)},'floatMenu':{'menuTitle':{'chart':_0x2f6999(0x177),'axisTitle':_0x2f6999(0x124),'gridline':_0x2f6999(0x11d),'tick':'目盛','mark':'インジケーター','dataLabel':_0x2f6999(0x191)},'field':{'position':'位置','size':_0x2f6999(0x111),'align':'配置','map':_0x2f6999(0x1d4),'rotate':'回転','labelText':_0x2f6999(0x186),'titleText':_0x2f6999(0x1d0)},'action':{'more':'詳細'},'control':{'labels':_0x2f6999(0x1ba),'line':'線','reverse':'反転'}}}};module[_0x2f6999(0x210)]=e;
|
package/lib/cjs/locale/ko-KR.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const _0x370d8c=_0x3e20;function _0x3b46(){const _0x40eacb=['188RpireE','가운데','최소값','2151FNxjnD','7648OBRzly','기본값','데이터\x20요소','바깥쪽','숨기기','오른쪽','레이블\x20텍스트','열\x20추가','데이터\x20레이블','차트\x20제목','여기에\x20데이터를\x20복사하여\x20붙여넣기','3571550uHLRsP','exports','2uIiBYX','세로\x20축','7285487trCRYR','제목\x20텍스트','최대값','보조\x20세로\x20축','부제목','레이블','794860aTqCNz','2427171pntwaJ','불투명도','26305TYJIYd','12pYLEHP','기울임꼴','250502sEsGvt'];_0x3b46=function(){return _0x40eacb;};return _0x3b46();}(function(_0x444a6a,_0x4d6381){const _0x2b73d9=_0x3e20,_0x36c97c=_0x444a6a();while(!![]){try{const _0xb7a4a1=parseInt(_0x2b73d9(0xed))/0x1+-parseInt(_0x2b73d9(0xe5))/0x2*(-parseInt(_0x2b73d9(0xee))/0x3)+parseInt(_0x2b73d9(0xd4))/0x4*(parseInt(_0x2b73d9(0xf0))/0x5)+-parseInt(_0x2b73d9(0xf1))/0x6*(parseInt(_0x2b73d9(0xd3))/0x7)+parseInt(_0x2b73d9(0xd8))/0x8*(-parseInt(_0x2b73d9(0xd7))/0x9)+-parseInt(_0x2b73d9(0xe3))/0xa+-parseInt(_0x2b73d9(0xe7))/0xb;if(_0xb7a4a1===_0x4d6381)break;else _0x36c97c['push'](_0x36c97c['shift']());}catch(_0x562420){_0x36c97c['push'](_0x36c97c['shift']());}}}(_0x3b46,0x81cc8));const e={'chart-ui':{'common':{'default':_0x370d8c(0xd9),'reset':'재설정'},'presentation':{'wrapLegend':'범례\x20줄\x20바꿈'},'inlineTable':{'pasteHint':_0x370d8c(0xe2),'addRow':'행\x20추가','addColumn':_0x370d8c(0xdf)},'floatMenu':{'menuTitle':{'chart':'차트','chartTitle':_0x370d8c(0xe1),'subtitle':_0x370d8c(0xeb),'axisTitle':'축\x20제목','legend':'범례','horizontalAxis':'가로\x20축','verticalAxis':_0x370d8c(0xe6),'rightVerticalAxis':_0x370d8c(0xea),'gridline':'눈금선','tick':'눈금','mark':'표식','series':'계열','dataPoint':_0x370d8c(0xda),'dataLabel':_0x370d8c(0xe0)},'field':{'title':'제목','subtitle':'부제목','position':'위치','size':'크기','align':'맞춤','mode':'모드','map':'맵','rotate':'회전','min':_0x370d8c(0xd6),'max':_0x370d8c(0xe9),'color':'색','borderColor':'테두리\x20색','opacity':_0x370d8c(0xef),'labelPosition':'레이블\x20위치','labelText':_0x370d8c(0xde),'titleText':_0x370d8c(0xe8)},'action':{'more':'더\x20보기','bold':'굵게','italic':_0x370d8c(0xd2)},'control':{'labels':_0x370d8c(0xec),'line':'선','reverse':'반전','date':'날짜'},'option':{'textAlign':{'left':'왼쪽','center':_0x370d8c(0xd5),'right':'오른쪽'},'position':{'top':'위','bottom':'아래','left':'왼쪽','right':_0x370d8c(0xdd),'hide':_0x370d8c(0xdc),'inside':'안쪽','outside':_0x370d8c(0xdb)},'labelText':{'category':'항목','value':'값','percentage':'백분율'},'axisAlign':{'start':'시작','center':_0x370d8c(0xd5),'end':'끝'},'legendSelectMode':{'single':'단일','multiple':'다중','close':'닫기'},'visualMapType':{'continuous':'연속','piecewise':'구분'}}}}};function _0x3e20(_0x3f0d20,_0x41b711){_0x3f0d20=_0x3f0d20-0xd2;const _0x3b4644=_0x3b46();let _0x3e201f=_0x3b4644[_0x3f0d20];return _0x3e201f;}module[_0x370d8c(0xe4)]=e;
|
|
1
|
+
const _0x16a936=_0x4bc0;(function(_0x517127,_0x2b06e1){const _0x62f68b=_0x4bc0,_0x12b145=_0x517127();while(!![]){try{const _0x11d352=parseInt(_0x62f68b(0x22e))/0x1+-parseInt(_0x62f68b(0x296))/0x2+-parseInt(_0x62f68b(0x26e))/0x3*(-parseInt(_0x62f68b(0x259))/0x4)+-parseInt(_0x62f68b(0x272))/0x5+parseInt(_0x62f68b(0x2a8))/0x6+parseInt(_0x62f68b(0x280))/0x7+-parseInt(_0x62f68b(0x28a))/0x8;if(_0x11d352===_0x2b06e1)break;else _0x12b145['push'](_0x12b145['shift']());}catch(_0x2d37b2){_0x12b145['push'](_0x12b145['shift']());}}}(_0x4169,0x9b673));const e={'chart-ui':{'editor':{'defaultColor':'기본\x20색상','fontSize':_0x16a936(0x213)},'setup':{'stack':'누적','percentStacked':_0x16a936(0x2d2)},'chartTypes':{'line':_0x16a936(0x2cc),'column':_0x16a936(0x1f3),'columnStacked':_0x16a936(0x26f),'columnPercentStacked':'100%\x20기준\x20누적\x20·\x20세로\x20막대형','bar':_0x16a936(0x25c),'barStacked':_0x16a936(0x1f4),'barPercentStacked':_0x16a936(0x28e),'pie':'원형','donut':_0x16a936(0x2cd),'pieOfPie':_0x16a936(0x245),'barOfPie':'보조\x20막대\x20차트가\x20있는\x20원형\x20차트','area':'영역형','areaStacked':_0x16a936(0x286),'areaPercentStacked':'100%\x20기준\x20누적\x20영역형','radar':_0x16a936(0x254),'scatter':_0x16a936(0x255),'combination':'혼합','wordCloud':_0x16a936(0x1fb),'funnel':_0x16a936(0x25a),'bubble':_0x16a936(0x1fd),'relation':'관계형','waterfall':_0x16a936(0x270),'pareto':_0x16a936(0x1f9),'sankey':'생키','heatmap':'히트맵','boxplot':'상자\x20수염\x20그림','candlestick':'캔들스틱\x20차트','histogram':_0x16a936(0x1f1),'treemap':_0x16a936(0x28f),'sunburst':_0x16a936(0x295),'gauge':_0x16a936(0x208),'chord':_0x16a936(0x258)},'section':{'waterfall':_0x16a936(0x270),'paretoBar':_0x16a936(0x248),'paretoLine':_0x16a936(0x21b),'pie':'원형','wordCloud':_0x16a936(0x1fb),'radar':'방사형','funnel':_0x16a936(0x25a),'relation':'관계형','lineAndArea':_0x16a936(0x268),'gridlinesAndTicks':'눈금선\x20및\x20눈금','indicatorLine':_0x16a936(0x266),'candlestick':_0x16a936(0x264),'histogram':_0x16a936(0x288),'treemap':_0x16a936(0x2a7),'sunburst':_0x16a936(0x295),'gauge':_0x16a936(0x208),'chord':_0x16a936(0x20f)},'presentation':{'backgroundColor':_0x16a936(0x1ea),'theme':'테마','gradientFill':_0x16a936(0x223),'bodyFontSize':_0x16a936(0x257),'bodyFontColor':'본문\x20글꼴\x20색상','titleType':_0x16a936(0x249),'horizontalAxisTitle':'가로축\x20제목','verticalAxisTitle':_0x16a936(0x2a0),'rightVerticalAxisTitle':_0x16a936(0x2ba),'wrap':_0x16a936(0x299),'selectMode':_0x16a936(0x1eb),'visualMapType':_0x16a936(0x275),'align':'정렬'},'numberFormat':{'source':'소스\x20형식','number':'번호','scientific':_0x16a936(0x240),'custom':_0x16a936(0x261),'preview':'미리보기','generalType':'일반','accountingType':'회계','thousandsType':_0x16a936(0x269),'formatTypes':_0x16a936(0x2a6),'generalDesc':_0x16a936(0x202),'accountingDesc':_0x16a936(0x1e8),'currencyDesc':_0x16a936(0x216),'dateDesc':'날짜\x20서식은\x20날짜\x20및\x20시간\x20일련\x20번호를\x20날짜\x20값으로\x20표시합니다.','thousandsDesc':_0x16a936(0x224),'decimalPlaces':_0x16a936(0x23b),'currencyTypes':_0x16a936(0x234),'negativeNumberTypes':'음수','dateTypes':_0x16a936(0x2c2),'setFormat':_0x16a936(0x23e)},'series':{'rightAxis':_0x16a936(0x2be),'allSeries':_0x16a936(0x262),'aggregate':'집계','borderOpacity':_0x16a936(0x226),'solid':_0x16a936(0x2b6),'pointShape':_0x16a936(0x1fc),'pointSize':_0x16a936(0x1f7),'pointColor':'포인트\x20색상','removeDataPoint':'데이터\x20요소\x20제거','square':'광장','rect':_0x16a936(0x29f),'roundRect':_0x16a936(0x242),'pin':'핀','emptyCircle':_0x16a936(0x235),'emptySquare':_0x16a936(0x252),'emptyTriangle':_0x16a936(0x265),'emptyDiamond':'빈\x20다이아몬드','emptyRect':_0x16a936(0x283),'emptyRoundRect':_0x16a936(0x24c),'emptyPin':_0x16a936(0x231),'emptyArrow':_0x16a936(0x25b)},'lineAndArea':{'lineStyle':_0x16a936(0x2cf),'line':'라인','smooth':_0x16a936(0x26a),'step':'단계','invalidValues':_0x16a936(0x2d3),'breakLine':_0x16a936(0x29a),'connect':_0x16a936(0x260),'zero':'0으로\x20취급'},'axis':{'useDateAxis':'레이블을\x20날짜로\x20처리','target':'축','lineColor':'선\x20색상','lineWidth':_0x16a936(0x24f),'labelRotation':_0x16a936(0x20b),'reverse':'역축','gridlineVisible':_0x16a936(0x27b),'gridlineColor':'격자선\x20색상','gridlineWidth':_0x16a936(0x25d),'tickVisible':_0x16a936(0x293),'tickLength':'눈금\x20길이','tickWidth':_0x16a936(0x1ef),'tickColor':_0x16a936(0x2d9),'tickPosition':_0x16a936(0x29d)},'indicator':{'lineColor':_0x16a936(0x278),'lineType':_0x16a936(0x2ce),'labelBackground':_0x16a936(0x214),'labelText':'라벨\x20텍스트\x20색상'},'trendline':{'add':_0x16a936(0x267),'type':'유형','linear':'선형','exponential':'지수','logarithmic':'대수','polynomial':_0x16a936(0x287),'power':'힘','movingAverage':_0x16a936(0x2db),'showFormula':_0x16a936(0x207),'showR2':_0x16a936(0x20a),'order':'주문','period':'기간','formulaColor':_0x16a936(0x204),'r2Color':_0x16a936(0x297)},'pareto':{'includeZeroValues':'0\x20값\x20포함'},'plotArea':{'label':_0x16a936(0x28c),'manual':_0x16a936(0x279),'left':'Left\x20(%)','top':_0x16a936(0x290),'width':'Width\x20(%)','height':_0x16a936(0x294)},'bar':{'layout':_0x16a936(0x29b),'gapWidth':_0x16a936(0x243),'overlap':_0x16a936(0x233)},'pie':{'mode':_0x16a936(0x26c),'modeNormal':'기본','modePieOfPie':_0x16a936(0x2d1),'modeBarOfPie':_0x16a936(0x2ab),'splitType':_0x16a936(0x2a2),'splitAuto':'자동','splitPosition':'위치','splitCustom':_0x16a936(0x292),'customSelectedCount':_0x16a936(0x2c7),'customSelectedCountValue':'{0}개\x20데이터\x20요소\x20선택됨','positionCount':_0x16a936(0x25f),'valueLessThan':'값이\x20다음보다\x20작음','percentageLessThan':_0x16a936(0x200),'secondarySize':_0x16a936(0x2b9),'advancedLayout':_0x16a936(0x27c),'connector':'연결선','slices':'조각','gapWidth':_0x16a936(0x21d),'connectorColor':_0x16a936(0x2da),'connectorWidth':_0x16a936(0x2d5),'connectorType':'연결선\x20종류','aggregateOther':'기타','aggregateMembers':'항목','valueScale':'값\x20배율','doughnutHole':_0x16a936(0x2aa),'startAngle':_0x16a936(0x221),'explosion':_0x16a936(0x203),'paddingAngle':_0x16a936(0x229),'halfPie':_0x16a936(0x2b7),'rosePie':'로즈파이','labelLine':_0x16a936(0x2bf)},'radar':{'shape':_0x16a936(0x2c8),'polygon':_0x16a936(0x2c4),'fill':_0x16a936(0x29c)},'funnel':{'gap':'아이템\x20격차','absoluteValues':_0x16a936(0x2b1)},'heatmap':{'unit':_0x16a936(0x244),'labels':_0x16a936(0x2ad)},'relation':{'nodes':'노드','interaction':_0x16a936(0x2af),'edgeLength':'연결선\x20길이','circular':'원형','force':'힘','nodeShape':'노드\x20모양','valueSize':_0x16a936(0x25e),'rotateLabels':_0x16a936(0x20b),'gravity':'중력','repulsion':_0x16a936(0x22a)},'wordCloud':{'maskImage':_0x16a936(0x291),'repeat':_0x16a936(0x2bc),'cloud':'클라우드','rect':_0x16a936(0x29f),'cardioid':_0x16a936(0x2b8),'heart':'하트','triangle-forward':_0x16a936(0x218),'pentagon':'펜타곤','star':'스타'},'waterfall':{'styleTarget':_0x16a936(0x241),'positive':'양수','negative':'음수','stackType':'배열','arrangement':'폭포','subtotal':_0x16a936(0x253),'includeSubtotal':_0x16a936(0x256),'connector':_0x16a936(0x1e9)},'candlestick':{'candle':'캔들','body':'몸통','wick':'꼬리','state':_0x16a936(0x27f),'open':'시가','high':'고가','low':'저가','close':'종가','rising':'상승','falling':'하락','doji':'도지','bodyColor':'몸통\x20색상','fillOpacity':_0x16a936(0x2b0),'wickColor':_0x16a936(0x23c),'wickWidth':_0x16a936(0x219),'wickOpacity':_0x16a936(0x281),'candleWidth':'캔들\x20너비','hollow':_0x16a936(0x206),'columnsError':_0x16a936(0x26d),'series':_0x16a936(0x232)},'histogram':{'binGap':_0x16a936(0x284),'binningMode':_0x16a936(0x20e),'count':'개수','width':'폭','binCount':'빈\x20개수','binWidth':_0x16a936(0x22d),'underflow':_0x16a936(0x26b),'overflow':_0x16a936(0x2a3),'frequency':'도수'},'treemap':{'parentLabelLayout':_0x16a936(0x1fa),'banner':'배너','overlapping':_0x16a936(0x28b),'leafLabel':_0x16a936(0x21f),'hierarchy':'계층\x20필드','diagnostic':_0x16a936(0x2c6)},'sunburst':{'hierarchy':'계층','addHierarchy':_0x16a936(0x1fe),'moveUp':'계층\x20필드를\x20위로\x20이동','moveDown':_0x16a936(0x2bb),'removeHierarchy':_0x16a936(0x28d),'centerLabel':'중앙\x20합계','labelFormat':_0x16a936(0x228),'diagnostic':'선버스트\x20차트에는\x20하나\x20이상의\x20계층\x20필드와\x20하나의\x20숫자\x20값\x20필드가\x20필요합니다.'},'gauge':{'scale':_0x16a936(0x215),'majorDivisions':'주\x20눈금\x20수','minorDivisions':_0x16a936(0x2c9),'angles':'각도','endAngle':'끝\x20각도','ranges':'범위','rangeFrom':_0x16a936(0x2b2),'rangeTo':_0x16a936(0x2dc),'addRange':_0x16a936(0x246),'removeRange':_0x16a936(0x211),'axisTick':_0x16a936(0x2cb),'splitLine':_0x16a936(0x1f2),'pointer':_0x16a936(0x1ec),'anchor':'앵커','progress':_0x16a936(0x2c0),'detail':_0x16a936(0x1f8),'pointerNeedle':'클래식\x20바늘','pointerSlim':_0x16a936(0x1ff),'template':_0x16a936(0x2d7),'modern':_0x16a936(0x237),'classic':_0x16a936(0x210),'minimal':'미니멀','advanced':_0x16a936(0x220),'customized':_0x16a936(0x292),'axisLabelNumberFormat':'축\x20레이블\x20숫자\x20형식','detailNumberFormat':'상세\x20값\x20숫자\x20형식','emptyDiagnostic':_0x16a936(0x1f6),'mappingDiagnostic':_0x16a936(0x1ed),'configDiagnostic':_0x16a936(0x2a5)},'chord':{'source':'소스','target':'대상','count':_0x16a936(0x24d),'node':'노드','ribbon':'리본','clockwise':_0x16a936(0x23f),'padAngle':_0x16a936(0x276),'minAngle':'최소\x20각도','innerRadius':'내부\x20반경','outerRadius':_0x16a936(0x2d4),'invalidRadii':_0x16a936(0x20c),'rotation':'회전','distance':'거리','width':'폭','focus':'초점','solid':'단색','gradient':_0x16a936(0x201),'adjacency':_0x16a936(0x2b5),'self':_0x16a936(0x20d),'emptyDiagnostic':_0x16a936(0x205),'mappingDiagnostic':_0x16a936(0x24b),'configDiagnostic':_0x16a936(0x24e),'associatedValue':'연결된\x20값'},'common':{'category':_0x16a936(0x239),'seriesName':_0x16a936(0x298),'value':'값','percentage':'백분율','borderColor':'테두리\x20색상','labelContent':_0x16a936(0x212),'labelPosition':_0x16a936(0x21c),'dataLabels':_0x16a936(0x27a),'chartType':_0x16a936(0x1f0),'bold':'굵게','italic':_0x16a936(0x2bd),'shape':'모양','chartStyle':_0x16a936(0x2ca),'chartAndAxisTitles':_0x16a936(0x2d6),'legend':'범례','chartTitle':_0x16a936(0x230),'subtitle':'부제','series':'계열','dataPoint':'데이터\x20포인트','trendline':_0x16a936(0x225),'horizontalAxis':'가로축','verticalAxis':_0x16a936(0x23a),'rightVerticalAxis':_0x16a936(0x209),'layout':_0x16a936(0x2c5),'arrow':_0x16a936(0x22b),'axisLabels':'축\x20레이블','currency':'통화','date':'날짜','displayName':_0x16a936(0x289),'emphasis':'강조','heatmap':_0x16a936(0x227),'lineColor':_0x16a936(0x2ac),'lineWidth':'선\x20너비','min':_0x16a936(0x2ae),'max':'최댓값','mode':'모드','stacked':'누적','title':'제목','auto':'자동','position':{'label':'위치','inside':'내부','outside':'외부','top':'위','right':_0x16a936(0x238),'bottom':'아래','left':'왼쪽','hide':_0x16a936(0x21e)},'axisAlign':{'start':'시작','center':_0x16a936(0x2a1),'end':'끝'},'textAlign':{'left':'왼쪽','center':'가운데','right':'오른쪽'},'legendSelectMode':{'single':'단일','multiple':'다중','disabled':_0x16a936(0x222)},'visualMapType':{'continuous':'연속','piecewise':'구분'},'default':'기본값','reset':_0x16a936(0x24a),'color':'색상','opacity':_0x16a936(0x271),'font':'글꼴','none':'없음','numberFormat':_0x16a936(0x2a4),'borderWidth':_0x16a936(0x263),'borderType':_0x16a936(0x2b3),'lineType':_0x16a936(0x2d8),'dashed':'점선','dotted':'점선','circle':'서클','triangle':'삼각형','diamond':_0x16a936(0x273),'axisLine':'축선','minimum':'최소','maximum':'최대','startAngle':_0x16a936(0x2c1),'valueField':'값\x20필드','categoryName':_0x16a936(0x21a),'ownValue':_0x16a936(0x277),'children':'하위\x20요소','label':'라벨','editChart':_0x16a936(0x285),'deleteChart':_0x16a936(0x2a9),'insertChart':_0x16a936(0x274),'insertChartFailed':_0x16a936(0x250),'openChartPanel':_0x16a936(0x27d),'hideChartPanel':'차트\x20패널\x20숨기기','exportImage':_0x16a936(0x2b4),'copy':'복사','setup':'설정','customize':'사용자\x20지정','data':_0x16a936(0x217),'tableDataEmpty':'테이블\x20데이터가\x20비어\x20있습니다','dataRange':_0x16a936(0x23d),'editData':_0x16a936(0x251),'inlineData':'인라인\x20데이터','switchRowColumn':_0x16a936(0x22f),'useAsCategoryLabels':_0x16a936(0x29e),'cancel':'취소','insert':'삽입','apply':'적용','duplicate':'복제'},'inlineTable':{'pasteHint':_0x16a936(0x1f5),'addRow':_0x16a936(0x1ee),'addColumn':_0x16a936(0x22c)},'floatMenu':{'menuTitle':{'chart':'차트','axisTitle':_0x16a936(0x282),'gridline':'눈금선','tick':'눈금','mark':'표식','dataLabel':_0x16a936(0x2d0)},'field':{'position':'위치','size':'크기','align':'맞춤','map':'맵','rotate':'회전','labelText':'레이블\x20텍스트','titleText':_0x16a936(0x27e)},'action':{'more':_0x16a936(0x2c3)},'control':{'labels':_0x16a936(0x247),'line':'선','reverse':'반전'}}}};function _0x4bc0(_0x3f1162,_0x959284){_0x3f1162=_0x3f1162-0x1e8;const _0x416997=_0x4169();let _0x4bc0f6=_0x416997[_0x3f1162];return _0x4bc0f6;}function _0x4169(){const _0x14af81=['눈금\x20색상','연결선\x20색','이동\x20평균','종료값','회계\x20서식은\x20열의\x20통화\x20기호와\x20소수점을\x20정렬합니다.','커넥터\x20라인','배경색','선택\x20모드','포인터','게이지\x20차트에는\x20레이블\x20필드\x20하나와\x20값\x20필드\x20하나가\x20필요합니다.','행\x20추가','눈금\x20폭','차트\x20종류','히스토그램','구분선','세로\x20막대형','누적\x20가로\x20막대형','인라인\x20데이터를\x20대체하려면\x20스프레드시트,\x20Excel\x20또는\x20웹페이지의\x20표를\x20붙여넣으세요.','게이지\x20차트에는\x20하나\x20이상의\x20유한한\x20숫자\x20값이\x20필요합니다.','포인트\x20크기','세부정보','파레토','상위\x20라벨\x20레이아웃','워드\x20클라우드','점\x20모양','거품형','계층\x20추가','가는\x20바늘','백분율이\x20다음보다\x20작음','그라데이션','일반\x20서식은\x20특정\x20숫자\x20서식을\x20지정하지\x20않습니다.','Explosion\x20(%)','공식\x20색상','코드\x20다이어그램에는\x20서로\x20다른\x20두\x20노드\x20사이에\x20양의\x20가중치를\x20가진\x20관계가\x20하나\x20이상\x20필요합니다.','빈\x20캔들','수식\x20표시','게이지\x20차트','오른쪽\x20세로축','R²\x20표시','라벨\x20회전','내부\x20반경은\x20외부\x20반경보다\x20작아야\x20합니다.','현재\x20노드','비닝\x20모드','코드\x20차트','클래식','범위\x20삭제','레이블\x20내용','글꼴\x20크기','라벨\x20배경','눈금\x20범위','통화\x20서식은\x20일반적인\x20통화\x20값에\x20사용됩니다.\x20열의\x20소수점을\x20정렬하려면\x20회계\x20서식을\x20사용하십시오.','데이터','전방\x20삼각형','꼬리\x20너비','카테고리\x20이름','누적\x20백분율\x20계열','라벨\x20위치','주\x20차트와\x20보조\x20차트\x20간격','숨기기','잎\x20라벨','고급\x20설정','Start\x20angle','사용\x20안\x20함','그라데이션\x20채우기','천\x20단위\x20구분\x20기호\x20서식은\x20일반적인\x20숫자에\x20사용됩니다.\x20통화\x20및\x20회계\x20서식은\x20통화\x20값에\x20대한\x20특수\x20서식을\x20제공합니다.','추세선','테두리\x20불투명도','히트맵','라벨\x20스타일','슬라이스\x20간격','반발력','화살표','열\x20추가','빈\x20너비','213114cHtYZR','행/열\x20전환','차트\x20제목','빈\x20핀','OHLC\x20계열','Series\x20overlap\x20(%)','통화\x20기호','빈\x20원','exports','현대식','오른쪽','카테고리','세로축','소수\x20자릿수','꼬리\x20색상','데이터\x20범위','레이블\x20서식\x20설정','시계방향','과학적','스타일\x20대상','둥근\x20모서리\x20직사각형','Gap\x20width\x20(%)','가치\x20단위','보조\x20원형\x20차트가\x20있는\x20원형\x20차트','범위\x20추가','레이블','세로\x20막대형\x20계열','제목\x20유형','재설정','코드\x20다이어그램에는\x20서로\x20다른\x20원본\x20및\x20대상\x20필드가\x20필요하며,\x20선택적\x20값\x20필드도\x20이들과\x20달라야\x20합니다.','빈\x20둥근\x20모서리\x20직사각형','관계\x20수','코드\x20다이어그램\x20구성이\x20올바르지\x20않습니다.\x20각도,\x20반지름,\x20불투명도\x20및\x20크기를\x20확인하세요.','선\x20너비','차트\x20삽입\x20실패','데이터\x20편집','빈\x20사각형','부분합','방사형','분산형','소계\x20사용','본문\x20글꼴\x20크기','코드\x20다이어그램','28czGyzi','깔때기형','빈\x20화살표','가로\x20막대형','격자선\x20너비','값으로\x20노드\x20크기\x20조정','보조\x20차트\x20데이터\x20요소\x20수','데이터\x20포인트\x20연결','맞춤\x20형식','모든\x20시리즈','테두리\x20너비','촛대\x20차트','빈\x20삼각형','지표\x20선','추세선\x20추가','꺾은선형\x20/\x20영역형','천\x20단위\x20구분\x20기호','부드러운','언더플로\x20임계값','차트\x20모양','캔들스틱\x20차트\x20데이터에는\x20범주,\x20시가,\x20고가,\x20저가,\x20종가\x20열이\x20필요합니다.','267642LFAuHr','누적\x20·\x20세로\x20막대형','폭포형','불투명도','420755cBkfLd','다이아몬드','차트\x20삽입','시각적\x20지도','간격\x20각도','자체\x20값','표시선\x20색상','Manual','데이터\x20라벨','격자선','고급\x20레이아웃','차트\x20패널\x20열기','제목\x20텍스트','캔들\x20상태','888202MKJsjU','꼬리\x20불투명도','축\x20제목','빈\x20직사각형','빈\x20갭','차트\x20편집','누적\x20영역형','다항식','히스토그램\x20차트','표시\x20이름','1246408FiyrZJ','겹치는','Plot\x20area','계층\x20필드\x20제거','100%\x20기준\x20누적\x20가로\x20막대형','트리맵','Top\x20(%)','마스크\x20이미지\x20ID','사용자\x20지정','진드기','Height\x20(%)','선버스트\x20차트','297638RBnHWO','R²\x20색상','시리즈명','랩\x20범례','브레이크\x20라인','Bar\x20spacing','영역\x20채우기','진드기\x20위치','{0}을(를)\x20항목으로\x20사용','직사각형','세로축\x20제목','가운데','분할\x20기준','오버플로\x20임계값','숫자\x20형식','게이지\x20차트\x20구성이\x20올바르지\x20않습니다.\x20눈금,\x20범위,\x20비율\x20및\x20크기를\x20확인하세요.','표시\x20형식\x20범주','트리맵\x20차트','364824dLNIyZ','차트\x20삭제','도넛\x20구멍','보조\x20막대\x20차트','선\x20색상','셀\x20라벨','최솟값','상호\x20작용','불투명도\x20채우기','절대값\x20사용','시작값','테두리\x20유형','이미지로\x20내보내기','인접\x20노드','솔리드','하프파이','카디오이드','보조\x20차트\x20크기','오른쪽\x20세로축\x20제목','계층\x20필드를\x20아래로\x20이동','단어\x20반복','기울임꼴','오른쪽\x20축','라벨라인','진행률','시작\x20각도','날짜\x20형식','더\x20보기','다각형','레이아웃','트리맵\x20차트에는\x20하나\x20이상의\x20계층\x20필드와\x20하나의\x20숫자\x20값\x20필드가\x20필요합니다.','사용자\x20지정\x20분할','레이더\x20모양','주\x20눈금당\x20보조\x20눈금\x20수','차트\x20스타일','눈금선','꺾은선형','도넛형','표시선\x20유형','선\x20스타일','데이터\x20레이블','보조\x20원형\x20차트','100%\x20기준\x20누적','잘못된\x20값','외부\x20반경','연결선\x20너비','차트\x20및\x20축\x20제목','템플릿','선\x20종류'];_0x4169=function(){return _0x14af81;};return _0x4169();}module[_0x16a936(0x236)]=e;
|
package/lib/cjs/locale/pl-PL.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const _0x293ab2=_0x25ce;function _0x5ab3(){const _0x350f22=['Podtytuł','15899wZlkub','Zamknij','Tytuł\x20osi','287TtcANF','Prawo','Wewnątrz','Pozycja','5218917JzMdSs','540075TaXjGn','Więcej','Oś\x20pozioma','543430yIIiiB','Dół','Maks','Pozycja\x20etykiety','15882RqnxlK','637974bwiVky','Skopiuj\x20i\x20wklej\x20dane\x20tutaj','Pogrubienie','Wielokrotny','116CYTBMv','8ljJneX','Rozmiar','Lewo','Środek','Obróć','Wyrównaj','Wykres','10eTNFiU','8PPvXWj','Tytuł\x20wykresu','Ukryj','Mapa','Znacznik','Kategoria','Góra','944tnparX','Linia\x20siatki','Procent','Początek','Wartość','3096TxqYQG','Kolor\x20obramowania','Tryb','Odcinkowy','Kursywa','Na\x20zewnątrz','Zawijaj\x20legendę','Tekst\x20etykiety','Kolor','Domyślny','Ciągły','Prawa\x20oś\x20pionowa','Tekst\x20tytułu'];_0x5ab3=function(){return _0x350f22;};return _0x5ab3();}(function(_0x14ee3b,_0x1eec7e){const _0x21881a=_0x25ce,_0x2706ca=_0x14ee3b();while(!![]){try{const _0x2007d2=-parseInt(_0x21881a(0x1fc))/0x1*(-parseInt(_0x21881a(0x20c))/0x2)+-parseInt(_0x21881a(0x1f0))/0x3+parseInt(_0x21881a(0x1fd))/0x4*(-parseInt(_0x21881a(0x1f3))/0x5)+-parseInt(_0x21881a(0x1f7))/0x6*(parseInt(_0x21881a(0x1eb))/0x7)+parseInt(_0x21881a(0x205))/0x8*(-parseInt(_0x21881a(0x1f8))/0x9)+parseInt(_0x21881a(0x204))/0xa*(parseInt(_0x21881a(0x1ef))/0xb)+parseInt(_0x21881a(0x211))/0xc*(parseInt(_0x21881a(0x1e8))/0xd);if(_0x2007d2===_0x1eec7e)break;else _0x2706ca['push'](_0x2706ca['shift']());}catch(_0x2fa7aa){_0x2706ca['push'](_0x2706ca['shift']());}}}(_0x5ab3,0x41693));function _0x25ce(_0xc6f1cb,_0x1453da){_0xc6f1cb=_0xc6f1cb-0x1e6;const _0x5ab384=_0x5ab3();let _0x25ce2d=_0x5ab384[_0xc6f1cb];return _0x25ce2d;}const e={'chart-ui':{'common':{'default':_0x293ab2(0x21a),'reset':'Resetuj'},'presentation':{'wrapLegend':_0x293ab2(0x217)},'inlineTable':{'pasteHint':_0x293ab2(0x1f9),'addRow':'Dodaj\x20wiersz','addColumn':'Dodaj\x20kolumnę'},'floatMenu':{'menuTitle':{'chart':_0x293ab2(0x203),'chartTitle':_0x293ab2(0x206),'subtitle':_0x293ab2(0x1e7),'axisTitle':_0x293ab2(0x1ea),'legend':'Legenda','horizontalAxis':_0x293ab2(0x1f2),'verticalAxis':'Oś\x20pionowa','rightVerticalAxis':_0x293ab2(0x21c),'gridline':_0x293ab2(0x20d),'tick':_0x293ab2(0x209),'mark':'Znak','series':'Seria','dataPoint':'Punkt\x20danych','dataLabel':'Etykieta\x20danych'},'field':{'title':'Tytuł','subtitle':_0x293ab2(0x1e7),'position':_0x293ab2(0x1ee),'size':_0x293ab2(0x1fe),'align':_0x293ab2(0x202),'mode':_0x293ab2(0x213),'map':_0x293ab2(0x208),'rotate':_0x293ab2(0x201),'min':'Min.','max':_0x293ab2(0x1f5),'color':_0x293ab2(0x219),'borderColor':_0x293ab2(0x212),'opacity':'Krycie','labelPosition':_0x293ab2(0x1f6),'labelText':_0x293ab2(0x218),'titleText':_0x293ab2(0x1e6)},'action':{'more':_0x293ab2(0x1f1),'bold':_0x293ab2(0x1fa),'italic':_0x293ab2(0x215)},'control':{'labels':'Etykiety','line':'Linia','reverse':'Odwróć','date':'Data'},'option':{'textAlign':{'left':'Lewo','center':_0x293ab2(0x200),'right':_0x293ab2(0x1ec)},'position':{'top':_0x293ab2(0x20b),'bottom':_0x293ab2(0x1f4),'left':_0x293ab2(0x1ff),'right':_0x293ab2(0x1ec),'hide':_0x293ab2(0x207),'inside':_0x293ab2(0x1ed),'outside':_0x293ab2(0x216)},'labelText':{'category':_0x293ab2(0x20a),'value':_0x293ab2(0x210),'percentage':_0x293ab2(0x20e)},'axisAlign':{'start':_0x293ab2(0x20f),'center':'Środek','end':'Koniec'},'legendSelectMode':{'single':'Pojedynczy','multiple':_0x293ab2(0x1fb),'close':_0x293ab2(0x1e9)},'visualMapType':{'continuous':_0x293ab2(0x21b),'piecewise':_0x293ab2(0x214)}}}}};module['exports']=e;
|
|
1
|
+
const _0xff47f2=_0x17e2;(function(_0x2370a4,_0x3e15c8){const _0x3e8b64=_0x17e2,_0xf2a9d4=_0x2370a4();while(!![]){try{const _0x54b8ae=parseInt(_0x3e8b64(0x208))/0x1+-parseInt(_0x3e8b64(0x1e7))/0x2+parseInt(_0x3e8b64(0x11f))/0x3+-parseInt(_0x3e8b64(0x16d))/0x4+-parseInt(_0x3e8b64(0x21e))/0x5+parseInt(_0x3e8b64(0x174))/0x6+parseInt(_0x3e8b64(0x1db))/0x7*(parseInt(_0x3e8b64(0x14f))/0x8);if(_0x54b8ae===_0x3e15c8)break;else _0xf2a9d4['push'](_0xf2a9d4['shift']());}catch(_0x1b450a){_0xf2a9d4['push'](_0xf2a9d4['shift']());}}}(_0x1083,0x3d9e0));function _0x17e2(_0x3a73bd,_0x23559c){_0x3a73bd=_0x3a73bd-0xfa;const _0x108310=_0x1083();let _0x17e24f=_0x108310[_0x3a73bd];return _0x17e24f;}const e={'chart-ui':{'editor':{'defaultColor':_0xff47f2(0x112),'fontSize':_0xff47f2(0x207)},'setup':{'stack':_0xff47f2(0x106),'percentStacked':'Stos\x20procentowy'},'chartTypes':{'line':_0xff47f2(0x1f9),'column':'Wykres\x20kolumnowy','columnStacked':_0xff47f2(0x16e),'columnPercentStacked':'Stos\x20procentowy\x20·\x20Wykres\x20kolumnowy','bar':_0xff47f2(0x135),'barStacked':_0xff47f2(0x173),'barPercentStacked':_0xff47f2(0x201),'pie':_0xff47f2(0x1c8),'donut':'Wykres\x20pierścieniowy','pieOfPie':_0xff47f2(0x160),'barOfPie':_0xff47f2(0x1fc),'area':_0xff47f2(0x210),'areaStacked':_0xff47f2(0x118),'areaPercentStacked':'Procentowy\x20skumulowany\x20wykres\x20obszarowy','radar':_0xff47f2(0x176),'scatter':_0xff47f2(0x1d7),'combination':'Wykres\x20kombinowany','wordCloud':_0xff47f2(0x154),'funnel':_0xff47f2(0x126),'bubble':_0xff47f2(0x179),'relation':_0xff47f2(0x1e8),'waterfall':_0xff47f2(0x228),'pareto':_0xff47f2(0x214),'sankey':_0xff47f2(0x15a),'heatmap':_0xff47f2(0x109),'boxplot':_0xff47f2(0x17c),'candlestick':_0xff47f2(0x1b6),'histogram':_0xff47f2(0x19d),'treemap':'Mapa\x20drzewa','sunburst':_0xff47f2(0x237),'gauge':_0xff47f2(0x15e),'chord':_0xff47f2(0x136)},'section':{'waterfall':_0xff47f2(0x228),'paretoBar':_0xff47f2(0x121),'paretoLine':_0xff47f2(0x1ab),'pie':_0xff47f2(0x1c8),'wordCloud':_0xff47f2(0x10b),'radar':_0xff47f2(0x176),'funnel':_0xff47f2(0x126),'relation':_0xff47f2(0x1e8),'lineAndArea':_0xff47f2(0x10c),'gridlinesAndTicks':'Linie\x20siatki\x20i\x20znaczniki','indicatorLine':_0xff47f2(0x170),'candlestick':'Wykres\x20świecowy','histogram':_0xff47f2(0x181),'treemap':'Wykres\x20mapy\x20drzewa','sunburst':_0xff47f2(0x111),'gauge':'Wykres\x20miernika','chord':_0xff47f2(0x16a)},'presentation':{'backgroundColor':_0xff47f2(0x1d4),'theme':'Temat','gradientFill':_0xff47f2(0x1ae),'bodyFontSize':_0xff47f2(0x1fd),'bodyFontColor':'Kolor\x20czcionki\x20korpusu','titleType':_0xff47f2(0x22d),'horizontalAxisTitle':_0xff47f2(0x103),'verticalAxisTitle':_0xff47f2(0x144),'rightVerticalAxisTitle':_0xff47f2(0x229),'wrap':'Zawiń\x20legendę','selectMode':_0xff47f2(0x23d),'visualMapType':_0xff47f2(0x116),'align':_0xff47f2(0x100)},'numberFormat':{'source':_0xff47f2(0x238),'number':'Numer','scientific':_0xff47f2(0x21d),'custom':_0xff47f2(0x1e9),'preview':_0xff47f2(0x1d3),'generalType':_0xff47f2(0x212),'accountingType':_0xff47f2(0x23b),'thousandsType':'Percentyl\x20tysięczny','formatTypes':_0xff47f2(0x150),'generalDesc':_0xff47f2(0x1d2),'accountingDesc':_0xff47f2(0x1bb),'currencyDesc':_0xff47f2(0x1f3),'dateDesc':_0xff47f2(0xfb),'thousandsDesc':_0xff47f2(0x186),'decimalPlaces':'Miejsca\x20dziesiętne','currencyTypes':_0xff47f2(0x225),'negativeNumberTypes':'Typy\x20liczb\x20ujemnych','dateTypes':'Typy\x20dat','setFormat':_0xff47f2(0x1fe)},'series':{'rightAxis':_0xff47f2(0x203),'allSeries':_0xff47f2(0x184),'aggregate':_0xff47f2(0x13c),'borderOpacity':_0xff47f2(0x200),'solid':_0xff47f2(0x1ee),'pointShape':_0xff47f2(0x202),'pointSize':'Rozmiar\x20punktu','pointColor':_0xff47f2(0x156),'removeDataPoint':_0xff47f2(0x14d),'square':_0xff47f2(0x12f),'rect':_0xff47f2(0x167),'roundRect':_0xff47f2(0x1d8),'pin':_0xff47f2(0x22f),'emptyCircle':_0xff47f2(0x1bf),'emptySquare':_0xff47f2(0x211),'emptyTriangle':'Pusty\x20trójkąt','emptyDiamond':_0xff47f2(0x221),'emptyRect':_0xff47f2(0x114),'emptyRoundRect':'Pusty\x20zaokrąglony\x20prostokąt','emptyPin':_0xff47f2(0x1a2),'emptyArrow':'Pusta\x20strzałka'},'lineAndArea':{'lineStyle':_0xff47f2(0x1b0),'line':_0xff47f2(0x20f),'smooth':_0xff47f2(0x1f5),'step':_0xff47f2(0x195),'invalidValues':'Nieprawidłowe\x20wartości','breakLine':_0xff47f2(0x22a),'connect':_0xff47f2(0x224),'zero':_0xff47f2(0x1c2)},'axis':{'useDateAxis':_0xff47f2(0x168),'target':'Oś','lineColor':_0xff47f2(0x102),'lineWidth':_0xff47f2(0x180),'labelRotation':_0xff47f2(0x122),'reverse':_0xff47f2(0xfe),'gridlineVisible':_0xff47f2(0x12d),'gridlineColor':'Kolor\x20linii\x20siatki','gridlineWidth':_0xff47f2(0x1eb),'tickVisible':_0xff47f2(0x20d),'tickLength':_0xff47f2(0x1e5),'tickWidth':_0xff47f2(0x1c1),'tickColor':_0xff47f2(0x1c9),'tickPosition':_0xff47f2(0x1b5)},'indicator':{'lineColor':'Kolor\x20linii\x20wskaźnika','lineType':_0xff47f2(0x183),'labelBackground':'Tło\x20etykiety','labelText':_0xff47f2(0x11e)},'trendline':{'add':_0xff47f2(0x1f4),'type':_0xff47f2(0x1ff),'linear':'Liniowy','exponential':_0xff47f2(0x19f),'logarithmic':_0xff47f2(0x236),'polynomial':'Wielomian','power':'Moc','movingAverage':_0xff47f2(0x1ec),'showFormula':'Pokaż\x20formułę','showR2':_0xff47f2(0x226),'order':_0xff47f2(0x12c),'period':_0xff47f2(0x215),'formulaColor':'Kolor\x20formuły','r2Color':_0xff47f2(0x138)},'pareto':{'includeZeroValues':'Uwzględnij\x20wartości\x20zerowe'},'plotArea':{'label':_0xff47f2(0x1ea),'manual':'Manual','left':'Left\x20(%)','top':'Top\x20(%)','width':_0xff47f2(0x1a1),'height':_0xff47f2(0x19a)},'bar':{'layout':'Bar\x20spacing','gapWidth':_0xff47f2(0x19b),'overlap':'Series\x20overlap\x20(%)'},'pie':{'mode':_0xff47f2(0x196),'modeNormal':'Standardowy','modePieOfPie':_0xff47f2(0x1cc),'modeBarOfPie':_0xff47f2(0x230),'splitType':_0xff47f2(0x101),'splitAuto':_0xff47f2(0x199),'splitPosition':_0xff47f2(0x153),'splitCustom':'Niestandardowy','customSelectedCount':_0xff47f2(0x11a),'customSelectedCountValue':_0xff47f2(0x1aa),'positionCount':_0xff47f2(0x14e),'valueLessThan':_0xff47f2(0x159),'percentageLessThan':'Procent\x20mniejszy\x20niż','secondarySize':_0xff47f2(0x110),'advancedLayout':_0xff47f2(0x1c3),'connector':'Łącznik','slices':'Wycinki','gapWidth':_0xff47f2(0x190),'connectorColor':_0xff47f2(0x1ac),'connectorWidth':'Szerokość\x20linii\x20łączącej','connectorType':_0xff47f2(0x239),'aggregateOther':_0xff47f2(0x117),'aggregateMembers':'Elementy','valueScale':'Skala\x20wartości','doughnutHole':_0xff47f2(0x163),'startAngle':'Start\x20angle','explosion':_0xff47f2(0x13f),'paddingAngle':_0xff47f2(0x14b),'halfPie':_0xff47f2(0x124),'rosePie':_0xff47f2(0x127),'labelLine':'Linia\x20etykiety'},'radar':{'shape':_0xff47f2(0x219),'polygon':_0xff47f2(0x235),'fill':_0xff47f2(0x1e2)},'funnel':{'gap':_0xff47f2(0x1a7),'absoluteValues':_0xff47f2(0x188)},'heatmap':{'unit':'Jednostka\x20wartości','labels':'Etykiety\x20komórek'},'relation':{'nodes':_0xff47f2(0x1a0),'interaction':_0xff47f2(0x12e),'edgeLength':'Długość\x20krawędzi','circular':'Okrągły','force':_0xff47f2(0x131),'nodeShape':_0xff47f2(0x1be),'valueSize':_0xff47f2(0x189),'rotateLabels':_0xff47f2(0x1dd),'gravity':_0xff47f2(0x1b8),'repulsion':'Wstręt'},'wordCloud':{'maskImage':_0xff47f2(0x1c6),'repeat':_0xff47f2(0x22e),'cloud':'Chmura','rect':'Prostokąt','cardioid':_0xff47f2(0x1d9),'heart':_0xff47f2(0x1c4),'triangle-forward':'Trójkąt\x20do\x20przodu','pentagon':_0xff47f2(0x206),'star':_0xff47f2(0x119)},'waterfall':{'styleTarget':_0xff47f2(0xfc),'positive':'Dodatnie','negative':_0xff47f2(0x15d),'stackType':_0xff47f2(0x1e4),'arrangement':_0xff47f2(0x165),'subtotal':_0xff47f2(0x18d),'includeSubtotal':_0xff47f2(0x21b),'connector':_0xff47f2(0x1ef)},'candlestick':{'candle':'Świeca','body':_0xff47f2(0x17f),'wick':_0xff47f2(0x149),'state':_0xff47f2(0x1c0),'open':'Otwarcie','high':_0xff47f2(0x232),'low':_0xff47f2(0x11c),'close':_0xff47f2(0x1f8),'rising':'Powstanie','falling':_0xff47f2(0x10f),'doji':'Doji','bodyColor':_0xff47f2(0x1da),'fillOpacity':_0xff47f2(0x1af),'wickColor':_0xff47f2(0x166),'wickWidth':_0xff47f2(0x233),'wickOpacity':_0xff47f2(0x23f),'candleWidth':'Szerokość\x20świecy','hollow':_0xff47f2(0x120),'columnsError':_0xff47f2(0x1a5),'series':'Seria\x20OHLC'},'histogram':{'binGap':_0xff47f2(0x1f0),'binningMode':_0xff47f2(0x1fb),'count':_0xff47f2(0x1ed),'width':_0xff47f2(0x222),'binCount':_0xff47f2(0x10a),'binWidth':_0xff47f2(0x17d),'underflow':_0xff47f2(0x129),'overflow':_0xff47f2(0x1cd),'frequency':_0xff47f2(0x1d5)},'treemap':{'parentLabelLayout':_0xff47f2(0x217),'banner':_0xff47f2(0x137),'overlapping':_0xff47f2(0x147),'leafLabel':'Etykiety\x20liści','hierarchy':'Pola\x20hierarchii','diagnostic':'Mapa\x20drzewa\x20wymaga\x20co\x20najmniej\x20jednego\x20pola\x20hierarchii\x20i\x20jednego\x20liczbowego\x20pola\x20wartości.'},'sunburst':{'hierarchy':_0xff47f2(0x1ce),'addHierarchy':_0xff47f2(0x23c),'moveUp':_0xff47f2(0x130),'moveDown':'Przesuń\x20pole\x20hierarchii\x20w\x20dół','removeHierarchy':_0xff47f2(0x157),'centerLabel':_0xff47f2(0x21a),'labelFormat':'Styl\x20etykiety','diagnostic':_0xff47f2(0x16b)},'gauge':{'scale':_0xff47f2(0x151),'majorDivisions':_0xff47f2(0x13a),'minorDivisions':_0xff47f2(0x123),'angles':_0xff47f2(0x164),'endAngle':_0xff47f2(0x1a9),'ranges':_0xff47f2(0x1ad),'rangeFrom':'Od','rangeTo':'Do','addRange':'Dodaj\x20zakres','removeRange':_0xff47f2(0x20a),'axisTick':_0xff47f2(0x171),'splitLine':_0xff47f2(0x192),'pointer':'Wskaźnik','anchor':_0xff47f2(0x104),'progress':_0xff47f2(0x205),'detail':'Szczegół','pointerNeedle':_0xff47f2(0x140),'pointerSlim':_0xff47f2(0x194),'template':_0xff47f2(0x182),'modern':_0xff47f2(0x1c7),'classic':_0xff47f2(0x152),'minimal':_0xff47f2(0x223),'advanced':_0xff47f2(0x134),'customized':_0xff47f2(0x161),'axisLabelNumberFormat':_0xff47f2(0x1de),'detailNumberFormat':_0xff47f2(0x1d6),'emptyDiagnostic':'Wykres\x20wskaźnikowy\x20wymaga\x20co\x20najmniej\x20jednej\x20skończonej\x20wartości\x20liczbowej.','mappingDiagnostic':_0xff47f2(0x172),'configDiagnostic':_0xff47f2(0x175)},'chord':{'source':_0xff47f2(0x15b),'target':_0xff47f2(0x1e3),'count':_0xff47f2(0x146),'node':_0xff47f2(0x177),'ribbon':_0xff47f2(0x216),'clockwise':'Zgodnie\x20z\x20ruchem\x20wskazówek\x20zegara','padAngle':'Kąt\x20podkładki','minAngle':'Minimalny\x20kąt','innerRadius':_0xff47f2(0x220),'outerRadius':_0xff47f2(0x113),'invalidRadii':_0xff47f2(0x1f6),'rotation':_0xff47f2(0x16f),'distance':_0xff47f2(0x227),'width':_0xff47f2(0x222),'focus':_0xff47f2(0x20b),'solid':_0xff47f2(0x1ca),'gradient':_0xff47f2(0x1fa),'adjacency':_0xff47f2(0x15f),'self':_0xff47f2(0x142),'emptyDiagnostic':_0xff47f2(0x1d0),'mappingDiagnostic':'Diagram\x20cięciwowy\x20wymaga\x20różnych\x20pól\x20Źródło\x20i\x20Cel\x20oraz\x20opcjonalnego,\x20odrębnego\x20pola\x20Wartość.','configDiagnostic':'Konfiguracja\x20diagramu\x20cięciwowego\x20jest\x20nieprawidłowa.\x20Sprawdź\x20kąty,\x20promienie,\x20krycie\x20i\x20rozmiary.','associatedValue':_0xff47f2(0xff)},'common':{'category':_0xff47f2(0x22b),'seriesName':_0xff47f2(0x11b),'value':'Wartość','percentage':_0xff47f2(0x1a8),'borderColor':_0xff47f2(0x234),'labelContent':_0xff47f2(0x1e1),'labelPosition':_0xff47f2(0x125),'dataLabels':'Etykiety\x20danych','chartType':_0xff47f2(0x1a6),'bold':_0xff47f2(0x21f),'italic':'Kursywa','shape':_0xff47f2(0x20c),'chartStyle':_0xff47f2(0x12b),'chartAndAxisTitles':_0xff47f2(0x169),'legend':_0xff47f2(0x12a),'chartTitle':_0xff47f2(0x1f2),'subtitle':'Podtytuł','series':_0xff47f2(0x18e),'dataPoint':_0xff47f2(0x108),'trendline':_0xff47f2(0x18f),'horizontalAxis':_0xff47f2(0x10e),'verticalAxis':_0xff47f2(0x18a),'rightVerticalAxis':_0xff47f2(0x1dc),'layout':_0xff47f2(0x1e4),'arrow':_0xff47f2(0x191),'axisLabels':_0xff47f2(0x187),'currency':_0xff47f2(0x133),'date':_0xff47f2(0x198),'displayName':_0xff47f2(0x19e),'emphasis':_0xff47f2(0x148),'heatmap':_0xff47f2(0x109),'lineColor':_0xff47f2(0x102),'lineWidth':_0xff47f2(0x180),'min':'Minimum','max':_0xff47f2(0x232),'mode':_0xff47f2(0x105),'stacked':_0xff47f2(0x128),'title':_0xff47f2(0x23e),'auto':_0xff47f2(0x1c5),'position':{'label':_0xff47f2(0x153),'inside':_0xff47f2(0x13b),'outside':_0xff47f2(0x14c),'top':_0xff47f2(0x209),'right':_0xff47f2(0x1cf),'bottom':_0xff47f2(0x19c),'left':_0xff47f2(0x1b7),'hide':_0xff47f2(0x1f1)},'axisAlign':{'start':'Początek','center':'Środek','end':'Koniec'},'textAlign':{'left':_0xff47f2(0x1b7),'center':_0xff47f2(0x1cb),'right':_0xff47f2(0x1cf)},'legendSelectMode':{'single':_0xff47f2(0x1a4),'multiple':_0xff47f2(0x1ba),'disabled':_0xff47f2(0x13d)},'visualMapType':{'continuous':_0xff47f2(0x204),'piecewise':_0xff47f2(0x22c)},'default':_0xff47f2(0x231),'reset':_0xff47f2(0x15c),'color':'Kolor','opacity':_0xff47f2(0x1f7),'font':'Czcionka','none':_0xff47f2(0x1df),'numberFormat':_0xff47f2(0x143),'borderWidth':'Szerokość\x20obramowania','borderType':_0xff47f2(0x1e0),'lineType':_0xff47f2(0x1b3),'dashed':_0xff47f2(0x1b1),'dotted':_0xff47f2(0x1b1),'circle':_0xff47f2(0x16c),'triangle':_0xff47f2(0x115),'diamond':'Diament','axisLine':'Linia\x20osi','minimum':_0xff47f2(0x223),'maximum':_0xff47f2(0x132),'startAngle':_0xff47f2(0x185),'valueField':_0xff47f2(0x145),'categoryName':_0xff47f2(0x155),'ownValue':_0xff47f2(0x14a),'children':'Elementy\x20podrzędne','label':_0xff47f2(0x213),'editChart':_0xff47f2(0x17a),'deleteChart':_0xff47f2(0x17e),'insertChart':_0xff47f2(0x193),'insertChartFailed':_0xff47f2(0x18c),'openChartPanel':_0xff47f2(0x162),'hideChartPanel':_0xff47f2(0x1a3),'exportImage':'Eksportuj\x20jako\x20obraz','copy':_0xff47f2(0xfd),'setup':_0xff47f2(0x107),'customize':'Dostosuj','data':_0xff47f2(0x17b),'tableDataEmpty':_0xff47f2(0x1b9),'dataRange':_0xff47f2(0x10d),'editData':'Edytuj\x20dane','inlineData':'Dane\x20wbudowane','switchRowColumn':'Przełącz\x20na\x20wiersz/kolumnę','useAsCategoryLabels':_0xff47f2(0x158),'cancel':'Anuluj','insert':_0xff47f2(0x18b),'apply':_0xff47f2(0x1b4),'duplicate':'Duplikuj'},'inlineTable':{'pasteHint':_0xff47f2(0x13e),'addRow':_0xff47f2(0x21c),'addColumn':_0xff47f2(0x1b2)},'floatMenu':{'menuTitle':{'chart':_0xff47f2(0x178),'axisTitle':'Tytuł\x20osi','gridline':_0xff47f2(0x1d1),'tick':_0xff47f2(0x11d),'mark':_0xff47f2(0xfa),'dataLabel':_0xff47f2(0x20e)},'field':{'position':_0xff47f2(0x153),'size':_0xff47f2(0x197),'align':_0xff47f2(0x1bc),'map':_0xff47f2(0x23a),'rotate':_0xff47f2(0x1bd),'labelText':_0xff47f2(0x141),'titleText':_0xff47f2(0x218)},'action':{'more':_0xff47f2(0x139)},'control':{'labels':'Etykiety','line':_0xff47f2(0x20f),'reverse':_0xff47f2(0x1e6)}}}};module['exports']=e;function _0x1083(){const _0x5af168=['Kardioidalna','Kolor\x20korpusu','1099nwlsqo','Prawa\x20oś\x20pionowa','Obróć\x20etykiety','Format\x20liczb\x20etykiet\x20osi','Żadne','Typ\x20obramowania','Zawartość\x20etykiety','Wypełnienie\x20obszaru','Cel','Układ','Długość\x20kleszcza','Odwróć','932298GeONcN','Wykres\x20relacji','Niestandardowy\x20format','Plot\x20area','Szerokość\x20linii\x20siatki','Średnia\x20krocząca','Policz','Solidne','Linia\x20złącza','Szczelina\x20pojemnika','Ukryj','Tytuł\x20wykresu','Format\x20walutowy\x20jest\x20używany\x20dla\x20ogólnych\x20wartości\x20pieniężnych,\x20format\x20księgowy\x20wyrównuje\x20miejsca\x20dziesiętne\x20w\x20kolumnie\x20wartości.','Dodaj\x20linię\x20trendu','Gładka','Promień\x20wewnętrzny\x20musi\x20być\x20mniejszy\x20niż\x20promień\x20zewnętrzny.','Nieprzezroczystość','Zamknięcie','Wykres\x20liniowy','Gradient','Tryb\x20binowania','Wykres\x20słupkowy\x20kołowego','Rozmiar\x20czcionki\x20w\x20treści','Ustaw\x20format\x20etykiety','Wpisz','Krycie\x20obramowania','Procentowy\x20skumulowany\x20wykres\x20słupkowy','Kształt\x20punktowy','Prawa\x20oś','Ciągłe','Postęp','Pięciokąt','Rozmiar\x20czcionki','151579fCYUAB','Góra','Usuń\x20zakres','Skup\x20się','Kształt','Kleszcze','Etykieta\x20danych','Linia','Wykres\x20obszarowy','Pusty\x20kwadrat','Ogólny','Etykieta','Wykres\x20Pareto','Okres','Wstążka','Układ\x20etykiety\x20nadrzędnej','Tekst\x20tytułu','Kształt\x20radaru','Suma\x20środkowa','Użyj\x20sumy\x20częściowej','Dodaj\x20wiersz','Naukowe','2465555kEHkHf','Pogrubienie','Promień\x20wewnętrzny','Pusty\x20romb','Szerokość','Minimalne','Połącz\x20punkty\x20danych','Typy\x20walut','Pokaż\x20R²','Odległość','Wykres\x20wodospadowy','Tytuł\x20prawej\x20osi\x20pionowej','Linia\x20przerwania','Kategoria','Odcinkowy','Typ\x20tytułu','Powtórz\x20słowa','Szpilka','Słupkowy\x20kołowego','Domyślne','Maksimum','Szerokość\x20knota','Kolor\x20obramowania','Wielokąt','Logarytmiczny','Wykres\x20pierścieniowy','Format\x20źródłowy','Typ\x20linii\x20łączącej','Mapa','Księgowość','Dodaj\x20hierarchię','Tryb\x20selekcji','Tytuł','Nieprzezroczystość\x20knota','Znak','Format\x20daty\x20wyświetla\x20numery\x20seryjne\x20daty\x20i\x20czasu\x20jako\x20wartości\x20daty.','Cel\x20stylu','Kopiuj','Odwrotna\x20oś','Wartość\x20powiązana','Wyrównanie','Podziel\x20według','Kolor\x20linii','Tytuł\x20osi\x20poziomej','Kotwica','Tryb','Stos','Konfiguracja','Punkt\x20danych','Mapa\x20ciepła','Liczba\x20pojemników','Chmura\x20słów','Wykres\x20liniowy\x20/\x20Wykres\x20obszarowy','Zakres\x20danych','Oś\x20pozioma','Upadek','Rozmiar\x20wykresu\x20pomocniczego','Wykres\x20rozbłysku\x20słońca','Domyślny\x20kolor','Promień\x20zewnętrzny','Pusty\x20prostokąt','Trójkąt','Mapa\x20wizualna','Inne','Skumulowany\x20wykres\x20obszarowy','Gwiazda','Podział\x20niestandardowy','Nazwa\x20serii','Minimum','Znacznik','Kolor\x20tekstu\x20etykiety','178200UEBMPG','Pusta\x20świeca','Seria\x20wykresu\x20słupkowego','Obrót\x20etykiety','Podziały\x20pomocnicze\x20na\x20podział\x20główny','Pół\x20ciasta','Pozycja\x20etykiety','Wykres\x20lejkowy','Ciasto\x20różane','Ułożone','Próg\x20niedomiaru','Legenda','Styl\x20wykresu','Zamów','Linie\x20siatki','Interakcja','Kwadrat','Przesuń\x20pole\x20hierarchii\x20w\x20górę','Siła','Maksymalnie','Waluta','Ustawienia\x20zaawansowane','Wykres\x20słupkowy','Diagram\x20cięciwowy','Sztandar','Kolor\x20R²','Więcej','Podziały\x20główne','Wewnątrz','Agreguj','Wyłączone','Wklej\x20tabelę\x20z\x20Arkuszy,\x20Excela\x20lub\x20strony\x20internetowej,\x20aby\x20zastąpić\x20dane\x20wbudowane.','Explosion\x20(%)','Klasyczna\x20wskazówka','Tekst\x20etykiety','Bieżący\x20węzeł','Format\x20liczbowy','Tytuł\x20osi\x20pionowej','Pole\x20wartości','Liczba\x20relacji','Nakładające\x20się','Nacisk','Knot','Wartość\x20własna','Odstęp\x20plasterków','Na\x20zewnątrz','Usuń\x20punkt\x20danych','Liczba\x20punktów\x20danych\x20wykresu\x20pomocniczego','51288CLlPdE','Typy\x20formatu','Skala','Klasyczny','Pozycja','Wykres\x20chmury\x20słów','Nazwa\x20kategorii','Kolor\x20punktu','Usuń\x20pole\x20hierarchii','Użyj\x20{0}\x20jako\x20kategorii','Wartość\x20mniejsza\x20niż','Wykres\x20Sankeya','Źródło','Zresetuj','Ujemne','Wykres\x20wskaźnikowy','Sąsiednie\x20węzły','Wykres\x20kołowy\x20kołowego','Niestandardowy','Otwórz\x20panel\x20wykresu','Dziura\x20po\x20pączku','Kąty','Wodospad','Kolor\x20knota','Prostokąt','Traktuj\x20etykiety\x20jako\x20daty','Tytuły\x20wykresu\x20i\x20osi','Wykres\x20akordów','Wykres\x20pierścieniowy\x20wymaga\x20co\x20najmniej\x20jednego\x20pola\x20hierarchii\x20i\x20jednego\x20liczbowego\x20pola\x20wartości.','Okrąg','1543140rZxPiL','Stos\x20·\x20Wykres\x20kolumnowy','Obrót','Linia\x20wskaźnika','Zaznaczenia\x20osi','Wykres\x20wskaźnikowy\x20wymaga\x20jednego\x20pola\x20etykiety\x20i\x20dokładnie\x20jednego\x20pola\x20wartości.','Skumulowany\x20wykres\x20słupkowy','2279538YrQpMe','Konfiguracja\x20wykresu\x20wskaźnikowego\x20jest\x20nieprawidłowa.\x20Sprawdź\x20skalę,\x20zakresy,\x20proporcje\x20i\x20rozmiary.','Wykres\x20radarowy','Węzeł','Wykres','Wykres\x20bąbelkowy','Edytor\x20wykresów','Dane','Wykres\x20pudełkowy','Szerokość\x20pojemnika','Usuń\x20wykres','Korpus','Szerokość\x20linii','Wykres\x20histogramu','Szablon','Typ\x20linii\x20wskaźnika','Wszystkie\x20serie','Kąt\x20początkowy','Format\x20percentyla\x20tysięcznego\x20jest\x20używany\x20dla\x20ogólnych\x20liczb,\x20formaty\x20walutowe\x20i\x20księgowe\x20zapewniają\x20wyspecjalizowane\x20formaty\x20dla\x20wartości\x20pieniężnych.','Etykiety\x20osi','Użyj\x20wartości\x20bezwzględnych','Rozmiar\x20węzłów\x20według\x20wartości','Oś\x20pionowa','Wstaw','Nie\x20udało\x20się\x20wstawić\x20wykresu','Suma\x20częściowa','Seria','Linia\x20trendu','Odstęp\x20między\x20wykresem\x20głównym\x20a\x20pomocniczym','Strzałka','Podziel\x20linie','Wstaw\x20wykres','Smukła\x20wskazówka','Krok','Kształt\x20wykresu','Rozmiar','Data','Automatycznie','Height\x20(%)','Gap\x20width\x20(%)','Dół','Histogram','Nazwa\x20wyświetlana','Wykładniczy','Węzły','Width\x20(%)','Pusta\x20szpilka','Ukryj\x20panel\x20wykresu','Pojedynczo','Dane\x20wykresu\x20świecowego\x20wymagają\x20kolumn\x20Kategoria,\x20Otwarcie,\x20Maksimum,\x20Minimum\x20i\x20Zamknięcie.','Typ\x20wykresu','Luka\x20w\x20przedmiocie','Procent','Kąt\x20końcowy','Wybrano\x20{0}\x20punktów\x20danych','Seria\x20skumulowanego\x20procentu','Kolor\x20linii\x20łączącej','Zakresy','Wypełnienie\x20gradientowe','Wypełnij\x20krycie','Styl\x20linii','Przerywana','Dodaj\x20kolumnę','Typ\x20linii','Zastosuj','Zaznacz\x20pozycję','Wykres\x20świecowy','Lewo','Grawitacja','Dane\x20tabeli\x20są\x20puste','Wielokrotny','Format\x20liczbowy\x20księgowości\x20wyrównuje\x20symbole\x20walutowe\x20i\x20miejsca\x20dziesiętne\x20w\x20kolumnie.','Wyrównaj','Obróć','Kształt\x20węzła','Pusty\x20okrąg','Stan\x20świecy','Szerokość\x20kleszcza','Traktuj\x20jako\x20zero','Układ\x20zaawansowany','Serce','Automat','Identyfikator\x20obrazu\x20maski','Nowoczesne','Wykres\x20kołowy','Zaznacz\x20kolor','Jednolity\x20kolor','Środek','Kołowy\x20kołowego','Próg\x20przepełnienia','Hierarchia','Prawo','Diagram\x20cięciwowy\x20wymaga\x20co\x20najmniej\x20jednej\x20relacji\x20o\x20dodatniej\x20wadze\x20między\x20dwoma\x20różnymi\x20węzłami.','Linia\x20siatki','Format\x20ogólny\x20nie\x20zawiera\x20żadnego\x20konkretnego\x20formatu\x20liczbowego.','Podgląd','Kolor\x20tła','Częstotliwość','Format\x20liczb\x20szczegółowych','Wykres\x20punktowy','Zaokrąglony\x20prostokąt'];_0x1083=function(){return _0x5af168;};return _0x1083();}
|