lowcoder-map-component 0.1.1
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/README.md +37 -0
- package/icons/demo-icon.svg +10 -0
- package/icons/hills.svg +17 -0
- package/index.css +27 -0
- package/index.html +35 -0
- package/index.tsx +20 -0
- package/loader.mjs +11 -0
- package/package.json +175 -0
- package/src/README.md +35 -0
- package/src/components/ChartPropertyView.tsx +961 -0
- package/src/components/SeriesComp.tsx +368 -0
- package/src/components/TabPropertyView.tsx +127 -0
- package/src/comps/Barcharts/comp.tsx +338 -0
- package/src/comps/Barcharts/constants.tsx +77 -0
- package/src/comps/Linecharts/comp.tsx +350 -0
- package/src/comps/Linecharts/constants.tsx +53 -0
- package/src/comps/Linechartsv2/comp.tsx +350 -0
- package/src/comps/Linechartsv2/constants.tsx +68 -0
- package/src/comps/Mapcharts/comp.tsx +381 -0
- package/src/comps/Mapcharts/constants.tsx +312 -0
- package/src/comps/Mapchartsv2/comp.tsx +393 -0
- package/src/comps/Mapchartsv2/constants.tsx +340 -0
- package/src/comps/MixedLineBarCharts/comp.tsx +353 -0
- package/src/comps/MixedLineBarCharts/constants.tsx +60 -0
- package/src/comps/MultiLineCharts/comp.tsx +362 -0
- package/src/comps/MultiLineCharts/constants.tsx +96 -0
- package/src/comps/PercentageCharts/comp.tsx +359 -0
- package/src/comps/PercentageCharts/constants.tsx +98 -0
- package/src/comps/Piecharts/comp.tsx +334 -0
- package/src/comps/Piecharts/constants.tsx +48 -0
- package/src/comps/Tablecharts/comp.tsx +429 -0
- package/src/comps/Tablecharts/constants.tsx +97 -0
- package/src/comps/Totalcharts/comp.tsx +463 -0
- package/src/comps/Totalcharts/constants.tsx +66 -0
- package/src/comps/TwoLineCharts/comp.tsx +350 -0
- package/src/comps/TwoLineCharts/constants.tsx +82 -0
- package/src/comps/mapComponent/comp.tsx +338 -0
- package/src/comps/mapComponent/constants.tsx +2149 -0
- package/src/comps/tab/comp.tsx +283 -0
- package/src/comps/tab/constants.tsx +79 -0
- package/src/configs/barChartConfig.tsx +153 -0
- package/src/configs/baseConfig.tsx +66 -0
- package/src/configs/candleStickChartConfig.tsx +35 -0
- package/src/configs/cartesianAxisConfig.tsx +314 -0
- package/src/configs/chartUrls.tsx +9 -0
- package/src/configs/echartConfig.tsx +260 -0
- package/src/configs/echartsLabelConfig.tsx +47 -0
- package/src/configs/echartsLegendConfig.tsx +29 -0
- package/src/configs/echartsTitleConfig.tsx +49 -0
- package/src/configs/echartsTitleVerticalConfig.tsx +50 -0
- package/src/configs/funnelChartConfig.tsx +35 -0
- package/src/configs/gaugeChartConfig.tsx +31 -0
- package/src/configs/graphChartConfig.tsx +31 -0
- package/src/configs/heatmapChartConfig.tsx +31 -0
- package/src/configs/legendConfig.tsx +55 -0
- package/src/configs/lineChartConfig.tsx +246 -0
- package/src/configs/lineChartConfigv2.tsx +246 -0
- package/src/configs/mapChartConfig.tsx +106 -0
- package/src/configs/mapChartConfigv2.tsx +106 -0
- package/src/configs/mixedChartConfig.tsx +21 -0
- package/src/configs/pieChartConfig.tsx +156 -0
- package/src/configs/radarChartConfig.tsx +31 -0
- package/src/configs/sankeyChartConfig.tsx +35 -0
- package/src/configs/scatterChartConfig.tsx +152 -0
- package/src/configs/sunburstChartConfig.tsx +31 -0
- package/src/configs/tabConfig.tsx +0 -0
- package/src/configs/tableChartConfig.tsx +81 -0
- package/src/configs/themeriverChartConfig.tsx +31 -0
- package/src/configs/totalChartConfig.tsx +670 -0
- package/src/configs/treeChartConfig.tsx +31 -0
- package/src/configs/treemapChartConfig.tsx +31 -0
- package/src/controls/AnimationsControls.tsx +3 -0
- package/src/controls/AutoHeightControl.tsx +2 -0
- package/src/controls/AxisControls.tsx +146 -0
- package/src/controls/AxisVisibilityControl.tsx +14 -0
- package/src/controls/ChartTypeControl.tsx +15 -0
- package/src/controls/ColorScaleControl.tsx +221 -0
- package/src/controls/ColumnControl.tsx +204 -0
- package/src/controls/ConfigControl.tsx +37 -0
- package/src/controls/DirectionControls.tsx +20 -0
- package/src/controls/IconControl.tsx +88 -0
- package/src/controls/LegendControl.tsx +8 -0
- package/src/controls/RowLimitControl.tsx +91 -0
- package/src/controls/StyleControls.tsx +22 -0
- package/src/controls/TimeControls.tsx +41 -0
- package/src/controls/TrendlineControl.tsx +89 -0
- package/src/controls/UIEventControl.tsx +21 -0
- package/src/controls/index.ts +16 -0
- package/src/controls/radioControl.tsx +88 -0
- package/src/exposing/index.ts +3 -0
- package/src/exposing/setPoint.ts +19 -0
- package/src/geo/vn.geo.json +369897 -0
- package/src/geo/world.geo.json +32127 -0
- package/src/i18n/comps/index.tsx +39 -0
- package/src/i18n/comps/locales/en.ts +558 -0
- package/src/i18n/comps/locales/enObj.tsx +7186 -0
- package/src/i18n/comps/locales/index.ts +7 -0
- package/src/i18n/comps/locales/pt.ts +37 -0
- package/src/i18n/comps/locales/ptObj.tsx +40 -0
- package/src/i18n/comps/locales/types.tsx +622 -0
- package/src/i18n/comps/locales/zh.ts +3 -0
- package/src/i18n/comps/locales/zhObj.tsx +4 -0
- package/src/index.ts +31 -0
- package/src/types/global.d.ts +9 -0
- package/src/types/lowcoder-sdk.d.ts +578 -0
- package/src/utils/chartStyle.util.ts +121 -0
- package/src/utils/columnExtractor.util.ts +41 -0
- package/src/utils/dataTransform.util.ts +37 -0
- package/src/utils/deepEqual.util.ts +29 -0
- package/src/utils/echarts.util.tsx +822 -0
- package/src/utils/getDataKey.util.ts +115 -0
- package/src/utils/getLinearRegression.util.ts +46 -0
- package/src/utils/googleMaps.util.ts +28 -0
- package/src/utils/isEmpty.util.ts +10 -0
- package/src/utils/move.util.ts +6 -0
- package/src/utils/selection.util.ts +73 -0
- package/src/utils/style.util.ts +315 -0
- package/src/utils/time.util.ts +221 -0
- package/src/utils/timeFormatter.util.ts +104 -0
- package/src/utils/timeProcessing.util.ts +38 -0
- package/src/utils/trendline.util.ts +342 -0
- package/tsconfig.json +25 -0
- package/vite.config.js +19 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { getI18nObjects, getValueByLocale, Translator } from "lowcoder-sdk";
|
|
2
|
+
import * as localeData from "./locales";
|
|
3
|
+
import { I18nObjects } from "./locales/types";
|
|
4
|
+
|
|
5
|
+
const REACT_APP_LANGUAGES = "en";
|
|
6
|
+
|
|
7
|
+
export const { trans, language } = new Translator<typeof localeData.en>(
|
|
8
|
+
localeData,
|
|
9
|
+
REACT_APP_LANGUAGES
|
|
10
|
+
);
|
|
11
|
+
|
|
12
|
+
export const i18nObjs = getI18nObjects<I18nObjects>(
|
|
13
|
+
localeData,
|
|
14
|
+
REACT_APP_LANGUAGES
|
|
15
|
+
);
|
|
16
|
+
|
|
17
|
+
export function getEchartsLocale() {
|
|
18
|
+
return getValueByLocale("EN", (locale) => {
|
|
19
|
+
switch (locale.language) {
|
|
20
|
+
case "en":
|
|
21
|
+
return "EN";
|
|
22
|
+
case "pt":
|
|
23
|
+
return "PT";
|
|
24
|
+
case "zh":
|
|
25
|
+
return "ZH";
|
|
26
|
+
}
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export function getCalendarLocale() {
|
|
31
|
+
switch (language) {
|
|
32
|
+
case "zh":
|
|
33
|
+
return "zh-cn";
|
|
34
|
+
case "pt":
|
|
35
|
+
return "pt-br";
|
|
36
|
+
default:
|
|
37
|
+
return "en-gb";
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -0,0 +1,558 @@
|
|
|
1
|
+
export const en = {
|
|
2
|
+
colorScale: {
|
|
3
|
+
color: "Color",
|
|
4
|
+
colorRange: "Color range",
|
|
5
|
+
deleteRange: "Delete range",
|
|
6
|
+
displayColor: "Display color",
|
|
7
|
+
colorScaleType: "Color scale type",
|
|
8
|
+
sequential: "Sequential",
|
|
9
|
+
diverging: "Diverging",
|
|
10
|
+
categorical: "Categorical",
|
|
11
|
+
minColor: "Min color",
|
|
12
|
+
midColor: "Mid color",
|
|
13
|
+
maxColor: "Max color",
|
|
14
|
+
valueRanges: "Value ranges",
|
|
15
|
+
valueFrom: "Value from",
|
|
16
|
+
valueTo: "Value to",
|
|
17
|
+
addRange: "Add range",
|
|
18
|
+
events: "Events",
|
|
19
|
+
colorRanges: "Color ranges",
|
|
20
|
+
scaleTypeDesc: "Coloring ladder",
|
|
21
|
+
minColorDesc: "Minimum color",
|
|
22
|
+
midColorDesc: "Average color",
|
|
23
|
+
maxColorDesc: "Maximum color",
|
|
24
|
+
colorRangesDesc: "Color values",
|
|
25
|
+
},
|
|
26
|
+
trendline: {
|
|
27
|
+
title: "Trendline Configuration",
|
|
28
|
+
trendlines: "Trendlines",
|
|
29
|
+
configuration: "Trendline Configuration",
|
|
30
|
+
type: "Trendline Type",
|
|
31
|
+
exponential: "Exponential",
|
|
32
|
+
linear: "Linear",
|
|
33
|
+
logarithmic: "Logarithmic",
|
|
34
|
+
polynomial: "Polynomial",
|
|
35
|
+
power: "Power",
|
|
36
|
+
movingAverage: "Moving Average",
|
|
37
|
+
order: "Order",
|
|
38
|
+
orderTooltip: "The order of the polynomial trendline",
|
|
39
|
+
period: "Period",
|
|
40
|
+
periodTooltip: "The period for moving average",
|
|
41
|
+
name: "Trendline Name",
|
|
42
|
+
nameTooltip: "Name to display for this trendline",
|
|
43
|
+
color: "Trendline Color",
|
|
44
|
+
colorTooltip: "Color of the trendline",
|
|
45
|
+
settings: "Trendline Settings",
|
|
46
|
+
events: "Events",
|
|
47
|
+
delete: "Delete",
|
|
48
|
+
newTrendline: "New Trendline",
|
|
49
|
+
addTrendline: "Add Trendline",
|
|
50
|
+
removeTrendline: "Remove Trendline",
|
|
51
|
+
reorderTrendlines: "Reorder Trendlines",
|
|
52
|
+
},
|
|
53
|
+
// region defaultChart
|
|
54
|
+
chart: {
|
|
55
|
+
add: "Add",
|
|
56
|
+
animationDuration: "Duration",
|
|
57
|
+
areaLine: "Area line",
|
|
58
|
+
areaPiece: "Area piece",
|
|
59
|
+
areaPieces: "Area pieces",
|
|
60
|
+
areaStyle: "Area style",
|
|
61
|
+
arrow: "Arrow",
|
|
62
|
+
auto: "Default",
|
|
63
|
+
average: "Average",
|
|
64
|
+
bar: "Bar chart",
|
|
65
|
+
barType: "Bar chart type",
|
|
66
|
+
barometerGauge: "Gauge barometer chart",
|
|
67
|
+
basicLine: "Basic line",
|
|
68
|
+
bottom: "Bottom",
|
|
69
|
+
bottomTooltip: "Bottom tooltip",
|
|
70
|
+
budget: "Budget",
|
|
71
|
+
calendarPie: "Calendar pie",
|
|
72
|
+
categoryAxis: "Category axis",
|
|
73
|
+
centerPositionChange: "Center position change",
|
|
74
|
+
centerPositionChangeDesc: "Triggers when the map center position changes",
|
|
75
|
+
changingLegend_x_Tooltip: "Changing legend x tooltip",
|
|
76
|
+
chartEventHandlers: "Chart event handlers",
|
|
77
|
+
chartSeries: "Chart series",
|
|
78
|
+
chartType: "Chart type",
|
|
79
|
+
circle: "Circle",
|
|
80
|
+
clockGauge: "Clock",
|
|
81
|
+
config: "Configuration",
|
|
82
|
+
confirmDelete: "Confirm delete: ",
|
|
83
|
+
currentDay: "Current day",
|
|
84
|
+
custom: "Custom",
|
|
85
|
+
customSeries: "Custom series",
|
|
86
|
+
dashed: "Dashed",
|
|
87
|
+
data: "Data",
|
|
88
|
+
provinceData: "Province Data",
|
|
89
|
+
defaultAccessToken:"Access Token",
|
|
90
|
+
defaultMapStyle:"Link Map Style",
|
|
91
|
+
dataColumns: "Data columns",
|
|
92
|
+
dataDesc: "JSON data for the chart",
|
|
93
|
+
dataQueries: "Data queries",
|
|
94
|
+
day: "Day",
|
|
95
|
+
default: "Default",
|
|
96
|
+
defaultBottom: "40",
|
|
97
|
+
defaultDataZoomBottom: "20",
|
|
98
|
+
defaultLeft: "20",
|
|
99
|
+
defaultRight: "20",
|
|
100
|
+
defaultTitle: "Default chart",
|
|
101
|
+
defaultTop: "40",
|
|
102
|
+
delete: "Delete",
|
|
103
|
+
diamond: "Diamond",
|
|
104
|
+
dotted: "Dotted",
|
|
105
|
+
doughnutPie: "Doughnut pie",
|
|
106
|
+
echartsMapOptionExamples: "ECharts map examples",
|
|
107
|
+
echartsMapOptionTooltip: "ECharts map option",
|
|
108
|
+
echartsOptionExamples: "ECharts examples",
|
|
109
|
+
echartsOptionLabel: "Option",
|
|
110
|
+
echartsOptionTooltip: "ECharts option",
|
|
111
|
+
emptyCircle: "Empty circle",
|
|
112
|
+
end: "End",
|
|
113
|
+
endTime: "End time",
|
|
114
|
+
geoPie: "Geo map pie",
|
|
115
|
+
gradeGauge: "Grade gauge",
|
|
116
|
+
hide: "Hide",
|
|
117
|
+
horizontal: "Horizontal",
|
|
118
|
+
hour: "Hour",
|
|
119
|
+
labelPosition: "Label position",
|
|
120
|
+
lastDay: "Last day",
|
|
121
|
+
lastInteractionDataDesc: "Last interaction data",
|
|
122
|
+
lastMonth: "Last month",
|
|
123
|
+
lastQuarter: "Last quarter",
|
|
124
|
+
lastWeek: "Last week",
|
|
125
|
+
lastYear: "Last year",
|
|
126
|
+
left: "Left",
|
|
127
|
+
leftTooltip: "Left tooltip",
|
|
128
|
+
legendPosition: "Legend position",
|
|
129
|
+
line: "Line chart",
|
|
130
|
+
lineType: "Line chart type",
|
|
131
|
+
links: "Links",
|
|
132
|
+
loadingTable: "Table loading...",
|
|
133
|
+
logAxis: "Log axis",
|
|
134
|
+
logBase: "Log base",
|
|
135
|
+
mapReady: "Map ready",
|
|
136
|
+
mapReadyDesc: "Triggers when the map is ready",
|
|
137
|
+
markAreaConfig: "Mark area config",
|
|
138
|
+
markAreaFrom: "Mark area from",
|
|
139
|
+
markAreaName: "Mark area name",
|
|
140
|
+
markAreaTo: "Mark area to",
|
|
141
|
+
markAreas: "Mark areas",
|
|
142
|
+
markLineType: "Marker type",
|
|
143
|
+
markLines: "Mark lines",
|
|
144
|
+
max: "Max",
|
|
145
|
+
both: "Both",
|
|
146
|
+
inside: "Inside",
|
|
147
|
+
slider: "Slider",
|
|
148
|
+
rowCursor: "Row cursor",
|
|
149
|
+
rowLimit: "Row limit",
|
|
150
|
+
rowLimitAction: "Limit action",
|
|
151
|
+
rowLimitMax: "Limit max %",
|
|
152
|
+
rowLimitMin: "Limit min %",
|
|
153
|
+
rowLimitTooltip: "Maximum number of rows to display (0 for unlimited)",
|
|
154
|
+
middle: "Middle",
|
|
155
|
+
min: "Min",
|
|
156
|
+
minute: "Minute",
|
|
157
|
+
mixed: "Mixed chart",
|
|
158
|
+
mode: "Mode",
|
|
159
|
+
month: "Month",
|
|
160
|
+
multiGauge: "Multi title gauge",
|
|
161
|
+
noData: "No data",
|
|
162
|
+
noFilter: "No filter",
|
|
163
|
+
none: "None",
|
|
164
|
+
pie: "Pie chart",
|
|
165
|
+
pieType: "Pie chart type",
|
|
166
|
+
pin: "Pin",
|
|
167
|
+
pointColorLabel: "Point color",
|
|
168
|
+
pointColorTooltip: `Set point color based on series name and value. variables: seriesName, value. example: '{{value < 25000 ? "red" : "green"}}'`,
|
|
169
|
+
polar: "Polar",
|
|
170
|
+
quarter: "Quarter",
|
|
171
|
+
rect: "Rectangle",
|
|
172
|
+
regionColorLabel: "Region color label",
|
|
173
|
+
regionColorTooltip: "Region color tooltip",
|
|
174
|
+
right: "Right",
|
|
175
|
+
rightTooltip: "Right tooltip",
|
|
176
|
+
ringGauge: "Ring gauge",
|
|
177
|
+
rosePie: "Rose pie",
|
|
178
|
+
roundRect: "Round rectangle",
|
|
179
|
+
scatter: "Scatter chart",
|
|
180
|
+
scatterShape: "Scatter shape",
|
|
181
|
+
second: "Second",
|
|
182
|
+
select: "Select",
|
|
183
|
+
selectDesc: "Triggered when a user selects part of the data in the chart",
|
|
184
|
+
selectedPointsDesc: "Selected points",
|
|
185
|
+
seriesChartType: "Series chart type",
|
|
186
|
+
seriesName: "Series name",
|
|
187
|
+
show: "Show",
|
|
188
|
+
showAxis: "Axis hide",
|
|
189
|
+
showXAxis: "X-axis hide",
|
|
190
|
+
showYAxis: "Y-axis hide",
|
|
191
|
+
smooth: "Smooth curve",
|
|
192
|
+
solid: "Solid",
|
|
193
|
+
ascending: "Ascending",
|
|
194
|
+
descending: "Descending",
|
|
195
|
+
sortOrder: "Sort order",
|
|
196
|
+
sortable: "Sortable",
|
|
197
|
+
sortBy: "Sort by",
|
|
198
|
+
spending: "Spending",
|
|
199
|
+
stackedAreaLine: "Stacked area line",
|
|
200
|
+
stackedBar: "Stacked bar",
|
|
201
|
+
stackedLine: "Stacked line",
|
|
202
|
+
stageGauge: "Stage speed gauge",
|
|
203
|
+
start: "Start",
|
|
204
|
+
startTime: "Start time",
|
|
205
|
+
step: "Step",
|
|
206
|
+
temperatureGauge: "Temperature gauge chart",
|
|
207
|
+
time: "Time",
|
|
208
|
+
timeAxis: "Time axis",
|
|
209
|
+
timeColumn: "Time column",
|
|
210
|
+
timeGranularity: "Time granularity",
|
|
211
|
+
timeRange: "Time range",
|
|
212
|
+
title: "Title",
|
|
213
|
+
titleDesc: "Current chart title",
|
|
214
|
+
titlePosition: "Title position",
|
|
215
|
+
titlePositionVertical: "Title position vertical",
|
|
216
|
+
tooltip: "Tooltip",
|
|
217
|
+
top: "Top",
|
|
218
|
+
topTooltip: "Top tooltip",
|
|
219
|
+
trendLine: "Trend line",
|
|
220
|
+
triangle: "Triangle",
|
|
221
|
+
type: "Type",
|
|
222
|
+
uIMode: "UI mode",
|
|
223
|
+
unSelect: "Unselect",
|
|
224
|
+
unknown: "Unknown",
|
|
225
|
+
unselectDesc:
|
|
226
|
+
"Triggered when a user unselects part of the data in the chart",
|
|
227
|
+
value: "Value",
|
|
228
|
+
valueAxis: "Value axis",
|
|
229
|
+
vertical: "Vertical",
|
|
230
|
+
waterfallBar: "Waterfall chart",
|
|
231
|
+
week: "Week",
|
|
232
|
+
xAxis: "X-axis",
|
|
233
|
+
xAxisDirection: "X-axis direction",
|
|
234
|
+
xAxisLabels: "Labels-X",
|
|
235
|
+
xAxisLabelsTooltip: "Label data for axis-X (JSON array)",
|
|
236
|
+
xAxisName: "X-axis name",
|
|
237
|
+
xAxisType: "X-axis type",
|
|
238
|
+
xAxisTypeTooltip:
|
|
239
|
+
"Automatically detected based on x-axis data. for type detail, refer to: ",
|
|
240
|
+
yAxis: "Y-axis",
|
|
241
|
+
yAxisDataFormat: "Y-axis data type",
|
|
242
|
+
yAxisDataFormatTooltip: `Indicates the value of each coordinate. example: '{{value * 100 + "%"}}'`,
|
|
243
|
+
yAxisIndex: "Y-axis index",
|
|
244
|
+
yAxisName: "Y-axis name",
|
|
245
|
+
yAxisType: "Y-axis type",
|
|
246
|
+
year: "Year",
|
|
247
|
+
zoomLevelChange: "Zoom level change",
|
|
248
|
+
zoomLevelChangeDesc: "Triggers when the map zoom level changes",
|
|
249
|
+
},
|
|
250
|
+
// region totalChart
|
|
251
|
+
totalChart: {
|
|
252
|
+
dataStyle: "Data style",
|
|
253
|
+
dataType: "Data type",
|
|
254
|
+
dataValue: "Data value",
|
|
255
|
+
decreaseColor: "Decrease color",
|
|
256
|
+
decreaseIcon: "Decrease icon",
|
|
257
|
+
defaultTitle: "Total chart",
|
|
258
|
+
icon: "Icon",
|
|
259
|
+
increaseColor: "Increase color",
|
|
260
|
+
increaseIcon: "Increase icon",
|
|
261
|
+
number: "number",
|
|
262
|
+
precision: "Precision",
|
|
263
|
+
showIcon: "Show icon",
|
|
264
|
+
showSubData: "Show data",
|
|
265
|
+
showTitle: "Show title",
|
|
266
|
+
showTrendIndicator: "Show trend indicator",
|
|
267
|
+
string: "string",
|
|
268
|
+
subData: "Sub data",
|
|
269
|
+
title: "Title",
|
|
270
|
+
totalType: "Total chart type",
|
|
271
|
+
trendIndicator: "Trend indicator",
|
|
272
|
+
unit: "Unit",
|
|
273
|
+
},
|
|
274
|
+
// region tableChart
|
|
275
|
+
tableChart: {
|
|
276
|
+
align: "Alignment",
|
|
277
|
+
center: "Center",
|
|
278
|
+
columnSettings: "Column Settings",
|
|
279
|
+
columns: "Columns",
|
|
280
|
+
dataIndex: "Data Index",
|
|
281
|
+
dataStyle: "Data style",
|
|
282
|
+
dataType: "Data type",
|
|
283
|
+
dataValue: "Data value",
|
|
284
|
+
defaultHiddenColumns: "Default Hidden Columns",
|
|
285
|
+
fixed: "Fixed",
|
|
286
|
+
left: "Left",
|
|
287
|
+
none: "None",
|
|
288
|
+
number: "number",
|
|
289
|
+
removeColumn: "Remove Column",
|
|
290
|
+
right: "Right",
|
|
291
|
+
title: "Title",
|
|
292
|
+
visible: "Visible",
|
|
293
|
+
width: "Width",
|
|
294
|
+
newColumn: "New column",
|
|
295
|
+
defaultTitle: "Table Chart",
|
|
296
|
+
},
|
|
297
|
+
// region map chart
|
|
298
|
+
mapChart: {
|
|
299
|
+
borderColor: "Border color",
|
|
300
|
+
borderWidth: "Border width",
|
|
301
|
+
defaultTitle: "Map chart",
|
|
302
|
+
emphasisColor: "Emphasis color",
|
|
303
|
+
mapType: "GEO Data",
|
|
304
|
+
mapDataUrl: "Map data url",
|
|
305
|
+
mapDataUrlTooltip: "Provide a valid JSON file URL to load map data.",
|
|
306
|
+
regionHeight: "Region height",
|
|
307
|
+
roam: "Roam",
|
|
308
|
+
showVisualMap: "Show visual map",
|
|
309
|
+
regionValue: "Region value",
|
|
310
|
+
regionName: "Region name",
|
|
311
|
+
regionMapType: "Region map Type",
|
|
312
|
+
value: "Value",
|
|
313
|
+
showLabel: "Show label",
|
|
314
|
+
mapUrl: "Map data url",
|
|
315
|
+
mapUrlTooltip: "Provide a valid JSON file URL to load map data.",
|
|
316
|
+
},
|
|
317
|
+
// region linearTrend chart
|
|
318
|
+
linearTrendlineChart: {
|
|
319
|
+
defaultTitle: "Linear trendline chart",
|
|
320
|
+
linearTrendlineType: "Linear trendline chart type",
|
|
321
|
+
},
|
|
322
|
+
// region heatmapChart
|
|
323
|
+
heatmapChart: {
|
|
324
|
+
bottom: "Bottom",
|
|
325
|
+
color: "Colors",
|
|
326
|
+
defaultBottom: "30",
|
|
327
|
+
defaultLeft: "15",
|
|
328
|
+
defaultMax: "100",
|
|
329
|
+
defaultMin: "0",
|
|
330
|
+
defaultRight: "10",
|
|
331
|
+
defaultTitle: "Heatmap chart",
|
|
332
|
+
defaultTop: "15",
|
|
333
|
+
heatmapType: "Heatmap chart type",
|
|
334
|
+
labelVisibility: "Label",
|
|
335
|
+
left: "Left",
|
|
336
|
+
max: "Max",
|
|
337
|
+
min: "Min",
|
|
338
|
+
right: "Right",
|
|
339
|
+
title: "Title",
|
|
340
|
+
tooltip: "Tooltip",
|
|
341
|
+
top: "Top",
|
|
342
|
+
xAxisData: "X-Axis data",
|
|
343
|
+
xAxisVisibility: "X-Axis",
|
|
344
|
+
xAxisVisibilityTooltip: "Divide the area horizontally.",
|
|
345
|
+
yAxisData: "Y-Axis data",
|
|
346
|
+
yAxisVisibility: "Y-Axis",
|
|
347
|
+
yAxisVisibilityTooltip: "Divide the area vertically.",
|
|
348
|
+
},
|
|
349
|
+
// region percentageChart
|
|
350
|
+
percentageChart: {
|
|
351
|
+
defaultTitle: "Percentage chart",
|
|
352
|
+
},
|
|
353
|
+
// region mixedLineBarChart
|
|
354
|
+
mixedLineBarChart: {
|
|
355
|
+
defaultTitle: "Mixed Line & Bar chart",
|
|
356
|
+
},
|
|
357
|
+
// region lineChart
|
|
358
|
+
lineChart: {
|
|
359
|
+
animationDuration: "Animation duration",
|
|
360
|
+
area: "Area chart",
|
|
361
|
+
areaPiece: "Area piece",
|
|
362
|
+
areaPieces: "Area pieces",
|
|
363
|
+
borderColor: "Border color",
|
|
364
|
+
borderType: "Border type",
|
|
365
|
+
borderWidth: "Border width",
|
|
366
|
+
color: "Color",
|
|
367
|
+
dashed: "Dashed",
|
|
368
|
+
defaultTitle: "Line chart",
|
|
369
|
+
dotted: "Dotted",
|
|
370
|
+
from: "From",
|
|
371
|
+
name: "Name",
|
|
372
|
+
none: "None",
|
|
373
|
+
polar: "Polar chart",
|
|
374
|
+
showEndLabel: "End label",
|
|
375
|
+
solid: "Solid",
|
|
376
|
+
stacked: "Stacked chart",
|
|
377
|
+
symbol: "Symbol",
|
|
378
|
+
symbolSize: "Symbol size",
|
|
379
|
+
to: "To",
|
|
380
|
+
type: "Type",
|
|
381
|
+
showTrendline: "Show trendline",
|
|
382
|
+
},
|
|
383
|
+
// region twoLineChart
|
|
384
|
+
twoLineChart: {
|
|
385
|
+
defaultTitle: "Two line chart",
|
|
386
|
+
},
|
|
387
|
+
// region multiLineChart
|
|
388
|
+
multiLineChart: {
|
|
389
|
+
defaultTitle: "Multi line chart",
|
|
390
|
+
},
|
|
391
|
+
// region pieChart
|
|
392
|
+
pieChart: {
|
|
393
|
+
area: "Area",
|
|
394
|
+
borderRadius: "Border radius",
|
|
395
|
+
center: "Center",
|
|
396
|
+
defaultTitle: "Pie chart",
|
|
397
|
+
edge: "Edge",
|
|
398
|
+
endAngle: "End angle",
|
|
399
|
+
inner: "Inner",
|
|
400
|
+
inside: "Inside",
|
|
401
|
+
itemBg: "Background image",
|
|
402
|
+
itemColor: "Color",
|
|
403
|
+
itemShadowBlur: "Shadow blur",
|
|
404
|
+
itemShadowColor: "Shadow color",
|
|
405
|
+
labelAlignTo: "AlignTo",
|
|
406
|
+
labelBleedMargin: "Bleed margin",
|
|
407
|
+
labelEdgeDistance: "Edge distance",
|
|
408
|
+
labelLine: "Label line",
|
|
409
|
+
labelLineLength2: "Label line length2",
|
|
410
|
+
labelLineLength: "Label line length",
|
|
411
|
+
labelPosition: "Position",
|
|
412
|
+
left: "Left",
|
|
413
|
+
mapUrl: "Map uRL",
|
|
414
|
+
none: "None",
|
|
415
|
+
outer: "Outer",
|
|
416
|
+
outside: "Outside",
|
|
417
|
+
padAngle: "Pad angle",
|
|
418
|
+
radius: "Radius",
|
|
419
|
+
roseType: "Rose type",
|
|
420
|
+
showLabel: "Show label",
|
|
421
|
+
startAngle: "Start angle",
|
|
422
|
+
top: "Top",
|
|
423
|
+
rowLimit: "Row limit",
|
|
424
|
+
rowLimitTooltip: "Limit row to display",
|
|
425
|
+
},
|
|
426
|
+
// region barChart
|
|
427
|
+
barChart: {
|
|
428
|
+
axisLabelDistance: "Axis label distance",
|
|
429
|
+
axisTickColor: "AxisTick color",
|
|
430
|
+
axisTickLength: "axisTick length",
|
|
431
|
+
axisTickWidth: "axisTick width",
|
|
432
|
+
axisTickWidthStage: "axisTick width",
|
|
433
|
+
barWidth: "Bar width(%)",
|
|
434
|
+
bgColor: "Background color",
|
|
435
|
+
bottom: "Bottom",
|
|
436
|
+
chartType: "Chart type",
|
|
437
|
+
chartTypeTooltip: "Select the types of charts.",
|
|
438
|
+
clockDefaultPointerIcon:
|
|
439
|
+
"path://M2.9,0.7L2.9,0.7c1.4,0,2.6,1.2,2.6,2.6v115c0,1.4-1.2,2.6-2.6,2.6l0,0c-1.4,0-2.6-1.2-2.6-2.6V3.3C0.3,1.9,1.4,0.7,2.9,0.7z",
|
|
440
|
+
defaultAxisLabelDistance: "10",
|
|
441
|
+
defaultAxisTickColor: "#444444",
|
|
442
|
+
defaultAxisTickLength: "7",
|
|
443
|
+
defaultAxisTickWidth: "2",
|
|
444
|
+
defaultBarometerPointerIcon:
|
|
445
|
+
"path://M2090.36389,615.30999 l2090.36389,615.30999 c2091.48372,615.30999 2092.40383,616.194028 2092.44859,617.312956 l2096.90698,728.755929 c2097.05155,732.369577 2094.2393,735.416212 2090.62566,735.56078 c2090.53845,735.564269 2090.45117,735.566014 2090.36389,735.566014 l2090.36389,735.566014 c2086.74736,735.566014 2083.81557,732.63423 2083.81557,729.017692 c2083.81557,728.930412 2083.81732,728.84314 2083.82081,728.755929 l2088.2792,617.312956 c2088.32396,616.194028 2089.24407,615.30999 2090.36389,615.30999 z",
|
|
446
|
+
defaultBarometerPointerLength: "125",
|
|
447
|
+
defaultBarometerPointerWidth: "3",
|
|
448
|
+
defaultBarometerPointer_Y: "-10",
|
|
449
|
+
defaultBottom: "60",
|
|
450
|
+
defaultEndAngle: "-30",
|
|
451
|
+
defaultGap: "2",
|
|
452
|
+
defaultGradeBarPointerLength: "25",
|
|
453
|
+
defaultGradeBarPointerWidth: "10",
|
|
454
|
+
defaultGradeBarPointer_Y: "45",
|
|
455
|
+
defaultLeft: "35",
|
|
456
|
+
defaultMax: "100",
|
|
457
|
+
defaultMin: "0",
|
|
458
|
+
defaultMultiTitlePointerIcon:
|
|
459
|
+
"path://M2.9,0.7L2.9,0.7c1.4,0,2.6,1.2,2.6,2.6v115c0,1.4-1.2,2.6-2.6,2.6l0,0c-1.4,0-2.6-1.2-2.6-2.6V3.3C0.3,1.9,1.4,0.7,2.9,0.7z",
|
|
460
|
+
defaultPointerLength: "50",
|
|
461
|
+
defaultPointerWidth: "5",
|
|
462
|
+
defaultPointer_Y: "0",
|
|
463
|
+
defaultPosition_X: "50",
|
|
464
|
+
defaultPosition_Y: "60",
|
|
465
|
+
defaultProgressBarWidth: "10",
|
|
466
|
+
defaultRadius: "80",
|
|
467
|
+
defaultRingProgressBarWidth: "20",
|
|
468
|
+
defaultSplitNumber: "10",
|
|
469
|
+
defaultStageAxisTickColor: "#ffffff",
|
|
470
|
+
defaultStageProgressBarWidth: "15",
|
|
471
|
+
defaultStartAngle: "210",
|
|
472
|
+
defaultTemperatureAxisLabelDistance: "30",
|
|
473
|
+
defaultTemperatureProgressBarWidth: "35",
|
|
474
|
+
defaultTemperatureRadius: "60",
|
|
475
|
+
defaultTitle: "Bar chart",
|
|
476
|
+
defaultTop: "60",
|
|
477
|
+
defaultWidth: "80",
|
|
478
|
+
endAngle: "End angle",
|
|
479
|
+
gap: "Gap",
|
|
480
|
+
gradeDefaultPointerIcon: "path://M12.8,0.7l12,40.1H0.7L12.8,0.7z",
|
|
481
|
+
gradeProgressBarString: "Progress bar string",
|
|
482
|
+
label: "Label",
|
|
483
|
+
left: "Left",
|
|
484
|
+
max: "Max",
|
|
485
|
+
min: "Min",
|
|
486
|
+
pointerIcon: "Pointer icon",
|
|
487
|
+
pointerIconTooltip: "Select the pointer icon",
|
|
488
|
+
pointerLength: "Pointer length",
|
|
489
|
+
pointerWidth: "Pointer width",
|
|
490
|
+
pointer_Y: "Pointer-Y",
|
|
491
|
+
pointer_Y_Tooltip: "Select the y-value of the pointer.",
|
|
492
|
+
polarEndAngle: "End angle",
|
|
493
|
+
polarIsTangent: "Tangential chart",
|
|
494
|
+
polarLabelData: "Label data",
|
|
495
|
+
polarRadiusEnd: "End radius",
|
|
496
|
+
polarRadiusStart: "Start radius",
|
|
497
|
+
polarStartAngle: "Start angle",
|
|
498
|
+
position_x: "Position-X",
|
|
499
|
+
position_y: "Position-Y",
|
|
500
|
+
progressBar: "Progress bar",
|
|
501
|
+
progressBarColor: "Progress bar color",
|
|
502
|
+
progressBarWidth: "Progress bar width",
|
|
503
|
+
race: "Race",
|
|
504
|
+
radius: "Radius",
|
|
505
|
+
radiusAxisMax: "Max",
|
|
506
|
+
roundCap: "Round cap",
|
|
507
|
+
showBg: "Show bar background",
|
|
508
|
+
splitNumber: "Split number",
|
|
509
|
+
stack: "Stacked",
|
|
510
|
+
startAngle: "Start angle",
|
|
511
|
+
title: "Title",
|
|
512
|
+
tooltip: "Tooltip",
|
|
513
|
+
top: "Top",
|
|
514
|
+
width: "Width",
|
|
515
|
+
},
|
|
516
|
+
// region style
|
|
517
|
+
style: {
|
|
518
|
+
align: "Text Align",
|
|
519
|
+
alignTooltip: "Text alignment in the column",
|
|
520
|
+
fixed: "Fixed Position",
|
|
521
|
+
width: "Width",
|
|
522
|
+
columnStyle: "Column Style",
|
|
523
|
+
// Column Style
|
|
524
|
+
textStyles: "Text Styles",
|
|
525
|
+
backgroundBorder: "Background & Border",
|
|
526
|
+
spacing: "Spacing",
|
|
527
|
+
// Text Styles
|
|
528
|
+
fontSize: "Font Size",
|
|
529
|
+
fontSizeTooltip: "Font size in pixels",
|
|
530
|
+
fontFamily: "Font Family",
|
|
531
|
+
fontWeight: "Font Weight",
|
|
532
|
+
fontWeightTooltip: "Font weight (normal, bold, 100-900)",
|
|
533
|
+
fontStyle: "Font Style",
|
|
534
|
+
fontStyleTooltip: "Font style (normal, italic, oblique)",
|
|
535
|
+
color: "Text Color",
|
|
536
|
+
textAlign: "Text Align",
|
|
537
|
+
textAlignTooltip: "Text alignment (left, center, right, justify)",
|
|
538
|
+
textDecoration: "Text Decoration",
|
|
539
|
+
textDecorationTooltip: "Text decoration (none, underline, line-through)",
|
|
540
|
+
lineHeight: "Line Height",
|
|
541
|
+
letterSpacing: "Letter Spacing",
|
|
542
|
+
normal: "Normal",
|
|
543
|
+
italic: "Italic",
|
|
544
|
+
oblique: "Oblique",
|
|
545
|
+
shadowColor: "ShadowColor",
|
|
546
|
+
boxShadow: "BoxShadow",
|
|
547
|
+
// Background & Border
|
|
548
|
+
backgroundColor: "Background Color",
|
|
549
|
+
borderWidth: "Border Width",
|
|
550
|
+
borderStyle: "Border Style",
|
|
551
|
+
borderStyleTooltip: "Border style (solid, dashed, dotted, etc.)",
|
|
552
|
+
borderColor: "Border Color",
|
|
553
|
+
borderRadius: "Border Radius",
|
|
554
|
+
// Spacing
|
|
555
|
+
padding: "Padding",
|
|
556
|
+
margin: "Margin",
|
|
557
|
+
},
|
|
558
|
+
};
|