@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
|
@@ -1326,7 +1326,7 @@ declare const _default: {
|
|
|
1326
1326
|
"description": "Custom border styling",
|
|
1327
1327
|
"properties": {
|
|
1328
1328
|
"border-bottom-width": {
|
|
1329
|
-
"description": "Border bottom width",
|
|
1329
|
+
"description": "Border bottom width, it is visible when a border style and color are set",
|
|
1330
1330
|
"examples": [
|
|
1331
1331
|
"0px",
|
|
1332
1332
|
"1px",
|
|
@@ -1335,7 +1335,7 @@ declare const _default: {
|
|
|
1335
1335
|
"type": "string"
|
|
1336
1336
|
},
|
|
1337
1337
|
"border-color": {
|
|
1338
|
-
"description": "Border color",
|
|
1338
|
+
"description": "Border color, it is visible when a border style and width are set",
|
|
1339
1339
|
"examples": [
|
|
1340
1340
|
"rgba(216, 216, 216, 1)",
|
|
1341
1341
|
"rgb(147, 146, 148)"
|
|
@@ -1343,7 +1343,7 @@ declare const _default: {
|
|
|
1343
1343
|
"type": "string"
|
|
1344
1344
|
},
|
|
1345
1345
|
"border-left-width": {
|
|
1346
|
-
"description": "Border left width",
|
|
1346
|
+
"description": "Border left width, it is visible when a border style and color are set",
|
|
1347
1347
|
"examples": [
|
|
1348
1348
|
"0px",
|
|
1349
1349
|
"1px",
|
|
@@ -1361,7 +1361,7 @@ declare const _default: {
|
|
|
1361
1361
|
"type": "string"
|
|
1362
1362
|
},
|
|
1363
1363
|
"border-right-width": {
|
|
1364
|
-
"description": "Border right width",
|
|
1364
|
+
"description": "Border right width, it is visible when a border style and color are set",
|
|
1365
1365
|
"examples": [
|
|
1366
1366
|
"0px",
|
|
1367
1367
|
"1px",
|
|
@@ -1370,7 +1370,7 @@ declare const _default: {
|
|
|
1370
1370
|
"type": "string"
|
|
1371
1371
|
},
|
|
1372
1372
|
"border-style": {
|
|
1373
|
-
"description": "Border style",
|
|
1373
|
+
"description": "Border style, it is visible when a border color and width are set",
|
|
1374
1374
|
"examples": [
|
|
1375
1375
|
"none",
|
|
1376
1376
|
"solid",
|
|
@@ -1380,7 +1380,7 @@ declare const _default: {
|
|
|
1380
1380
|
"type": "string"
|
|
1381
1381
|
},
|
|
1382
1382
|
"border-top-width": {
|
|
1383
|
-
"description": "Border top width",
|
|
1383
|
+
"description": "Border top width, it is visible when a border style and color are set",
|
|
1384
1384
|
"examples": [
|
|
1385
1385
|
"0px",
|
|
1386
1386
|
"1px",
|
|
@@ -1422,12 +1422,15 @@ declare const _default: {
|
|
|
1422
1422
|
"type": "object"
|
|
1423
1423
|
},
|
|
1424
1424
|
"colors": {
|
|
1425
|
-
"description": "Custom color palette",
|
|
1425
|
+
"description": "Custom color palette, an array of colors which may affect different areas of a chart, for example, lines, bars, etc.",
|
|
1426
1426
|
"examples": [
|
|
1427
1427
|
[
|
|
1428
|
-
"
|
|
1429
|
-
"
|
|
1430
|
-
"
|
|
1428
|
+
"red",
|
|
1429
|
+
"green",
|
|
1430
|
+
"blue",
|
|
1431
|
+
"yellow",
|
|
1432
|
+
"orange",
|
|
1433
|
+
"purple"
|
|
1431
1434
|
]
|
|
1432
1435
|
],
|
|
1433
1436
|
"items": {
|
|
@@ -1438,19 +1441,6 @@ declare const _default: {
|
|
|
1438
1441
|
"font": {
|
|
1439
1442
|
"description": "Custom font styling",
|
|
1440
1443
|
"properties": {
|
|
1441
|
-
"font-style": {
|
|
1442
|
-
"const": "normal",
|
|
1443
|
-
"description": "Use it to reset the font style to \"normal\"",
|
|
1444
|
-
"type": "string"
|
|
1445
|
-
},
|
|
1446
|
-
"font-weight": {
|
|
1447
|
-
"description": "Font weight",
|
|
1448
|
-
"examples": [
|
|
1449
|
-
400,
|
|
1450
|
-
700
|
|
1451
|
-
],
|
|
1452
|
-
"type": "number"
|
|
1453
|
-
},
|
|
1454
1444
|
"fontFamily": {
|
|
1455
1445
|
"description": "Font family",
|
|
1456
1446
|
"examples": [
|
|
@@ -1463,7 +1453,7 @@ declare const _default: {
|
|
|
1463
1453
|
"type": "string"
|
|
1464
1454
|
},
|
|
1465
1455
|
"fontSize": {
|
|
1466
|
-
"description": "Font size in px",
|
|
1456
|
+
"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.",
|
|
1467
1457
|
"examples": [
|
|
1468
1458
|
10,
|
|
1469
1459
|
15,
|
|
@@ -1492,7 +1482,7 @@ declare const _default: {
|
|
|
1492
1482
|
"type": "string"
|
|
1493
1483
|
},
|
|
1494
1484
|
"title": {
|
|
1495
|
-
"description": "Custom title styling",
|
|
1485
|
+
"description": "Custom title styling, it's applied if the title is displayed",
|
|
1496
1486
|
"properties": {
|
|
1497
1487
|
"align": {
|
|
1498
1488
|
"description": "Title align",
|
|
@@ -1525,7 +1515,7 @@ declare const _default: {
|
|
|
1525
1515
|
"type": "boolean"
|
|
1526
1516
|
},
|
|
1527
1517
|
"fontSize": {
|
|
1528
|
-
"description": "Title's font size in px",
|
|
1518
|
+
"description": "Title's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
|
|
1529
1519
|
"examples": [
|
|
1530
1520
|
16,
|
|
1531
1521
|
20
|
|
@@ -1561,7 +1551,7 @@ declare const _default: {
|
|
|
1561
1551
|
"type": "object"
|
|
1562
1552
|
},
|
|
1563
1553
|
"tooltip": {
|
|
1564
|
-
"description": "Custom tooltip styling",
|
|
1554
|
+
"description": "Custom tooltip styling, it's applied if the tooltip is turned on",
|
|
1565
1555
|
"properties": {
|
|
1566
1556
|
"background": {
|
|
1567
1557
|
"description": "Tooltip's background",
|
|
@@ -1574,16 +1564,7 @@ declare const _default: {
|
|
|
1574
1564
|
"type": "string"
|
|
1575
1565
|
},
|
|
1576
1566
|
"fontSize": {
|
|
1577
|
-
"description": "Tooltip's font size in px",
|
|
1578
|
-
"examples": [
|
|
1579
|
-
12,
|
|
1580
|
-
16,
|
|
1581
|
-
20
|
|
1582
|
-
],
|
|
1583
|
-
"type": "number"
|
|
1584
|
-
},
|
|
1585
|
-
"lineHeight": {
|
|
1586
|
-
"description": "Tooltip's line height in px",
|
|
1567
|
+
"description": "Tooltip's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
|
|
1587
1568
|
"examples": [
|
|
1588
1569
|
12,
|
|
1589
1570
|
16,
|
|
@@ -1592,7 +1573,7 @@ declare const _default: {
|
|
|
1592
1573
|
"type": "number"
|
|
1593
1574
|
},
|
|
1594
1575
|
"opacity": {
|
|
1595
|
-
"description": "Tooltip's opacity",
|
|
1576
|
+
"description": "Tooltip's opacity, it should be between 0 and 1, for example, 0.8",
|
|
1596
1577
|
"examples": [
|
|
1597
1578
|
0.5,
|
|
1598
1579
|
0.8,
|
|
@@ -1622,7 +1603,7 @@ declare const _default: {
|
|
|
1622
1603
|
"type": "string"
|
|
1623
1604
|
},
|
|
1624
1605
|
"title": {
|
|
1625
|
-
"description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}",
|
|
1606
|
+
"description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}. It's applied if the title is displayed.",
|
|
1626
1607
|
"examples": [
|
|
1627
1608
|
{
|
|
1628
1609
|
"en": "Title"
|
|
@@ -2951,7 +2951,7 @@ declare const _default: {
|
|
|
2951
2951
|
"type": "object"
|
|
2952
2952
|
},
|
|
2953
2953
|
"legend": {
|
|
2954
|
-
"description": "Legend options",
|
|
2954
|
+
"description": "Legend options, they are applied if the legend is displayed",
|
|
2955
2955
|
"properties": {
|
|
2956
2956
|
"position": {
|
|
2957
2957
|
"description": "Position of the legend. Only available when the legend is shown.",
|
|
@@ -3084,7 +3084,7 @@ declare const _default: {
|
|
|
3084
3084
|
"description": "Custom border styling",
|
|
3085
3085
|
"properties": {
|
|
3086
3086
|
"border-bottom-width": {
|
|
3087
|
-
"description": "Border bottom width",
|
|
3087
|
+
"description": "Border bottom width, it is visible when a border style and color are set",
|
|
3088
3088
|
"examples": [
|
|
3089
3089
|
"0px",
|
|
3090
3090
|
"1px",
|
|
@@ -3093,7 +3093,7 @@ declare const _default: {
|
|
|
3093
3093
|
"type": "string"
|
|
3094
3094
|
},
|
|
3095
3095
|
"border-color": {
|
|
3096
|
-
"description": "Border color",
|
|
3096
|
+
"description": "Border color, it is visible when a border style and width are set",
|
|
3097
3097
|
"examples": [
|
|
3098
3098
|
"rgba(216, 216, 216, 1)",
|
|
3099
3099
|
"rgb(147, 146, 148)"
|
|
@@ -3101,7 +3101,7 @@ declare const _default: {
|
|
|
3101
3101
|
"type": "string"
|
|
3102
3102
|
},
|
|
3103
3103
|
"border-left-width": {
|
|
3104
|
-
"description": "Border left width",
|
|
3104
|
+
"description": "Border left width, it is visible when a border style and color are set",
|
|
3105
3105
|
"examples": [
|
|
3106
3106
|
"0px",
|
|
3107
3107
|
"1px",
|
|
@@ -3119,7 +3119,7 @@ declare const _default: {
|
|
|
3119
3119
|
"type": "string"
|
|
3120
3120
|
},
|
|
3121
3121
|
"border-right-width": {
|
|
3122
|
-
"description": "Border right width",
|
|
3122
|
+
"description": "Border right width, it is visible when a border style and color are set",
|
|
3123
3123
|
"examples": [
|
|
3124
3124
|
"0px",
|
|
3125
3125
|
"1px",
|
|
@@ -3128,7 +3128,7 @@ declare const _default: {
|
|
|
3128
3128
|
"type": "string"
|
|
3129
3129
|
},
|
|
3130
3130
|
"border-style": {
|
|
3131
|
-
"description": "Border style",
|
|
3131
|
+
"description": "Border style, it is visible when a border color and width are set",
|
|
3132
3132
|
"examples": [
|
|
3133
3133
|
"none",
|
|
3134
3134
|
"solid",
|
|
@@ -3138,7 +3138,7 @@ declare const _default: {
|
|
|
3138
3138
|
"type": "string"
|
|
3139
3139
|
},
|
|
3140
3140
|
"border-top-width": {
|
|
3141
|
-
"description": "Border top width",
|
|
3141
|
+
"description": "Border top width, it is visible when a border style and color are set",
|
|
3142
3142
|
"examples": [
|
|
3143
3143
|
"0px",
|
|
3144
3144
|
"1px",
|
|
@@ -3180,12 +3180,15 @@ declare const _default: {
|
|
|
3180
3180
|
"type": "object"
|
|
3181
3181
|
},
|
|
3182
3182
|
"colors": {
|
|
3183
|
-
"description": "Custom color palette",
|
|
3183
|
+
"description": "Custom color palette, an array of colors which may affect different areas of a chart, for example, lines, bars, etc.",
|
|
3184
3184
|
"examples": [
|
|
3185
3185
|
[
|
|
3186
|
-
"
|
|
3187
|
-
"
|
|
3188
|
-
"
|
|
3186
|
+
"red",
|
|
3187
|
+
"green",
|
|
3188
|
+
"blue",
|
|
3189
|
+
"yellow",
|
|
3190
|
+
"orange",
|
|
3191
|
+
"purple"
|
|
3189
3192
|
]
|
|
3190
3193
|
],
|
|
3191
3194
|
"items": {
|
|
@@ -3196,19 +3199,6 @@ declare const _default: {
|
|
|
3196
3199
|
"font": {
|
|
3197
3200
|
"description": "Custom font styling",
|
|
3198
3201
|
"properties": {
|
|
3199
|
-
"font-style": {
|
|
3200
|
-
"const": "normal",
|
|
3201
|
-
"description": "Use it to reset the font style to \"normal\"",
|
|
3202
|
-
"type": "string"
|
|
3203
|
-
},
|
|
3204
|
-
"font-weight": {
|
|
3205
|
-
"description": "Font weight",
|
|
3206
|
-
"examples": [
|
|
3207
|
-
400,
|
|
3208
|
-
700
|
|
3209
|
-
],
|
|
3210
|
-
"type": "number"
|
|
3211
|
-
},
|
|
3212
3202
|
"fontFamily": {
|
|
3213
3203
|
"description": "Font family",
|
|
3214
3204
|
"examples": [
|
|
@@ -3221,7 +3211,7 @@ declare const _default: {
|
|
|
3221
3211
|
"type": "string"
|
|
3222
3212
|
},
|
|
3223
3213
|
"fontSize": {
|
|
3224
|
-
"description": "Font size in px",
|
|
3214
|
+
"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.",
|
|
3225
3215
|
"examples": [
|
|
3226
3216
|
10,
|
|
3227
3217
|
15,
|
|
@@ -3250,10 +3240,10 @@ declare const _default: {
|
|
|
3250
3240
|
"type": "string"
|
|
3251
3241
|
},
|
|
3252
3242
|
"legend": {
|
|
3253
|
-
"description": "Custom legend styling",
|
|
3243
|
+
"description": "Custom legend styling, it's applied if the legend is displayed",
|
|
3254
3244
|
"properties": {
|
|
3255
3245
|
"fontSize": {
|
|
3256
|
-
"description": "Legend font size in px",
|
|
3246
|
+
"description": "Legend font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
|
|
3257
3247
|
"examples": [
|
|
3258
3248
|
12,
|
|
3259
3249
|
16
|
|
@@ -3287,7 +3277,7 @@ declare const _default: {
|
|
|
3287
3277
|
"type": "object"
|
|
3288
3278
|
},
|
|
3289
3279
|
"title": {
|
|
3290
|
-
"description": "Custom title styling",
|
|
3280
|
+
"description": "Custom title styling, it's applied if the title is displayed",
|
|
3291
3281
|
"properties": {
|
|
3292
3282
|
"align": {
|
|
3293
3283
|
"description": "Title align",
|
|
@@ -3320,7 +3310,7 @@ declare const _default: {
|
|
|
3320
3310
|
"type": "boolean"
|
|
3321
3311
|
},
|
|
3322
3312
|
"fontSize": {
|
|
3323
|
-
"description": "Title's font size in px",
|
|
3313
|
+
"description": "Title's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
|
|
3324
3314
|
"examples": [
|
|
3325
3315
|
16,
|
|
3326
3316
|
20
|
|
@@ -3356,7 +3346,7 @@ declare const _default: {
|
|
|
3356
3346
|
"type": "object"
|
|
3357
3347
|
},
|
|
3358
3348
|
"tooltip": {
|
|
3359
|
-
"description": "Custom tooltip styling",
|
|
3349
|
+
"description": "Custom tooltip styling, it's applied if the tooltip is turned on",
|
|
3360
3350
|
"properties": {
|
|
3361
3351
|
"background": {
|
|
3362
3352
|
"description": "Tooltip's background",
|
|
@@ -3369,16 +3359,7 @@ declare const _default: {
|
|
|
3369
3359
|
"type": "string"
|
|
3370
3360
|
},
|
|
3371
3361
|
"fontSize": {
|
|
3372
|
-
"description": "Tooltip's font size in px",
|
|
3373
|
-
"examples": [
|
|
3374
|
-
12,
|
|
3375
|
-
16,
|
|
3376
|
-
20
|
|
3377
|
-
],
|
|
3378
|
-
"type": "number"
|
|
3379
|
-
},
|
|
3380
|
-
"lineHeight": {
|
|
3381
|
-
"description": "Tooltip's line height in px",
|
|
3362
|
+
"description": "Tooltip's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
|
|
3382
3363
|
"examples": [
|
|
3383
3364
|
12,
|
|
3384
3365
|
16,
|
|
@@ -3387,7 +3368,7 @@ declare const _default: {
|
|
|
3387
3368
|
"type": "number"
|
|
3388
3369
|
},
|
|
3389
3370
|
"opacity": {
|
|
3390
|
-
"description": "Tooltip's opacity",
|
|
3371
|
+
"description": "Tooltip's opacity, it should be between 0 and 1, for example, 0.8",
|
|
3391
3372
|
"examples": [
|
|
3392
3373
|
0.5,
|
|
3393
3374
|
0.8,
|
|
@@ -3417,7 +3398,7 @@ declare const _default: {
|
|
|
3417
3398
|
"type": "string"
|
|
3418
3399
|
},
|
|
3419
3400
|
"title": {
|
|
3420
|
-
"description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}",
|
|
3401
|
+
"description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}. It's applied if the title is displayed.",
|
|
3421
3402
|
"examples": [
|
|
3422
3403
|
{
|
|
3423
3404
|
"en": "Title"
|
|
@@ -1081,7 +1081,7 @@ declare const _default: {
|
|
|
1081
1081
|
"description": "Custom border styling",
|
|
1082
1082
|
"properties": {
|
|
1083
1083
|
"border-bottom-width": {
|
|
1084
|
-
"description": "Border bottom width",
|
|
1084
|
+
"description": "Border bottom width, it is visible when a border style and color are set",
|
|
1085
1085
|
"examples": [
|
|
1086
1086
|
"0px",
|
|
1087
1087
|
"1px",
|
|
@@ -1090,7 +1090,7 @@ declare const _default: {
|
|
|
1090
1090
|
"type": "string"
|
|
1091
1091
|
},
|
|
1092
1092
|
"border-color": {
|
|
1093
|
-
"description": "Border color",
|
|
1093
|
+
"description": "Border color, it is visible when a border style and width are set",
|
|
1094
1094
|
"examples": [
|
|
1095
1095
|
"rgba(216, 216, 216, 1)",
|
|
1096
1096
|
"rgb(147, 146, 148)"
|
|
@@ -1098,7 +1098,7 @@ declare const _default: {
|
|
|
1098
1098
|
"type": "string"
|
|
1099
1099
|
},
|
|
1100
1100
|
"border-left-width": {
|
|
1101
|
-
"description": "Border left width",
|
|
1101
|
+
"description": "Border left width, it is visible when a border style and color are set",
|
|
1102
1102
|
"examples": [
|
|
1103
1103
|
"0px",
|
|
1104
1104
|
"1px",
|
|
@@ -1116,7 +1116,7 @@ declare const _default: {
|
|
|
1116
1116
|
"type": "string"
|
|
1117
1117
|
},
|
|
1118
1118
|
"border-right-width": {
|
|
1119
|
-
"description": "Border right width",
|
|
1119
|
+
"description": "Border right width, it is visible when a border style and color are set",
|
|
1120
1120
|
"examples": [
|
|
1121
1121
|
"0px",
|
|
1122
1122
|
"1px",
|
|
@@ -1125,7 +1125,7 @@ declare const _default: {
|
|
|
1125
1125
|
"type": "string"
|
|
1126
1126
|
},
|
|
1127
1127
|
"border-style": {
|
|
1128
|
-
"description": "Border style",
|
|
1128
|
+
"description": "Border style, it is visible when a border color and width are set",
|
|
1129
1129
|
"examples": [
|
|
1130
1130
|
"none",
|
|
1131
1131
|
"solid",
|
|
@@ -1135,7 +1135,7 @@ declare const _default: {
|
|
|
1135
1135
|
"type": "string"
|
|
1136
1136
|
},
|
|
1137
1137
|
"border-top-width": {
|
|
1138
|
-
"description": "Border top width",
|
|
1138
|
+
"description": "Border top width, it is visible when a border style and color are set",
|
|
1139
1139
|
"examples": [
|
|
1140
1140
|
"0px",
|
|
1141
1141
|
"1px",
|
|
@@ -1179,19 +1179,6 @@ declare const _default: {
|
|
|
1179
1179
|
"font": {
|
|
1180
1180
|
"description": "Custom font styling",
|
|
1181
1181
|
"properties": {
|
|
1182
|
-
"font-style": {
|
|
1183
|
-
"const": "normal",
|
|
1184
|
-
"description": "Use it to reset the font style to \"normal\"",
|
|
1185
|
-
"type": "string"
|
|
1186
|
-
},
|
|
1187
|
-
"font-weight": {
|
|
1188
|
-
"description": "Font weight",
|
|
1189
|
-
"examples": [
|
|
1190
|
-
400,
|
|
1191
|
-
700
|
|
1192
|
-
],
|
|
1193
|
-
"type": "number"
|
|
1194
|
-
},
|
|
1195
1182
|
"fontFamily": {
|
|
1196
1183
|
"description": "Font family",
|
|
1197
1184
|
"examples": [
|
|
@@ -1204,7 +1191,7 @@ declare const _default: {
|
|
|
1204
1191
|
"type": "string"
|
|
1205
1192
|
},
|
|
1206
1193
|
"fontSize": {
|
|
1207
|
-
"description": "Font size in px",
|
|
1194
|
+
"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.",
|
|
1208
1195
|
"examples": [
|
|
1209
1196
|
10,
|
|
1210
1197
|
15,
|
|
@@ -1233,7 +1220,7 @@ declare const _default: {
|
|
|
1233
1220
|
"type": "string"
|
|
1234
1221
|
},
|
|
1235
1222
|
"title": {
|
|
1236
|
-
"description": "Custom title styling",
|
|
1223
|
+
"description": "Custom title styling, it's applied if the title is displayed",
|
|
1237
1224
|
"properties": {
|
|
1238
1225
|
"align": {
|
|
1239
1226
|
"description": "Title align",
|
|
@@ -1266,7 +1253,7 @@ declare const _default: {
|
|
|
1266
1253
|
"type": "boolean"
|
|
1267
1254
|
},
|
|
1268
1255
|
"fontSize": {
|
|
1269
|
-
"description": "Title's font size in px",
|
|
1256
|
+
"description": "Title's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
|
|
1270
1257
|
"examples": [
|
|
1271
1258
|
16,
|
|
1272
1259
|
20
|
|
@@ -1302,7 +1289,7 @@ declare const _default: {
|
|
|
1302
1289
|
"type": "object"
|
|
1303
1290
|
},
|
|
1304
1291
|
"tooltip": {
|
|
1305
|
-
"description": "Custom tooltip styling",
|
|
1292
|
+
"description": "Custom tooltip styling, it's applied if the tooltip is turned on",
|
|
1306
1293
|
"properties": {
|
|
1307
1294
|
"background": {
|
|
1308
1295
|
"description": "Tooltip's background",
|
|
@@ -1315,16 +1302,7 @@ declare const _default: {
|
|
|
1315
1302
|
"type": "string"
|
|
1316
1303
|
},
|
|
1317
1304
|
"fontSize": {
|
|
1318
|
-
"description": "Tooltip's font size in px",
|
|
1319
|
-
"examples": [
|
|
1320
|
-
12,
|
|
1321
|
-
16,
|
|
1322
|
-
20
|
|
1323
|
-
],
|
|
1324
|
-
"type": "number"
|
|
1325
|
-
},
|
|
1326
|
-
"lineHeight": {
|
|
1327
|
-
"description": "Tooltip's line height in px",
|
|
1305
|
+
"description": "Tooltip's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
|
|
1328
1306
|
"examples": [
|
|
1329
1307
|
12,
|
|
1330
1308
|
16,
|
|
@@ -1333,7 +1311,7 @@ declare const _default: {
|
|
|
1333
1311
|
"type": "number"
|
|
1334
1312
|
},
|
|
1335
1313
|
"opacity": {
|
|
1336
|
-
"description": "Tooltip's opacity",
|
|
1314
|
+
"description": "Tooltip's opacity, it should be between 0 and 1, for example, 0.8",
|
|
1337
1315
|
"examples": [
|
|
1338
1316
|
0.5,
|
|
1339
1317
|
0.8,
|
|
@@ -1363,7 +1341,7 @@ declare const _default: {
|
|
|
1363
1341
|
"type": "string"
|
|
1364
1342
|
},
|
|
1365
1343
|
"title": {
|
|
1366
|
-
"description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}",
|
|
1344
|
+
"description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}. It's applied if the title is displayed.",
|
|
1367
1345
|
"examples": [
|
|
1368
1346
|
{
|
|
1369
1347
|
"en": "Title"
|
|
@@ -958,7 +958,7 @@ declare const _default: {
|
|
|
958
958
|
"type": "object"
|
|
959
959
|
},
|
|
960
960
|
"legend": {
|
|
961
|
-
"description": "Legend options",
|
|
961
|
+
"description": "Legend options, they are applied if the legend is displayed",
|
|
962
962
|
"properties": {
|
|
963
963
|
"position": {
|
|
964
964
|
"description": "Position of the legend. Only available when the legend is shown.",
|
|
@@ -1197,7 +1197,7 @@ declare const _default: {
|
|
|
1197
1197
|
"description": "Custom border styling",
|
|
1198
1198
|
"properties": {
|
|
1199
1199
|
"border-bottom-width": {
|
|
1200
|
-
"description": "Border bottom width",
|
|
1200
|
+
"description": "Border bottom width, it is visible when a border style and color are set",
|
|
1201
1201
|
"examples": [
|
|
1202
1202
|
"0px",
|
|
1203
1203
|
"1px",
|
|
@@ -1206,7 +1206,7 @@ declare const _default: {
|
|
|
1206
1206
|
"type": "string"
|
|
1207
1207
|
},
|
|
1208
1208
|
"border-color": {
|
|
1209
|
-
"description": "Border color",
|
|
1209
|
+
"description": "Border color, it is visible when a border style and width are set",
|
|
1210
1210
|
"examples": [
|
|
1211
1211
|
"rgba(216, 216, 216, 1)",
|
|
1212
1212
|
"rgb(147, 146, 148)"
|
|
@@ -1214,7 +1214,7 @@ declare const _default: {
|
|
|
1214
1214
|
"type": "string"
|
|
1215
1215
|
},
|
|
1216
1216
|
"border-left-width": {
|
|
1217
|
-
"description": "Border left width",
|
|
1217
|
+
"description": "Border left width, it is visible when a border style and color are set",
|
|
1218
1218
|
"examples": [
|
|
1219
1219
|
"0px",
|
|
1220
1220
|
"1px",
|
|
@@ -1232,7 +1232,7 @@ declare const _default: {
|
|
|
1232
1232
|
"type": "string"
|
|
1233
1233
|
},
|
|
1234
1234
|
"border-right-width": {
|
|
1235
|
-
"description": "Border right width",
|
|
1235
|
+
"description": "Border right width, it is visible when a border style and color are set",
|
|
1236
1236
|
"examples": [
|
|
1237
1237
|
"0px",
|
|
1238
1238
|
"1px",
|
|
@@ -1241,7 +1241,7 @@ declare const _default: {
|
|
|
1241
1241
|
"type": "string"
|
|
1242
1242
|
},
|
|
1243
1243
|
"border-style": {
|
|
1244
|
-
"description": "Border style",
|
|
1244
|
+
"description": "Border style, it is visible when a border color and width are set",
|
|
1245
1245
|
"examples": [
|
|
1246
1246
|
"none",
|
|
1247
1247
|
"solid",
|
|
@@ -1251,7 +1251,7 @@ declare const _default: {
|
|
|
1251
1251
|
"type": "string"
|
|
1252
1252
|
},
|
|
1253
1253
|
"border-top-width": {
|
|
1254
|
-
"description": "Border top width",
|
|
1254
|
+
"description": "Border top width, it is visible when a border style and color are set",
|
|
1255
1255
|
"examples": [
|
|
1256
1256
|
"0px",
|
|
1257
1257
|
"1px",
|
|
@@ -1295,19 +1295,6 @@ declare const _default: {
|
|
|
1295
1295
|
"font": {
|
|
1296
1296
|
"description": "Custom font styling",
|
|
1297
1297
|
"properties": {
|
|
1298
|
-
"font-style": {
|
|
1299
|
-
"const": "normal",
|
|
1300
|
-
"description": "Use it to reset the font style to \"normal\"",
|
|
1301
|
-
"type": "string"
|
|
1302
|
-
},
|
|
1303
|
-
"font-weight": {
|
|
1304
|
-
"description": "Font weight",
|
|
1305
|
-
"examples": [
|
|
1306
|
-
400,
|
|
1307
|
-
700
|
|
1308
|
-
],
|
|
1309
|
-
"type": "number"
|
|
1310
|
-
},
|
|
1311
1298
|
"fontFamily": {
|
|
1312
1299
|
"description": "Font family",
|
|
1313
1300
|
"examples": [
|
|
@@ -1320,7 +1307,7 @@ declare const _default: {
|
|
|
1320
1307
|
"type": "string"
|
|
1321
1308
|
},
|
|
1322
1309
|
"fontSize": {
|
|
1323
|
-
"description": "Font size in px",
|
|
1310
|
+
"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.",
|
|
1324
1311
|
"examples": [
|
|
1325
1312
|
10,
|
|
1326
1313
|
15,
|
|
@@ -1349,10 +1336,10 @@ declare const _default: {
|
|
|
1349
1336
|
"type": "string"
|
|
1350
1337
|
},
|
|
1351
1338
|
"legend": {
|
|
1352
|
-
"description": "Custom legend styling",
|
|
1339
|
+
"description": "Custom legend styling, it's applied if the legend is displayed",
|
|
1353
1340
|
"properties": {
|
|
1354
1341
|
"fontSize": {
|
|
1355
|
-
"description": "Legend font size in px",
|
|
1342
|
+
"description": "Legend font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
|
|
1356
1343
|
"examples": [
|
|
1357
1344
|
12,
|
|
1358
1345
|
16
|
|
@@ -1386,7 +1373,7 @@ declare const _default: {
|
|
|
1386
1373
|
"type": "object"
|
|
1387
1374
|
},
|
|
1388
1375
|
"title": {
|
|
1389
|
-
"description": "Custom title styling",
|
|
1376
|
+
"description": "Custom title styling, it's applied if the title is displayed",
|
|
1390
1377
|
"properties": {
|
|
1391
1378
|
"align": {
|
|
1392
1379
|
"description": "Title align",
|
|
@@ -1419,7 +1406,7 @@ declare const _default: {
|
|
|
1419
1406
|
"type": "boolean"
|
|
1420
1407
|
},
|
|
1421
1408
|
"fontSize": {
|
|
1422
|
-
"description": "Title's font size in px",
|
|
1409
|
+
"description": "Title's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
|
|
1423
1410
|
"examples": [
|
|
1424
1411
|
16,
|
|
1425
1412
|
20
|
|
@@ -1455,7 +1442,7 @@ declare const _default: {
|
|
|
1455
1442
|
"type": "object"
|
|
1456
1443
|
},
|
|
1457
1444
|
"tooltip": {
|
|
1458
|
-
"description": "Custom tooltip styling",
|
|
1445
|
+
"description": "Custom tooltip styling, it's applied if the tooltip is turned on",
|
|
1459
1446
|
"properties": {
|
|
1460
1447
|
"background": {
|
|
1461
1448
|
"description": "Tooltip's background",
|
|
@@ -1468,16 +1455,7 @@ declare const _default: {
|
|
|
1468
1455
|
"type": "string"
|
|
1469
1456
|
},
|
|
1470
1457
|
"fontSize": {
|
|
1471
|
-
"description": "Tooltip's font size in px",
|
|
1472
|
-
"examples": [
|
|
1473
|
-
12,
|
|
1474
|
-
16,
|
|
1475
|
-
20
|
|
1476
|
-
],
|
|
1477
|
-
"type": "number"
|
|
1478
|
-
},
|
|
1479
|
-
"lineHeight": {
|
|
1480
|
-
"description": "Tooltip's line height in px",
|
|
1458
|
+
"description": "Tooltip's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
|
|
1481
1459
|
"examples": [
|
|
1482
1460
|
12,
|
|
1483
1461
|
16,
|
|
@@ -1486,7 +1464,7 @@ declare const _default: {
|
|
|
1486
1464
|
"type": "number"
|
|
1487
1465
|
},
|
|
1488
1466
|
"opacity": {
|
|
1489
|
-
"description": "Tooltip's opacity",
|
|
1467
|
+
"description": "Tooltip's opacity, it should be between 0 and 1, for example, 0.8",
|
|
1490
1468
|
"examples": [
|
|
1491
1469
|
0.5,
|
|
1492
1470
|
0.8,
|
|
@@ -1616,7 +1594,7 @@ declare const _default: {
|
|
|
1616
1594
|
"type": "string"
|
|
1617
1595
|
},
|
|
1618
1596
|
"title": {
|
|
1619
|
-
"description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}",
|
|
1597
|
+
"description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}. It's applied if the title is displayed.",
|
|
1620
1598
|
"examples": [
|
|
1621
1599
|
{
|
|
1622
1600
|
"en": "Title"
|