Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 8x 8x 7x 8x 7x 8x 7x | <div class="pb-1 pt-1" [style.width.px]="barWidth()">
<div class="text-secondary si-body" aria-hidden="true"> {{ series().valuePercent }}% </div>
<div
class="bar-background w-100"
[style.height.px]="barHeight()"
[style.border-radius.px]="barHeight() / 2"
>
<div
class="bar-foreground h-100"
[style.width.%]="series().valuePercent"
[style.backgroundColor]="'var(--' + series().colorToken + ')'"
[style.height.px]="barHeight()"
[style.border-radius.px]="barHeight() / 2"
></div>
</div>
</div>
|