@colijnit/sharedcomponents 1.0.26 → 1.0.27
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/bundles/colijnit-sharedcomponents.umd.js +2 -4
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/esm2015/lib/components/circular-gauge/co-circular-gauge.component.js +3 -5
- package/fesm2015/colijnit-sharedcomponents.js +2 -4
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/circular-gauge/style/_layout.scss +6 -3
- package/package.json +1 -1
|
@@ -3420,10 +3420,8 @@
|
|
|
3420
3420
|
if (this.value !== undefined) {
|
|
3421
3421
|
var label = this.value ? this.value + "%" : "0%";
|
|
3422
3422
|
return [{
|
|
3423
|
-
content: '<div class="annotation">' +
|
|
3424
|
-
label + '</div>',
|
|
3425
|
-
angle: 90,
|
|
3426
|
-
radius: '50%',
|
|
3423
|
+
content: '<div class="annotation" style="width:20px;height:20px;">' +
|
|
3424
|
+
'<div class="annotation-label">' + label + '</div></div>',
|
|
3427
3425
|
zIndex: '10',
|
|
3428
3426
|
}];
|
|
3429
3427
|
}
|