I am using the gauge.js library and I need to add custom icons to the gauge bars.
var opts = { };
var target = document.getElementById('guage');
var gauge = new Gauge(target).setOptions(opts);
gauge.set(50); // set actual value
<script src="https://cdnjs.cloudflare.com/ajax/libs/gauge.js/1.3.5/gauge.min.js"></script>
<canvas id="guage" data-type="radial-gauge"
data-width="500" data-height="500"
data-min-value="0" data-max-value="10"
data-exact-ticks="true" data-major-ticks="1,2,3,4,5,6,7,8,9,10" data-minor-ticks="2"
data-highlights="0">
</canvas>
It's not documented, but by studying the
render
method, it seems you can override it.You can create your own label renderer.
Caveat: Of course, since you are rendering on top of the existing renderer, the symbols will appear above the gauge pointer. If you really want to fix this, you would need to override the whole method and add a custom mixin call to call your own function to make this extensible.