@tekkare/auriga 0.2.15 → 0.2.16
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/dist/module.json
CHANGED
|
@@ -425,6 +425,17 @@ export default defineComponent({
|
|
|
425
425
|
}
|
|
426
426
|
}
|
|
427
427
|
};
|
|
428
|
+
props.options["yaxis"] = {
|
|
429
|
+
labels: {
|
|
430
|
+
show: true,
|
|
431
|
+
style: {
|
|
432
|
+
fontFamily: "Figtree, sans-serif",
|
|
433
|
+
fontSize: "14px",
|
|
434
|
+
fontWeight: "400",
|
|
435
|
+
colors: ["#3E3F5E"]
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
};
|
|
428
439
|
} else if (props.type === "bar-horizontal-stack") {
|
|
429
440
|
props.options["plotOptions"] = {
|
|
430
441
|
bar: {
|
|
@@ -493,6 +504,17 @@ export default defineComponent({
|
|
|
493
504
|
}
|
|
494
505
|
}
|
|
495
506
|
};
|
|
507
|
+
props.options["yaxis"] = {
|
|
508
|
+
labels: {
|
|
509
|
+
show: true,
|
|
510
|
+
style: {
|
|
511
|
+
fontFamily: "Figtree, sans-serif",
|
|
512
|
+
fontSize: "14px",
|
|
513
|
+
fontWeight: "400",
|
|
514
|
+
colors: ["#3E3F5E"]
|
|
515
|
+
}
|
|
516
|
+
}
|
|
517
|
+
};
|
|
496
518
|
} else if (props.type === "full-bar-horizontal-stack") {
|
|
497
519
|
props.options["plotOptions"] = {
|
|
498
520
|
bar: {
|