c066fdd80f
- Sorting must be done on copies to preserve orders. - Indices should be reversed since rendering is also reversed (the back layer (the tallest) is rendered first to create the stacking effect).
8 lines
244 B
Handlebars
8 lines
244 B
Handlebars
<div data-test-chart-tooltip class="chart-tooltip {{if @active "active" "inactive"}}" style={{@style}} ...attributes>
|
|
<ol>
|
|
{{#each @data as |props|}}
|
|
{{yield props.series props.datum (inc props.index)}}
|
|
{{/each}}
|
|
</ol>
|
|
</div>
|