Chartjs-Add arrow to custom horizontal scrollbar Angular/HTML

1👍

If the scrollbar and the chart is one same container than I guess you can try to wrap the chart and the arrows in one overall div, add to this div style position: relative and to each arrow position: absolute; bottom: 0; right/left: 0; You can also add z-index: 1 to arrows to avoid overlapping.

Leave a comment