@luzmo/dashboard-contents-types 1.0.5 → 1.0.6
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/CHANGELOG.md +41 -0
- package/README.md +132 -0
- package/assets/json-schemas/area-chart-options.schema.json.d.ts +23 -42
- package/assets/json-schemas/bar-chart-options.schema.json.d.ts +23 -42
- package/assets/json-schemas/box-plot-options.schema.json.d.ts +20 -39
- package/assets/json-schemas/bubble-chart-options.schema.json.d.ts +23 -42
- package/assets/json-schemas/bullet-chart-options.schema.json.d.ts +13 -35
- package/assets/json-schemas/choropleth-map-options.schema.json.d.ts +16 -38
- package/assets/json-schemas/circular-gauge-options.schema.json.d.ts +20 -39
- package/assets/json-schemas/column-chart-options.schema.json.d.ts +23 -42
- package/assets/json-schemas/combination-chart-options.schema.json.d.ts +23 -42
- package/assets/json-schemas/date-filter-options.schema.json.d.ts +10 -23
- package/assets/json-schemas/donut-chart-options.schema.json.d.ts +23 -42
- package/assets/json-schemas/dropdown-filter-options.schema.json.d.ts +10 -23
- package/assets/json-schemas/evolution-number-options.schema.json.d.ts +19 -38
- package/assets/json-schemas/funnel-chart-options.schema.json.d.ts +23 -42
- package/assets/json-schemas/heat-map-options.schema.json.d.ts +13 -35
- package/assets/json-schemas/heat-table-options.schema.json.d.ts +1514 -0
- package/assets/json-schemas/heat-table-slots.schema.json.d.ts +514 -0
- package/assets/json-schemas/heat-table.schema.json.d.ts +23 -0
- package/assets/json-schemas/hexbin-map-options.schema.json.d.ts +20 -39
- package/assets/json-schemas/image-options.schema.json.d.ts +7 -7
- package/assets/json-schemas/line-chart-options.schema.json.d.ts +23 -42
- package/assets/json-schemas/marker-map-options.schema.json.d.ts +13 -35
- package/assets/json-schemas/ohlc-chart-options.schema.json.d.ts +1568 -0
- package/assets/json-schemas/ohlc-chart-slots.schema.json.d.ts +578 -0
- package/assets/json-schemas/ohlc-chart.schema.json.d.ts +23 -0
- package/assets/json-schemas/options.schema.json.d.ts +9 -0
- package/assets/json-schemas/pivot-table-options.schema.json.d.ts +13 -35
- package/assets/json-schemas/regular-table-options.schema.json.d.ts +13 -35
- package/assets/json-schemas/route-map-options.schema.json.d.ts +13 -35
- package/assets/json-schemas/sankey-diagram-options.schema.json.d.ts +20 -39
- package/assets/json-schemas/scatter-plot-options.schema.json.d.ts +23 -42
- package/assets/json-schemas/search-filter-options.schema.json.d.ts +10 -23
- package/assets/json-schemas/slicer-filter-options.schema.json.d.ts +10 -23
- package/assets/json-schemas/slider-filter-options.schema.json.d.ts +10 -23
- package/assets/json-schemas/slots.schema.json.d.ts +9 -0
- package/assets/json-schemas/speedometer-chart-options.schema.json.d.ts +10 -23
- package/assets/json-schemas/spike-map-options.schema.json.d.ts +20 -39
- package/assets/json-schemas/sunburst-chart-options.schema.json.d.ts +1419 -0
- package/assets/json-schemas/sunburst-chart-slots.schema.json.d.ts +481 -0
- package/assets/json-schemas/sunburst-chart.schema.json.d.ts +23 -0
- package/assets/json-schemas/symbol-map-options.schema.json.d.ts +20 -39
- package/assets/json-schemas/text-options.schema.json.d.ts +8 -21
- package/assets/json-schemas/treemap-chart-options.schema.json.d.ts +23 -42
- package/assets/json-schemas/video-options.schema.json.d.ts +7 -20
- package/assets/json-schemas/wordcloud-chart-options.schema.json.d.ts +22 -41
- package/index.js +95 -65
- package/index.mjs +12875 -7305
- package/json-schemas.d.ts +8181 -4062
- package/json-schemas.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.d.ts +1 -1
- package/src/index.d.ts.map +1 -1
- package/src/lib/heat-table/heat-table-options.d.ts +186 -0
- package/src/lib/heat-table/heat-table-options.d.ts.map +1 -0
- package/src/lib/heat-table/heat-table-slots.d.ts +41 -0
- package/src/lib/heat-table/heat-table-slots.d.ts.map +1 -0
- package/src/lib/heat-table/heat-table.d.ts +24 -0
- package/src/lib/heat-table/heat-table.d.ts.map +1 -0
- package/src/lib/heat-table/index.d.ts +3 -0
- package/src/lib/heat-table/index.d.ts.map +1 -1
- package/src/lib/ohlc-chart/index.d.ts +3 -0
- package/src/lib/ohlc-chart/index.d.ts.map +1 -1
- package/src/lib/ohlc-chart/ohlc-chart-options.d.ts +201 -0
- package/src/lib/ohlc-chart/ohlc-chart-options.d.ts.map +1 -0
- package/src/lib/ohlc-chart/ohlc-chart-slots.d.ts +63 -0
- package/src/lib/ohlc-chart/ohlc-chart-slots.d.ts.map +1 -0
- package/src/lib/ohlc-chart/ohlc-chart.d.ts +24 -0
- package/src/lib/ohlc-chart/ohlc-chart.d.ts.map +1 -0
- package/src/lib/shared/legend.d.ts +1 -1
- package/src/lib/shared/slots.d.ts +1 -0
- package/src/lib/shared/slots.d.ts.map +1 -1
- package/src/lib/shared/theme.d.ts +21 -19
- package/src/lib/shared/theme.d.ts.map +1 -1
- package/src/lib/shared/title.d.ts +1 -1
- package/src/lib/sunburst-chart/index.d.ts +3 -0
- package/src/lib/sunburst-chart/index.d.ts.map +1 -1
- package/src/lib/sunburst-chart/sunburst-chart-options.d.ts +88 -0
- package/src/lib/sunburst-chart/sunburst-chart-options.d.ts.map +1 -0
- package/src/lib/sunburst-chart/sunburst-chart-slots.d.ts +29 -0
- package/src/lib/sunburst-chart/sunburst-chart-slots.d.ts.map +1 -0
- package/src/lib/sunburst-chart/sunburst-chart.d.ts +24 -0
- package/src/lib/sunburst-chart/sunburst-chart.d.ts.map +1 -0
- package/src/options.d.ts +4 -1
- package/src/options.d.ts.map +1 -1
- package/src/slots.d.ts +0 -35
- package/src/slots.d.ts.map +0 -1
|
@@ -1089,7 +1089,7 @@ declare const _default: {
|
|
|
1089
1089
|
"description": "Custom border styling",
|
|
1090
1090
|
"properties": {
|
|
1091
1091
|
"border-bottom-width": {
|
|
1092
|
-
"description": "Border bottom width",
|
|
1092
|
+
"description": "Border bottom width, it is visible when a border style and color are set",
|
|
1093
1093
|
"examples": [
|
|
1094
1094
|
"0px",
|
|
1095
1095
|
"1px",
|
|
@@ -1098,7 +1098,7 @@ declare const _default: {
|
|
|
1098
1098
|
"type": "string"
|
|
1099
1099
|
},
|
|
1100
1100
|
"border-color": {
|
|
1101
|
-
"description": "Border color",
|
|
1101
|
+
"description": "Border color, it is visible when a border style and width are set",
|
|
1102
1102
|
"examples": [
|
|
1103
1103
|
"rgba(216, 216, 216, 1)",
|
|
1104
1104
|
"rgb(147, 146, 148)"
|
|
@@ -1106,7 +1106,7 @@ declare const _default: {
|
|
|
1106
1106
|
"type": "string"
|
|
1107
1107
|
},
|
|
1108
1108
|
"border-left-width": {
|
|
1109
|
-
"description": "Border left width",
|
|
1109
|
+
"description": "Border left width, it is visible when a border style and color are set",
|
|
1110
1110
|
"examples": [
|
|
1111
1111
|
"0px",
|
|
1112
1112
|
"1px",
|
|
@@ -1124,7 +1124,7 @@ declare const _default: {
|
|
|
1124
1124
|
"type": "string"
|
|
1125
1125
|
},
|
|
1126
1126
|
"border-right-width": {
|
|
1127
|
-
"description": "Border right width",
|
|
1127
|
+
"description": "Border right width, it is visible when a border style and color are set",
|
|
1128
1128
|
"examples": [
|
|
1129
1129
|
"0px",
|
|
1130
1130
|
"1px",
|
|
@@ -1133,7 +1133,7 @@ declare const _default: {
|
|
|
1133
1133
|
"type": "string"
|
|
1134
1134
|
},
|
|
1135
1135
|
"border-style": {
|
|
1136
|
-
"description": "Border style",
|
|
1136
|
+
"description": "Border style, it is visible when a border color and width are set",
|
|
1137
1137
|
"examples": [
|
|
1138
1138
|
"none",
|
|
1139
1139
|
"solid",
|
|
@@ -1143,7 +1143,7 @@ declare const _default: {
|
|
|
1143
1143
|
"type": "string"
|
|
1144
1144
|
},
|
|
1145
1145
|
"border-top-width": {
|
|
1146
|
-
"description": "Border top width",
|
|
1146
|
+
"description": "Border top width, it is visible when a border style and color are set",
|
|
1147
1147
|
"examples": [
|
|
1148
1148
|
"0px",
|
|
1149
1149
|
"1px",
|
|
@@ -1185,12 +1185,15 @@ declare const _default: {
|
|
|
1185
1185
|
"type": "object"
|
|
1186
1186
|
},
|
|
1187
1187
|
"colors": {
|
|
1188
|
-
"description": "Custom color palette",
|
|
1188
|
+
"description": "Custom color palette, an array of colors which may affect different areas of a chart, for example, lines, bars, etc.",
|
|
1189
1189
|
"examples": [
|
|
1190
1190
|
[
|
|
1191
|
-
"
|
|
1192
|
-
"
|
|
1193
|
-
"
|
|
1191
|
+
"red",
|
|
1192
|
+
"green",
|
|
1193
|
+
"blue",
|
|
1194
|
+
"yellow",
|
|
1195
|
+
"orange",
|
|
1196
|
+
"purple"
|
|
1194
1197
|
]
|
|
1195
1198
|
],
|
|
1196
1199
|
"items": {
|
|
@@ -1201,19 +1204,6 @@ declare const _default: {
|
|
|
1201
1204
|
"font": {
|
|
1202
1205
|
"description": "Custom font styling",
|
|
1203
1206
|
"properties": {
|
|
1204
|
-
"font-style": {
|
|
1205
|
-
"const": "normal",
|
|
1206
|
-
"description": "Use it to reset the font style to \"normal\"",
|
|
1207
|
-
"type": "string"
|
|
1208
|
-
},
|
|
1209
|
-
"font-weight": {
|
|
1210
|
-
"description": "Font weight",
|
|
1211
|
-
"examples": [
|
|
1212
|
-
400,
|
|
1213
|
-
700
|
|
1214
|
-
],
|
|
1215
|
-
"type": "number"
|
|
1216
|
-
},
|
|
1217
1207
|
"fontFamily": {
|
|
1218
1208
|
"description": "Font family",
|
|
1219
1209
|
"examples": [
|
|
@@ -1226,7 +1216,7 @@ declare const _default: {
|
|
|
1226
1216
|
"type": "string"
|
|
1227
1217
|
},
|
|
1228
1218
|
"fontSize": {
|
|
1229
|
-
"description": "Font size in px",
|
|
1219
|
+
"description": "Font size in px, if not set, it will be inherited from the theme. It can be overridden if more specific \"fontSize\" is set, for example, \"fontSize\" inside options like \"title\", \"axis\", \"legend\", \"tooltip\", etc.",
|
|
1230
1220
|
"examples": [
|
|
1231
1221
|
10,
|
|
1232
1222
|
15,
|
|
@@ -1255,7 +1245,7 @@ declare const _default: {
|
|
|
1255
1245
|
"type": "string"
|
|
1256
1246
|
},
|
|
1257
1247
|
"title": {
|
|
1258
|
-
"description": "Custom title styling",
|
|
1248
|
+
"description": "Custom title styling, it's applied if the title is displayed",
|
|
1259
1249
|
"properties": {
|
|
1260
1250
|
"align": {
|
|
1261
1251
|
"description": "Title align",
|
|
@@ -1288,7 +1278,7 @@ declare const _default: {
|
|
|
1288
1278
|
"type": "boolean"
|
|
1289
1279
|
},
|
|
1290
1280
|
"fontSize": {
|
|
1291
|
-
"description": "Title's font size in px",
|
|
1281
|
+
"description": "Title's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
|
|
1292
1282
|
"examples": [
|
|
1293
1283
|
16,
|
|
1294
1284
|
20
|
|
@@ -1324,7 +1314,7 @@ declare const _default: {
|
|
|
1324
1314
|
"type": "object"
|
|
1325
1315
|
},
|
|
1326
1316
|
"tooltip": {
|
|
1327
|
-
"description": "Custom tooltip styling",
|
|
1317
|
+
"description": "Custom tooltip styling, it's applied if the tooltip is turned on",
|
|
1328
1318
|
"properties": {
|
|
1329
1319
|
"background": {
|
|
1330
1320
|
"description": "Tooltip's background",
|
|
@@ -1337,16 +1327,7 @@ declare const _default: {
|
|
|
1337
1327
|
"type": "string"
|
|
1338
1328
|
},
|
|
1339
1329
|
"fontSize": {
|
|
1340
|
-
"description": "Tooltip's font size in px",
|
|
1341
|
-
"examples": [
|
|
1342
|
-
12,
|
|
1343
|
-
16,
|
|
1344
|
-
20
|
|
1345
|
-
],
|
|
1346
|
-
"type": "number"
|
|
1347
|
-
},
|
|
1348
|
-
"lineHeight": {
|
|
1349
|
-
"description": "Tooltip's line height in px",
|
|
1330
|
+
"description": "Tooltip's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
|
|
1350
1331
|
"examples": [
|
|
1351
1332
|
12,
|
|
1352
1333
|
16,
|
|
@@ -1355,7 +1336,7 @@ declare const _default: {
|
|
|
1355
1336
|
"type": "number"
|
|
1356
1337
|
},
|
|
1357
1338
|
"opacity": {
|
|
1358
|
-
"description": "Tooltip's opacity",
|
|
1339
|
+
"description": "Tooltip's opacity, it should be between 0 and 1, for example, 0.8",
|
|
1359
1340
|
"examples": [
|
|
1360
1341
|
0.5,
|
|
1361
1342
|
0.8,
|
|
@@ -1485,7 +1466,7 @@ declare const _default: {
|
|
|
1485
1466
|
"type": "string"
|
|
1486
1467
|
},
|
|
1487
1468
|
"title": {
|
|
1488
|
-
"description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}",
|
|
1469
|
+
"description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}. It's applied if the title is displayed.",
|
|
1489
1470
|
"examples": [
|
|
1490
1471
|
{
|
|
1491
1472
|
"en": "Title"
|
|
@@ -170,7 +170,7 @@ declare const _default: {
|
|
|
170
170
|
"description": "Custom border styling",
|
|
171
171
|
"properties": {
|
|
172
172
|
"border-bottom-width": {
|
|
173
|
-
"description": "Border bottom width",
|
|
173
|
+
"description": "Border bottom width, it is visible when a border style and color are set",
|
|
174
174
|
"examples": [
|
|
175
175
|
"0px",
|
|
176
176
|
"1px",
|
|
@@ -179,7 +179,7 @@ declare const _default: {
|
|
|
179
179
|
"type": "string"
|
|
180
180
|
},
|
|
181
181
|
"border-color": {
|
|
182
|
-
"description": "Border color",
|
|
182
|
+
"description": "Border color, it is visible when a border style and width are set",
|
|
183
183
|
"examples": [
|
|
184
184
|
"rgba(216, 216, 216, 1)",
|
|
185
185
|
"rgb(147, 146, 148)"
|
|
@@ -187,7 +187,7 @@ declare const _default: {
|
|
|
187
187
|
"type": "string"
|
|
188
188
|
},
|
|
189
189
|
"border-left-width": {
|
|
190
|
-
"description": "Border left width",
|
|
190
|
+
"description": "Border left width, it is visible when a border style and color are set",
|
|
191
191
|
"examples": [
|
|
192
192
|
"0px",
|
|
193
193
|
"1px",
|
|
@@ -205,7 +205,7 @@ declare const _default: {
|
|
|
205
205
|
"type": "string"
|
|
206
206
|
},
|
|
207
207
|
"border-right-width": {
|
|
208
|
-
"description": "Border right width",
|
|
208
|
+
"description": "Border right width, it is visible when a border style and color are set",
|
|
209
209
|
"examples": [
|
|
210
210
|
"0px",
|
|
211
211
|
"1px",
|
|
@@ -214,7 +214,7 @@ declare const _default: {
|
|
|
214
214
|
"type": "string"
|
|
215
215
|
},
|
|
216
216
|
"border-style": {
|
|
217
|
-
"description": "Border style",
|
|
217
|
+
"description": "Border style, it is visible when a border color and width are set",
|
|
218
218
|
"examples": [
|
|
219
219
|
"none",
|
|
220
220
|
"solid",
|
|
@@ -224,7 +224,7 @@ declare const _default: {
|
|
|
224
224
|
"type": "string"
|
|
225
225
|
},
|
|
226
226
|
"border-top-width": {
|
|
227
|
-
"description": "Border top width",
|
|
227
|
+
"description": "Border top width, it is visible when a border style and color are set",
|
|
228
228
|
"examples": [
|
|
229
229
|
"0px",
|
|
230
230
|
"1px",
|
|
@@ -301,7 +301,7 @@ declare const _default: {
|
|
|
301
301
|
"type": "string"
|
|
302
302
|
},
|
|
303
303
|
"title": {
|
|
304
|
-
"description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}",
|
|
304
|
+
"description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}. It's applied if the title is displayed.",
|
|
305
305
|
"examples": [
|
|
306
306
|
{
|
|
307
307
|
"en": "Title"
|
|
@@ -1299,7 +1299,7 @@ declare const _default: {
|
|
|
1299
1299
|
"type": "string"
|
|
1300
1300
|
},
|
|
1301
1301
|
"legend": {
|
|
1302
|
-
"description": "Legend options",
|
|
1302
|
+
"description": "Legend options, they are applied if the legend is displayed",
|
|
1303
1303
|
"properties": {
|
|
1304
1304
|
"position": {
|
|
1305
1305
|
"description": "Position of the legend. Only available when the legend is shown.",
|
|
@@ -1493,7 +1493,7 @@ declare const _default: {
|
|
|
1493
1493
|
"description": "Custom border styling",
|
|
1494
1494
|
"properties": {
|
|
1495
1495
|
"border-bottom-width": {
|
|
1496
|
-
"description": "Border bottom width",
|
|
1496
|
+
"description": "Border bottom width, it is visible when a border style and color are set",
|
|
1497
1497
|
"examples": [
|
|
1498
1498
|
"0px",
|
|
1499
1499
|
"1px",
|
|
@@ -1502,7 +1502,7 @@ declare const _default: {
|
|
|
1502
1502
|
"type": "string"
|
|
1503
1503
|
},
|
|
1504
1504
|
"border-color": {
|
|
1505
|
-
"description": "Border color",
|
|
1505
|
+
"description": "Border color, it is visible when a border style and width are set",
|
|
1506
1506
|
"examples": [
|
|
1507
1507
|
"rgba(216, 216, 216, 1)",
|
|
1508
1508
|
"rgb(147, 146, 148)"
|
|
@@ -1510,7 +1510,7 @@ declare const _default: {
|
|
|
1510
1510
|
"type": "string"
|
|
1511
1511
|
},
|
|
1512
1512
|
"border-left-width": {
|
|
1513
|
-
"description": "Border left width",
|
|
1513
|
+
"description": "Border left width, it is visible when a border style and color are set",
|
|
1514
1514
|
"examples": [
|
|
1515
1515
|
"0px",
|
|
1516
1516
|
"1px",
|
|
@@ -1528,7 +1528,7 @@ declare const _default: {
|
|
|
1528
1528
|
"type": "string"
|
|
1529
1529
|
},
|
|
1530
1530
|
"border-right-width": {
|
|
1531
|
-
"description": "Border right width",
|
|
1531
|
+
"description": "Border right width, it is visible when a border style and color are set",
|
|
1532
1532
|
"examples": [
|
|
1533
1533
|
"0px",
|
|
1534
1534
|
"1px",
|
|
@@ -1537,7 +1537,7 @@ declare const _default: {
|
|
|
1537
1537
|
"type": "string"
|
|
1538
1538
|
},
|
|
1539
1539
|
"border-style": {
|
|
1540
|
-
"description": "Border style",
|
|
1540
|
+
"description": "Border style, it is visible when a border color and width are set",
|
|
1541
1541
|
"examples": [
|
|
1542
1542
|
"none",
|
|
1543
1543
|
"solid",
|
|
@@ -1547,7 +1547,7 @@ declare const _default: {
|
|
|
1547
1547
|
"type": "string"
|
|
1548
1548
|
},
|
|
1549
1549
|
"border-top-width": {
|
|
1550
|
-
"description": "Border top width",
|
|
1550
|
+
"description": "Border top width, it is visible when a border style and color are set",
|
|
1551
1551
|
"examples": [
|
|
1552
1552
|
"0px",
|
|
1553
1553
|
"1px",
|
|
@@ -1589,12 +1589,15 @@ declare const _default: {
|
|
|
1589
1589
|
"type": "object"
|
|
1590
1590
|
},
|
|
1591
1591
|
"colors": {
|
|
1592
|
-
"description": "Custom color palette",
|
|
1592
|
+
"description": "Custom color palette, an array of colors which may affect different areas of a chart, for example, lines, bars, etc.",
|
|
1593
1593
|
"examples": [
|
|
1594
1594
|
[
|
|
1595
|
-
"
|
|
1596
|
-
"
|
|
1597
|
-
"
|
|
1595
|
+
"red",
|
|
1596
|
+
"green",
|
|
1597
|
+
"blue",
|
|
1598
|
+
"yellow",
|
|
1599
|
+
"orange",
|
|
1600
|
+
"purple"
|
|
1598
1601
|
]
|
|
1599
1602
|
],
|
|
1600
1603
|
"items": {
|
|
@@ -1605,19 +1608,6 @@ declare const _default: {
|
|
|
1605
1608
|
"font": {
|
|
1606
1609
|
"description": "Custom font styling",
|
|
1607
1610
|
"properties": {
|
|
1608
|
-
"font-style": {
|
|
1609
|
-
"const": "normal",
|
|
1610
|
-
"description": "Use it to reset the font style to \"normal\"",
|
|
1611
|
-
"type": "string"
|
|
1612
|
-
},
|
|
1613
|
-
"font-weight": {
|
|
1614
|
-
"description": "Font weight",
|
|
1615
|
-
"examples": [
|
|
1616
|
-
400,
|
|
1617
|
-
700
|
|
1618
|
-
],
|
|
1619
|
-
"type": "number"
|
|
1620
|
-
},
|
|
1621
1611
|
"fontFamily": {
|
|
1622
1612
|
"description": "Font family",
|
|
1623
1613
|
"examples": [
|
|
@@ -1630,7 +1620,7 @@ declare const _default: {
|
|
|
1630
1620
|
"type": "string"
|
|
1631
1621
|
},
|
|
1632
1622
|
"fontSize": {
|
|
1633
|
-
"description": "Font size in px",
|
|
1623
|
+
"description": "Font size in px, if not set, it will be inherited from the theme. It can be overridden if more specific \"fontSize\" is set, for example, \"fontSize\" inside options like \"title\", \"axis\", \"legend\", \"tooltip\", etc.",
|
|
1634
1624
|
"examples": [
|
|
1635
1625
|
10,
|
|
1636
1626
|
15,
|
|
@@ -1659,10 +1649,10 @@ declare const _default: {
|
|
|
1659
1649
|
"type": "string"
|
|
1660
1650
|
},
|
|
1661
1651
|
"legend": {
|
|
1662
|
-
"description": "Custom legend styling",
|
|
1652
|
+
"description": "Custom legend styling, it's applied if the legend is displayed",
|
|
1663
1653
|
"properties": {
|
|
1664
1654
|
"fontSize": {
|
|
1665
|
-
"description": "Legend font size in px",
|
|
1655
|
+
"description": "Legend font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
|
|
1666
1656
|
"examples": [
|
|
1667
1657
|
12,
|
|
1668
1658
|
16
|
|
@@ -1696,7 +1686,7 @@ declare const _default: {
|
|
|
1696
1686
|
"type": "object"
|
|
1697
1687
|
},
|
|
1698
1688
|
"title": {
|
|
1699
|
-
"description": "Custom title styling",
|
|
1689
|
+
"description": "Custom title styling, it's applied if the title is displayed",
|
|
1700
1690
|
"properties": {
|
|
1701
1691
|
"align": {
|
|
1702
1692
|
"description": "Title align",
|
|
@@ -1729,7 +1719,7 @@ declare const _default: {
|
|
|
1729
1719
|
"type": "boolean"
|
|
1730
1720
|
},
|
|
1731
1721
|
"fontSize": {
|
|
1732
|
-
"description": "Title's font size in px",
|
|
1722
|
+
"description": "Title's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
|
|
1733
1723
|
"examples": [
|
|
1734
1724
|
16,
|
|
1735
1725
|
20
|
|
@@ -1765,7 +1755,7 @@ declare const _default: {
|
|
|
1765
1755
|
"type": "object"
|
|
1766
1756
|
},
|
|
1767
1757
|
"tooltip": {
|
|
1768
|
-
"description": "Custom tooltip styling",
|
|
1758
|
+
"description": "Custom tooltip styling, it's applied if the tooltip is turned on",
|
|
1769
1759
|
"properties": {
|
|
1770
1760
|
"background": {
|
|
1771
1761
|
"description": "Tooltip's background",
|
|
@@ -1778,16 +1768,7 @@ declare const _default: {
|
|
|
1778
1768
|
"type": "string"
|
|
1779
1769
|
},
|
|
1780
1770
|
"fontSize": {
|
|
1781
|
-
"description": "Tooltip's font size in px",
|
|
1782
|
-
"examples": [
|
|
1783
|
-
12,
|
|
1784
|
-
16,
|
|
1785
|
-
20
|
|
1786
|
-
],
|
|
1787
|
-
"type": "number"
|
|
1788
|
-
},
|
|
1789
|
-
"lineHeight": {
|
|
1790
|
-
"description": "Tooltip's line height in px",
|
|
1771
|
+
"description": "Tooltip's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
|
|
1791
1772
|
"examples": [
|
|
1792
1773
|
12,
|
|
1793
1774
|
16,
|
|
@@ -1796,7 +1777,7 @@ declare const _default: {
|
|
|
1796
1777
|
"type": "number"
|
|
1797
1778
|
},
|
|
1798
1779
|
"opacity": {
|
|
1799
|
-
"description": "Tooltip's opacity",
|
|
1780
|
+
"description": "Tooltip's opacity, it should be between 0 and 1, for example, 0.8",
|
|
1800
1781
|
"examples": [
|
|
1801
1782
|
0.5,
|
|
1802
1783
|
0.8,
|
|
@@ -1826,7 +1807,7 @@ declare const _default: {
|
|
|
1826
1807
|
"type": "string"
|
|
1827
1808
|
},
|
|
1828
1809
|
"title": {
|
|
1829
|
-
"description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}",
|
|
1810
|
+
"description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}. It's applied if the title is displayed.",
|
|
1830
1811
|
"examples": [
|
|
1831
1812
|
{
|
|
1832
1813
|
"en": "Title"
|
|
@@ -1001,7 +1001,7 @@ declare const _default: {
|
|
|
1001
1001
|
"description": "Custom border styling",
|
|
1002
1002
|
"properties": {
|
|
1003
1003
|
"border-bottom-width": {
|
|
1004
|
-
"description": "Border bottom width",
|
|
1004
|
+
"description": "Border bottom width, it is visible when a border style and color are set",
|
|
1005
1005
|
"examples": [
|
|
1006
1006
|
"0px",
|
|
1007
1007
|
"1px",
|
|
@@ -1010,7 +1010,7 @@ declare const _default: {
|
|
|
1010
1010
|
"type": "string"
|
|
1011
1011
|
},
|
|
1012
1012
|
"border-color": {
|
|
1013
|
-
"description": "Border color",
|
|
1013
|
+
"description": "Border color, it is visible when a border style and width are set",
|
|
1014
1014
|
"examples": [
|
|
1015
1015
|
"rgba(216, 216, 216, 1)",
|
|
1016
1016
|
"rgb(147, 146, 148)"
|
|
@@ -1018,7 +1018,7 @@ declare const _default: {
|
|
|
1018
1018
|
"type": "string"
|
|
1019
1019
|
},
|
|
1020
1020
|
"border-left-width": {
|
|
1021
|
-
"description": "Border left width",
|
|
1021
|
+
"description": "Border left width, it is visible when a border style and color are set",
|
|
1022
1022
|
"examples": [
|
|
1023
1023
|
"0px",
|
|
1024
1024
|
"1px",
|
|
@@ -1036,7 +1036,7 @@ declare const _default: {
|
|
|
1036
1036
|
"type": "string"
|
|
1037
1037
|
},
|
|
1038
1038
|
"border-right-width": {
|
|
1039
|
-
"description": "Border right width",
|
|
1039
|
+
"description": "Border right width, it is visible when a border style and color are set",
|
|
1040
1040
|
"examples": [
|
|
1041
1041
|
"0px",
|
|
1042
1042
|
"1px",
|
|
@@ -1045,7 +1045,7 @@ declare const _default: {
|
|
|
1045
1045
|
"type": "string"
|
|
1046
1046
|
},
|
|
1047
1047
|
"border-style": {
|
|
1048
|
-
"description": "Border style",
|
|
1048
|
+
"description": "Border style, it is visible when a border color and width are set",
|
|
1049
1049
|
"examples": [
|
|
1050
1050
|
"none",
|
|
1051
1051
|
"solid",
|
|
@@ -1055,7 +1055,7 @@ declare const _default: {
|
|
|
1055
1055
|
"type": "string"
|
|
1056
1056
|
},
|
|
1057
1057
|
"border-top-width": {
|
|
1058
|
-
"description": "Border top width",
|
|
1058
|
+
"description": "Border top width, it is visible when a border style and color are set",
|
|
1059
1059
|
"examples": [
|
|
1060
1060
|
"0px",
|
|
1061
1061
|
"1px",
|
|
@@ -1099,19 +1099,6 @@ declare const _default: {
|
|
|
1099
1099
|
"font": {
|
|
1100
1100
|
"description": "Custom font styling",
|
|
1101
1101
|
"properties": {
|
|
1102
|
-
"font-style": {
|
|
1103
|
-
"const": "normal",
|
|
1104
|
-
"description": "Use it to reset the font style to \"normal\"",
|
|
1105
|
-
"type": "string"
|
|
1106
|
-
},
|
|
1107
|
-
"font-weight": {
|
|
1108
|
-
"description": "Font weight",
|
|
1109
|
-
"examples": [
|
|
1110
|
-
400,
|
|
1111
|
-
700
|
|
1112
|
-
],
|
|
1113
|
-
"type": "number"
|
|
1114
|
-
},
|
|
1115
1102
|
"fontFamily": {
|
|
1116
1103
|
"description": "Font family",
|
|
1117
1104
|
"examples": [
|
|
@@ -1124,7 +1111,7 @@ declare const _default: {
|
|
|
1124
1111
|
"type": "string"
|
|
1125
1112
|
},
|
|
1126
1113
|
"fontSize": {
|
|
1127
|
-
"description": "Font size in px",
|
|
1114
|
+
"description": "Font size in px, if not set, it will be inherited from the theme. It can be overridden if more specific \"fontSize\" is set, for example, \"fontSize\" inside options like \"title\", \"axis\", \"legend\", \"tooltip\", etc.",
|
|
1128
1115
|
"examples": [
|
|
1129
1116
|
10,
|
|
1130
1117
|
15,
|
|
@@ -1153,7 +1140,7 @@ declare const _default: {
|
|
|
1153
1140
|
"type": "string"
|
|
1154
1141
|
},
|
|
1155
1142
|
"title": {
|
|
1156
|
-
"description": "Custom title styling",
|
|
1143
|
+
"description": "Custom title styling, it's applied if the title is displayed",
|
|
1157
1144
|
"properties": {
|
|
1158
1145
|
"align": {
|
|
1159
1146
|
"description": "Title align",
|
|
@@ -1186,7 +1173,7 @@ declare const _default: {
|
|
|
1186
1173
|
"type": "boolean"
|
|
1187
1174
|
},
|
|
1188
1175
|
"fontSize": {
|
|
1189
|
-
"description": "Title's font size in px",
|
|
1176
|
+
"description": "Title's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
|
|
1190
1177
|
"examples": [
|
|
1191
1178
|
16,
|
|
1192
1179
|
20
|
|
@@ -1222,7 +1209,7 @@ declare const _default: {
|
|
|
1222
1209
|
"type": "object"
|
|
1223
1210
|
},
|
|
1224
1211
|
"tooltip": {
|
|
1225
|
-
"description": "Custom tooltip styling",
|
|
1212
|
+
"description": "Custom tooltip styling, it's applied if the tooltip is turned on",
|
|
1226
1213
|
"properties": {
|
|
1227
1214
|
"background": {
|
|
1228
1215
|
"description": "Tooltip's background",
|
|
@@ -1235,16 +1222,7 @@ declare const _default: {
|
|
|
1235
1222
|
"type": "string"
|
|
1236
1223
|
},
|
|
1237
1224
|
"fontSize": {
|
|
1238
|
-
"description": "Tooltip's font size in px",
|
|
1239
|
-
"examples": [
|
|
1240
|
-
12,
|
|
1241
|
-
16,
|
|
1242
|
-
20
|
|
1243
|
-
],
|
|
1244
|
-
"type": "number"
|
|
1245
|
-
},
|
|
1246
|
-
"lineHeight": {
|
|
1247
|
-
"description": "Tooltip's line height in px",
|
|
1225
|
+
"description": "Tooltip's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
|
|
1248
1226
|
"examples": [
|
|
1249
1227
|
12,
|
|
1250
1228
|
16,
|
|
@@ -1253,7 +1231,7 @@ declare const _default: {
|
|
|
1253
1231
|
"type": "number"
|
|
1254
1232
|
},
|
|
1255
1233
|
"opacity": {
|
|
1256
|
-
"description": "Tooltip's opacity",
|
|
1234
|
+
"description": "Tooltip's opacity, it should be between 0 and 1, for example, 0.8",
|
|
1257
1235
|
"examples": [
|
|
1258
1236
|
0.5,
|
|
1259
1237
|
0.8,
|
|
@@ -1383,7 +1361,7 @@ declare const _default: {
|
|
|
1383
1361
|
"type": "string"
|
|
1384
1362
|
},
|
|
1385
1363
|
"title": {
|
|
1386
|
-
"description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}",
|
|
1364
|
+
"description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}. It's applied if the title is displayed.",
|
|
1387
1365
|
"examples": [
|
|
1388
1366
|
{
|
|
1389
1367
|
"en": "Title"
|