Hi Sir,
Thanks for your component.
But in my case there're some problems. I put Char.us.HighChart in the border layouted container. It won't fit the size it should be, even the browser's window has resized.
I change some code in Char.us.HighChart from line 296.
from
if(this.ownerCt)
this.ownerCt.on('render', this.update, this);
} else {
if(this.ownerCt)
this.ownerCt.un('render', this.update, this);
to
if(this.ownerCt)
this.ownerCt.on('afterlayout', this.update, this);
} else {
if(this.ownerCt)
this.ownerCt.un('afterlayout', this.update, this);
Then it works fine.
I hope those code are helpful :D
Hi Sir,
Thanks for your component.
But in my case there're some problems. I put Char.us.HighChart in the border layouted container. It won't fit the size it should be, even the browser's window has resized.
I change some code in Char.us.HighChart from line 296.
from
to
Then it works fine.
I hope those code are helpful :D