BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
JS:
<div id="container" style="border:1px solid black;width:500px"></div>
$("#container").ejChart(
{
//...
size: { height: "450", width:"600" },
}); |
We don't set a width for the chart or the container. We don't know how wide the users screen is so we use percentages for the container. Can the charts be setup to work in this configuration?
thanks.
I have tried setting a percentage width but that results in the chart not drawing. It only accepts fixed pixel widths, which don't work for a page that resizes for users.
<div id="container" style="border:2px solid black;"></div>
$("#container").ejChart({
size: { height: "450", width:"50%" },
}); |