Some properties not being saved.
Some properties not being saved.
I am using the TVolumePipeSeries and there are some of the properties that are not being correctly saved and are being reset at run-time.
I attached a JPG file - the transparency of the border pen for the volume pipe is one that I have to keep changing - if I set it in the development environment it gets reset at runtime. How do I set this programatically?
Thanks,
Robert.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Some properties not being saved.
Hi Robert,
Using our current sources, If I change it at design-time, save the project and reload it, the property is still at the same value I set it, it's being correctly serialized. Is this what doesn't work for you? Which TeeChart version are you using?MVBobj wrote: I am using the TVolumePipeSeries and there are some of the properties that are not being correctly saved and are being reset at run-time.
You need to set the code below. You'll need to include TeCanvas unit in the uses section.MVBobj wrote: I attached a JPG file - the transparency of the border pen for the volume pipe is one that I have to keep changing - if I set it in the development environment it gets reset at runtime. How do I set this programatically?
Code: Select all
Series1.Pen.Color:=TTeeCanvas.ColorFrom(Series1.Pen.Color, 200);
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |