Hello,
I want to use jqxBarGauge inside a div with 300px x 125px. i need this size because i want to add a lot of jqxBarGauge in same screen.
https://jseditor.io/?key=9ebb01eb894711ecb79fc4377264e2bc
i have some missing space.
i tried to use
$(document).ready(function ()
{
$('#barGauge').jqxBarGauge({
colorScheme: "scheme01",
width: '100%',
height: '100%',
values: [98.7],
startAngle: 180,
endAngle: 360
});
});
and
$(document).ready(function ()
{
$('#barGauge').jqxBarGauge({
colorScheme: "scheme01",
width: 300,
height: 125,
values: [98.7],
startAngle: 180,
endAngle: 360
});
});
but none works properly
i want the gauge use all space inside 300 px x 125px, is possible?
Best Regards