@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
|
@@ -127,7 +127,7 @@ declare const _default: {
|
|
|
127
127
|
"description": "Custom border styling",
|
|
128
128
|
"properties": {
|
|
129
129
|
"border-bottom-width": {
|
|
130
|
-
"description": "Border bottom width",
|
|
130
|
+
"description": "Border bottom width, it is visible when a border style and color are set",
|
|
131
131
|
"examples": [
|
|
132
132
|
"0px",
|
|
133
133
|
"1px",
|
|
@@ -136,7 +136,7 @@ declare const _default: {
|
|
|
136
136
|
"type": "string"
|
|
137
137
|
},
|
|
138
138
|
"border-color": {
|
|
139
|
-
"description": "Border color",
|
|
139
|
+
"description": "Border color, it is visible when a border style and width are set",
|
|
140
140
|
"examples": [
|
|
141
141
|
"rgba(216, 216, 216, 1)",
|
|
142
142
|
"rgb(147, 146, 148)"
|
|
@@ -144,7 +144,7 @@ declare const _default: {
|
|
|
144
144
|
"type": "string"
|
|
145
145
|
},
|
|
146
146
|
"border-left-width": {
|
|
147
|
-
"description": "Border left width",
|
|
147
|
+
"description": "Border left width, it is visible when a border style and color are set",
|
|
148
148
|
"examples": [
|
|
149
149
|
"0px",
|
|
150
150
|
"1px",
|
|
@@ -162,7 +162,7 @@ declare const _default: {
|
|
|
162
162
|
"type": "string"
|
|
163
163
|
},
|
|
164
164
|
"border-right-width": {
|
|
165
|
-
"description": "Border right width",
|
|
165
|
+
"description": "Border right width, it is visible when a border style and color are set",
|
|
166
166
|
"examples": [
|
|
167
167
|
"0px",
|
|
168
168
|
"1px",
|
|
@@ -171,7 +171,7 @@ declare const _default: {
|
|
|
171
171
|
"type": "string"
|
|
172
172
|
},
|
|
173
173
|
"border-style": {
|
|
174
|
-
"description": "Border style",
|
|
174
|
+
"description": "Border style, it is visible when a border color and width are set",
|
|
175
175
|
"examples": [
|
|
176
176
|
"none",
|
|
177
177
|
"solid",
|
|
@@ -181,7 +181,7 @@ declare const _default: {
|
|
|
181
181
|
"type": "string"
|
|
182
182
|
},
|
|
183
183
|
"border-top-width": {
|
|
184
|
-
"description": "Border top width",
|
|
184
|
+
"description": "Border top width, it is visible when a border style and color are set",
|
|
185
185
|
"examples": [
|
|
186
186
|
"0px",
|
|
187
187
|
"1px",
|
|
@@ -225,19 +225,6 @@ declare const _default: {
|
|
|
225
225
|
"font": {
|
|
226
226
|
"description": "Custom font styling",
|
|
227
227
|
"properties": {
|
|
228
|
-
"font-style": {
|
|
229
|
-
"const": "normal",
|
|
230
|
-
"description": "Use it to reset the font style to \"normal\"",
|
|
231
|
-
"type": "string"
|
|
232
|
-
},
|
|
233
|
-
"font-weight": {
|
|
234
|
-
"description": "Font weight",
|
|
235
|
-
"examples": [
|
|
236
|
-
400,
|
|
237
|
-
700
|
|
238
|
-
],
|
|
239
|
-
"type": "number"
|
|
240
|
-
},
|
|
241
228
|
"fontFamily": {
|
|
242
229
|
"description": "Font family",
|
|
243
230
|
"examples": [
|
|
@@ -250,7 +237,7 @@ declare const _default: {
|
|
|
250
237
|
"type": "string"
|
|
251
238
|
},
|
|
252
239
|
"fontSize": {
|
|
253
|
-
"description": "Font size in px",
|
|
240
|
+
"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.",
|
|
254
241
|
"examples": [
|
|
255
242
|
10,
|
|
256
243
|
15,
|
|
@@ -297,7 +284,7 @@ declare const _default: {
|
|
|
297
284
|
"type": "string"
|
|
298
285
|
},
|
|
299
286
|
"title": {
|
|
300
|
-
"description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}",
|
|
287
|
+
"description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}. It's applied if the title is displayed.",
|
|
301
288
|
"examples": [
|
|
302
289
|
{
|
|
303
290
|
"en": "Title"
|
|
@@ -2978,7 +2978,7 @@ declare const _default: {
|
|
|
2978
2978
|
"type": "object"
|
|
2979
2979
|
},
|
|
2980
2980
|
"legend": {
|
|
2981
|
-
"description": "Legend options",
|
|
2981
|
+
"description": "Legend options, they are applied if the legend is displayed",
|
|
2982
2982
|
"properties": {
|
|
2983
2983
|
"position": {
|
|
2984
2984
|
"description": "Position of the legend. Only available when the legend is shown.",
|
|
@@ -3128,7 +3128,7 @@ declare const _default: {
|
|
|
3128
3128
|
"description": "Custom border styling",
|
|
3129
3129
|
"properties": {
|
|
3130
3130
|
"border-bottom-width": {
|
|
3131
|
-
"description": "Border bottom width",
|
|
3131
|
+
"description": "Border bottom width, it is visible when a border style and color are set",
|
|
3132
3132
|
"examples": [
|
|
3133
3133
|
"0px",
|
|
3134
3134
|
"1px",
|
|
@@ -3137,7 +3137,7 @@ declare const _default: {
|
|
|
3137
3137
|
"type": "string"
|
|
3138
3138
|
},
|
|
3139
3139
|
"border-color": {
|
|
3140
|
-
"description": "Border color",
|
|
3140
|
+
"description": "Border color, it is visible when a border style and width are set",
|
|
3141
3141
|
"examples": [
|
|
3142
3142
|
"rgba(216, 216, 216, 1)",
|
|
3143
3143
|
"rgb(147, 146, 148)"
|
|
@@ -3145,7 +3145,7 @@ declare const _default: {
|
|
|
3145
3145
|
"type": "string"
|
|
3146
3146
|
},
|
|
3147
3147
|
"border-left-width": {
|
|
3148
|
-
"description": "Border left width",
|
|
3148
|
+
"description": "Border left width, it is visible when a border style and color are set",
|
|
3149
3149
|
"examples": [
|
|
3150
3150
|
"0px",
|
|
3151
3151
|
"1px",
|
|
@@ -3163,7 +3163,7 @@ declare const _default: {
|
|
|
3163
3163
|
"type": "string"
|
|
3164
3164
|
},
|
|
3165
3165
|
"border-right-width": {
|
|
3166
|
-
"description": "Border right width",
|
|
3166
|
+
"description": "Border right width, it is visible when a border style and color are set",
|
|
3167
3167
|
"examples": [
|
|
3168
3168
|
"0px",
|
|
3169
3169
|
"1px",
|
|
@@ -3172,7 +3172,7 @@ declare const _default: {
|
|
|
3172
3172
|
"type": "string"
|
|
3173
3173
|
},
|
|
3174
3174
|
"border-style": {
|
|
3175
|
-
"description": "Border style",
|
|
3175
|
+
"description": "Border style, it is visible when a border color and width are set",
|
|
3176
3176
|
"examples": [
|
|
3177
3177
|
"none",
|
|
3178
3178
|
"solid",
|
|
@@ -3182,7 +3182,7 @@ declare const _default: {
|
|
|
3182
3182
|
"type": "string"
|
|
3183
3183
|
},
|
|
3184
3184
|
"border-top-width": {
|
|
3185
|
-
"description": "Border top width",
|
|
3185
|
+
"description": "Border top width, it is visible when a border style and color are set",
|
|
3186
3186
|
"examples": [
|
|
3187
3187
|
"0px",
|
|
3188
3188
|
"1px",
|
|
@@ -3224,12 +3224,15 @@ declare const _default: {
|
|
|
3224
3224
|
"type": "object"
|
|
3225
3225
|
},
|
|
3226
3226
|
"colors": {
|
|
3227
|
-
"description": "Custom color palette",
|
|
3227
|
+
"description": "Custom color palette, an array of colors which may affect different areas of a chart, for example, lines, bars, etc.",
|
|
3228
3228
|
"examples": [
|
|
3229
3229
|
[
|
|
3230
|
-
"
|
|
3231
|
-
"
|
|
3232
|
-
"
|
|
3230
|
+
"red",
|
|
3231
|
+
"green",
|
|
3232
|
+
"blue",
|
|
3233
|
+
"yellow",
|
|
3234
|
+
"orange",
|
|
3235
|
+
"purple"
|
|
3233
3236
|
]
|
|
3234
3237
|
],
|
|
3235
3238
|
"items": {
|
|
@@ -3240,19 +3243,6 @@ declare const _default: {
|
|
|
3240
3243
|
"font": {
|
|
3241
3244
|
"description": "Custom font styling",
|
|
3242
3245
|
"properties": {
|
|
3243
|
-
"font-style": {
|
|
3244
|
-
"const": "normal",
|
|
3245
|
-
"description": "Use it to reset the font style to \"normal\"",
|
|
3246
|
-
"type": "string"
|
|
3247
|
-
},
|
|
3248
|
-
"font-weight": {
|
|
3249
|
-
"description": "Font weight",
|
|
3250
|
-
"examples": [
|
|
3251
|
-
400,
|
|
3252
|
-
700
|
|
3253
|
-
],
|
|
3254
|
-
"type": "number"
|
|
3255
|
-
},
|
|
3256
3246
|
"fontFamily": {
|
|
3257
3247
|
"description": "Font family",
|
|
3258
3248
|
"examples": [
|
|
@@ -3265,7 +3255,7 @@ declare const _default: {
|
|
|
3265
3255
|
"type": "string"
|
|
3266
3256
|
},
|
|
3267
3257
|
"fontSize": {
|
|
3268
|
-
"description": "Font size in px",
|
|
3258
|
+
"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.",
|
|
3269
3259
|
"examples": [
|
|
3270
3260
|
10,
|
|
3271
3261
|
15,
|
|
@@ -3294,10 +3284,10 @@ declare const _default: {
|
|
|
3294
3284
|
"type": "string"
|
|
3295
3285
|
},
|
|
3296
3286
|
"legend": {
|
|
3297
|
-
"description": "Custom legend styling",
|
|
3287
|
+
"description": "Custom legend styling, it's applied if the legend is displayed",
|
|
3298
3288
|
"properties": {
|
|
3299
3289
|
"fontSize": {
|
|
3300
|
-
"description": "Legend font size in px",
|
|
3290
|
+
"description": "Legend font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
|
|
3301
3291
|
"examples": [
|
|
3302
3292
|
12,
|
|
3303
3293
|
16
|
|
@@ -3331,7 +3321,7 @@ declare const _default: {
|
|
|
3331
3321
|
"type": "object"
|
|
3332
3322
|
},
|
|
3333
3323
|
"title": {
|
|
3334
|
-
"description": "Custom title styling",
|
|
3324
|
+
"description": "Custom title styling, it's applied if the title is displayed",
|
|
3335
3325
|
"properties": {
|
|
3336
3326
|
"align": {
|
|
3337
3327
|
"description": "Title align",
|
|
@@ -3364,7 +3354,7 @@ declare const _default: {
|
|
|
3364
3354
|
"type": "boolean"
|
|
3365
3355
|
},
|
|
3366
3356
|
"fontSize": {
|
|
3367
|
-
"description": "Title's font size in px",
|
|
3357
|
+
"description": "Title's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
|
|
3368
3358
|
"examples": [
|
|
3369
3359
|
16,
|
|
3370
3360
|
20
|
|
@@ -3400,7 +3390,7 @@ declare const _default: {
|
|
|
3400
3390
|
"type": "object"
|
|
3401
3391
|
},
|
|
3402
3392
|
"tooltip": {
|
|
3403
|
-
"description": "Custom tooltip styling",
|
|
3393
|
+
"description": "Custom tooltip styling, it's applied if the tooltip is turned on",
|
|
3404
3394
|
"properties": {
|
|
3405
3395
|
"background": {
|
|
3406
3396
|
"description": "Tooltip's background",
|
|
@@ -3413,16 +3403,7 @@ declare const _default: {
|
|
|
3413
3403
|
"type": "string"
|
|
3414
3404
|
},
|
|
3415
3405
|
"fontSize": {
|
|
3416
|
-
"description": "Tooltip's font size in px",
|
|
3417
|
-
"examples": [
|
|
3418
|
-
12,
|
|
3419
|
-
16,
|
|
3420
|
-
20
|
|
3421
|
-
],
|
|
3422
|
-
"type": "number"
|
|
3423
|
-
},
|
|
3424
|
-
"lineHeight": {
|
|
3425
|
-
"description": "Tooltip's line height in px",
|
|
3406
|
+
"description": "Tooltip's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
|
|
3426
3407
|
"examples": [
|
|
3427
3408
|
12,
|
|
3428
3409
|
16,
|
|
@@ -3431,7 +3412,7 @@ declare const _default: {
|
|
|
3431
3412
|
"type": "number"
|
|
3432
3413
|
},
|
|
3433
3414
|
"opacity": {
|
|
3434
|
-
"description": "Tooltip's opacity",
|
|
3415
|
+
"description": "Tooltip's opacity, it should be between 0 and 1, for example, 0.8",
|
|
3435
3416
|
"examples": [
|
|
3436
3417
|
0.5,
|
|
3437
3418
|
0.8,
|
|
@@ -3461,7 +3442,7 @@ declare const _default: {
|
|
|
3461
3442
|
"type": "string"
|
|
3462
3443
|
},
|
|
3463
3444
|
"title": {
|
|
3464
|
-
"description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}",
|
|
3445
|
+
"description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}. It's applied if the title is displayed.",
|
|
3465
3446
|
"examples": [
|
|
3466
3447
|
{
|
|
3467
3448
|
"en": "Title"
|
|
@@ -121,7 +121,7 @@ declare const _default: {
|
|
|
121
121
|
"description": "Custom border styling",
|
|
122
122
|
"properties": {
|
|
123
123
|
"border-bottom-width": {
|
|
124
|
-
"description": "Border bottom width",
|
|
124
|
+
"description": "Border bottom width, it is visible when a border style and color are set",
|
|
125
125
|
"examples": [
|
|
126
126
|
"0px",
|
|
127
127
|
"1px",
|
|
@@ -130,7 +130,7 @@ declare const _default: {
|
|
|
130
130
|
"type": "string"
|
|
131
131
|
},
|
|
132
132
|
"border-color": {
|
|
133
|
-
"description": "Border color",
|
|
133
|
+
"description": "Border color, it is visible when a border style and width are set",
|
|
134
134
|
"examples": [
|
|
135
135
|
"rgba(216, 216, 216, 1)",
|
|
136
136
|
"rgb(147, 146, 148)"
|
|
@@ -138,7 +138,7 @@ declare const _default: {
|
|
|
138
138
|
"type": "string"
|
|
139
139
|
},
|
|
140
140
|
"border-left-width": {
|
|
141
|
-
"description": "Border left width",
|
|
141
|
+
"description": "Border left width, it is visible when a border style and color are set",
|
|
142
142
|
"examples": [
|
|
143
143
|
"0px",
|
|
144
144
|
"1px",
|
|
@@ -156,7 +156,7 @@ declare const _default: {
|
|
|
156
156
|
"type": "string"
|
|
157
157
|
},
|
|
158
158
|
"border-right-width": {
|
|
159
|
-
"description": "Border right width",
|
|
159
|
+
"description": "Border right width, it is visible when a border style and color are set",
|
|
160
160
|
"examples": [
|
|
161
161
|
"0px",
|
|
162
162
|
"1px",
|
|
@@ -165,7 +165,7 @@ declare const _default: {
|
|
|
165
165
|
"type": "string"
|
|
166
166
|
},
|
|
167
167
|
"border-style": {
|
|
168
|
-
"description": "Border style",
|
|
168
|
+
"description": "Border style, it is visible when a border color and width are set",
|
|
169
169
|
"examples": [
|
|
170
170
|
"none",
|
|
171
171
|
"solid",
|
|
@@ -175,7 +175,7 @@ declare const _default: {
|
|
|
175
175
|
"type": "string"
|
|
176
176
|
},
|
|
177
177
|
"border-top-width": {
|
|
178
|
-
"description": "Border top width",
|
|
178
|
+
"description": "Border top width, it is visible when a border style and color are set",
|
|
179
179
|
"examples": [
|
|
180
180
|
"0px",
|
|
181
181
|
"1px",
|
|
@@ -219,19 +219,6 @@ declare const _default: {
|
|
|
219
219
|
"font": {
|
|
220
220
|
"description": "Custom font styling",
|
|
221
221
|
"properties": {
|
|
222
|
-
"font-style": {
|
|
223
|
-
"const": "normal",
|
|
224
|
-
"description": "Use it to reset the font style to \"normal\"",
|
|
225
|
-
"type": "string"
|
|
226
|
-
},
|
|
227
|
-
"font-weight": {
|
|
228
|
-
"description": "Font weight",
|
|
229
|
-
"examples": [
|
|
230
|
-
400,
|
|
231
|
-
700
|
|
232
|
-
],
|
|
233
|
-
"type": "number"
|
|
234
|
-
},
|
|
235
222
|
"fontFamily": {
|
|
236
223
|
"description": "Font family",
|
|
237
224
|
"examples": [
|
|
@@ -244,7 +231,7 @@ declare const _default: {
|
|
|
244
231
|
"type": "string"
|
|
245
232
|
},
|
|
246
233
|
"fontSize": {
|
|
247
|
-
"description": "Font size in px",
|
|
234
|
+
"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.",
|
|
248
235
|
"examples": [
|
|
249
236
|
10,
|
|
250
237
|
15,
|
|
@@ -3078,7 +3078,7 @@ declare const _default: {
|
|
|
3078
3078
|
"description": "Custom border styling",
|
|
3079
3079
|
"properties": {
|
|
3080
3080
|
"border-bottom-width": {
|
|
3081
|
-
"description": "Border bottom width",
|
|
3081
|
+
"description": "Border bottom width, it is visible when a border style and color are set",
|
|
3082
3082
|
"examples": [
|
|
3083
3083
|
"0px",
|
|
3084
3084
|
"1px",
|
|
@@ -3087,7 +3087,7 @@ declare const _default: {
|
|
|
3087
3087
|
"type": "string"
|
|
3088
3088
|
},
|
|
3089
3089
|
"border-color": {
|
|
3090
|
-
"description": "Border color",
|
|
3090
|
+
"description": "Border color, it is visible when a border style and width are set",
|
|
3091
3091
|
"examples": [
|
|
3092
3092
|
"rgba(216, 216, 216, 1)",
|
|
3093
3093
|
"rgb(147, 146, 148)"
|
|
@@ -3095,7 +3095,7 @@ declare const _default: {
|
|
|
3095
3095
|
"type": "string"
|
|
3096
3096
|
},
|
|
3097
3097
|
"border-left-width": {
|
|
3098
|
-
"description": "Border left width",
|
|
3098
|
+
"description": "Border left width, it is visible when a border style and color are set",
|
|
3099
3099
|
"examples": [
|
|
3100
3100
|
"0px",
|
|
3101
3101
|
"1px",
|
|
@@ -3113,7 +3113,7 @@ declare const _default: {
|
|
|
3113
3113
|
"type": "string"
|
|
3114
3114
|
},
|
|
3115
3115
|
"border-right-width": {
|
|
3116
|
-
"description": "Border right width",
|
|
3116
|
+
"description": "Border right width, it is visible when a border style and color are set",
|
|
3117
3117
|
"examples": [
|
|
3118
3118
|
"0px",
|
|
3119
3119
|
"1px",
|
|
@@ -3122,7 +3122,7 @@ declare const _default: {
|
|
|
3122
3122
|
"type": "string"
|
|
3123
3123
|
},
|
|
3124
3124
|
"border-style": {
|
|
3125
|
-
"description": "Border style",
|
|
3125
|
+
"description": "Border style, it is visible when a border color and width are set",
|
|
3126
3126
|
"examples": [
|
|
3127
3127
|
"none",
|
|
3128
3128
|
"solid",
|
|
@@ -3132,7 +3132,7 @@ declare const _default: {
|
|
|
3132
3132
|
"type": "string"
|
|
3133
3133
|
},
|
|
3134
3134
|
"border-top-width": {
|
|
3135
|
-
"description": "Border top width",
|
|
3135
|
+
"description": "Border top width, it is visible when a border style and color are set",
|
|
3136
3136
|
"examples": [
|
|
3137
3137
|
"0px",
|
|
3138
3138
|
"1px",
|
|
@@ -3174,12 +3174,15 @@ declare const _default: {
|
|
|
3174
3174
|
"type": "object"
|
|
3175
3175
|
},
|
|
3176
3176
|
"colors": {
|
|
3177
|
-
"description": "Custom color palette",
|
|
3177
|
+
"description": "Custom color palette, an array of colors which may affect different areas of a chart, for example, lines, bars, etc.",
|
|
3178
3178
|
"examples": [
|
|
3179
3179
|
[
|
|
3180
|
-
"
|
|
3181
|
-
"
|
|
3182
|
-
"
|
|
3180
|
+
"red",
|
|
3181
|
+
"green",
|
|
3182
|
+
"blue",
|
|
3183
|
+
"yellow",
|
|
3184
|
+
"orange",
|
|
3185
|
+
"purple"
|
|
3183
3186
|
]
|
|
3184
3187
|
],
|
|
3185
3188
|
"items": {
|
|
@@ -3190,19 +3193,6 @@ declare const _default: {
|
|
|
3190
3193
|
"font": {
|
|
3191
3194
|
"description": "Custom font styling",
|
|
3192
3195
|
"properties": {
|
|
3193
|
-
"font-style": {
|
|
3194
|
-
"const": "normal",
|
|
3195
|
-
"description": "Use it to reset the font style to \"normal\"",
|
|
3196
|
-
"type": "string"
|
|
3197
|
-
},
|
|
3198
|
-
"font-weight": {
|
|
3199
|
-
"description": "Font weight",
|
|
3200
|
-
"examples": [
|
|
3201
|
-
400,
|
|
3202
|
-
700
|
|
3203
|
-
],
|
|
3204
|
-
"type": "number"
|
|
3205
|
-
},
|
|
3206
3196
|
"fontFamily": {
|
|
3207
3197
|
"description": "Font family",
|
|
3208
3198
|
"examples": [
|
|
@@ -3215,7 +3205,7 @@ declare const _default: {
|
|
|
3215
3205
|
"type": "string"
|
|
3216
3206
|
},
|
|
3217
3207
|
"fontSize": {
|
|
3218
|
-
"description": "Font size in px",
|
|
3208
|
+
"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.",
|
|
3219
3209
|
"examples": [
|
|
3220
3210
|
10,
|
|
3221
3211
|
15,
|
|
@@ -3244,10 +3234,10 @@ declare const _default: {
|
|
|
3244
3234
|
"type": "string"
|
|
3245
3235
|
},
|
|
3246
3236
|
"legend": {
|
|
3247
|
-
"description": "Custom legend styling",
|
|
3237
|
+
"description": "Custom legend styling, it's applied if the legend is displayed",
|
|
3248
3238
|
"properties": {
|
|
3249
3239
|
"fontSize": {
|
|
3250
|
-
"description": "Legend font size in px",
|
|
3240
|
+
"description": "Legend font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
|
|
3251
3241
|
"examples": [
|
|
3252
3242
|
12,
|
|
3253
3243
|
16
|
|
@@ -3281,7 +3271,7 @@ declare const _default: {
|
|
|
3281
3271
|
"type": "object"
|
|
3282
3272
|
},
|
|
3283
3273
|
"title": {
|
|
3284
|
-
"description": "Custom title styling",
|
|
3274
|
+
"description": "Custom title styling, it's applied if the title is displayed",
|
|
3285
3275
|
"properties": {
|
|
3286
3276
|
"align": {
|
|
3287
3277
|
"description": "Title align",
|
|
@@ -3314,7 +3304,7 @@ declare const _default: {
|
|
|
3314
3304
|
"type": "boolean"
|
|
3315
3305
|
},
|
|
3316
3306
|
"fontSize": {
|
|
3317
|
-
"description": "Title's font size in px",
|
|
3307
|
+
"description": "Title's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
|
|
3318
3308
|
"examples": [
|
|
3319
3309
|
16,
|
|
3320
3310
|
20
|
|
@@ -3350,7 +3340,7 @@ declare const _default: {
|
|
|
3350
3340
|
"type": "object"
|
|
3351
3341
|
},
|
|
3352
3342
|
"tooltip": {
|
|
3353
|
-
"description": "Custom tooltip styling",
|
|
3343
|
+
"description": "Custom tooltip styling, it's applied if the tooltip is turned on",
|
|
3354
3344
|
"properties": {
|
|
3355
3345
|
"background": {
|
|
3356
3346
|
"description": "Tooltip's background",
|
|
@@ -3363,16 +3353,7 @@ declare const _default: {
|
|
|
3363
3353
|
"type": "string"
|
|
3364
3354
|
},
|
|
3365
3355
|
"fontSize": {
|
|
3366
|
-
"description": "Tooltip's font size in px",
|
|
3367
|
-
"examples": [
|
|
3368
|
-
12,
|
|
3369
|
-
16,
|
|
3370
|
-
20
|
|
3371
|
-
],
|
|
3372
|
-
"type": "number"
|
|
3373
|
-
},
|
|
3374
|
-
"lineHeight": {
|
|
3375
|
-
"description": "Tooltip's line height in px",
|
|
3356
|
+
"description": "Tooltip's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
|
|
3376
3357
|
"examples": [
|
|
3377
3358
|
12,
|
|
3378
3359
|
16,
|
|
@@ -3381,7 +3362,7 @@ declare const _default: {
|
|
|
3381
3362
|
"type": "number"
|
|
3382
3363
|
},
|
|
3383
3364
|
"opacity": {
|
|
3384
|
-
"description": "Tooltip's opacity",
|
|
3365
|
+
"description": "Tooltip's opacity, it should be between 0 and 1, for example, 0.8",
|
|
3385
3366
|
"examples": [
|
|
3386
3367
|
0.5,
|
|
3387
3368
|
0.8,
|
|
@@ -3411,7 +3392,7 @@ declare const _default: {
|
|
|
3411
3392
|
"type": "string"
|
|
3412
3393
|
},
|
|
3413
3394
|
"title": {
|
|
3414
|
-
"description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}",
|
|
3395
|
+
"description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}. It's applied if the title is displayed.",
|
|
3415
3396
|
"examples": [
|
|
3416
3397
|
{
|
|
3417
3398
|
"en": "Title"
|