I could use some help. I have never been able to get the chart to react to any attempt to get the chart panel or background to disappear. Becoming plain white would work as well. The other thing I have not been able to do is to increase the width of the line series. I have been quite successful in zooming and scrolling and synchronizing, but I just need a hint on the syntax of some of these simpler things.
Thanks!
Bill
lineseries width, Panel transparency
Re: lineseries width, Panel transparency
Hi Bill,
Don't hesitate to let us know if you still find problems with it.
Here you have a simple code snipped that seems to do both features you demand:BillCII wrote:I could use some help. I have never been able to get the chart to react to any attempt to get the chart panel or background to disappear. Becoming plain white would work as well. The other thing I have not been able to do is to increase the width of the line series. I have been quite successful in zooming and scrolling and synchronizing, but I just need a hint on the syntax of some of these simpler things.
Code: Select all
function draw() {
Chart1=new Tee.Chart("canvas1");
s = new Tee.Line().addRandom();
Chart1.addSeries(s);
s.format.stroke.size=3;
Chart1.panel.transparent=true;
Chart1.walls.back.visible=false;
Chart1.draw();
}
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |