I would like to know the code behind this sample chart to have different line style
http://www.steema.com/img_products/gall ... 00x600.jpg
and how to resize chart depend detect user screen's resolution.
Thanks,
Different line style & resize depend on screen resolution
Re: Different line style & resize depend on screen resolution
Hi Beige,
Let me show the picture you talk about:
This seems the Interpolating line series demo with the BlackIsBlack theme.
Here there are some of the properties set for the lines:
Note that you can see the code of the demos in the same demos application.
About the screen resolution, you can retrieve it with this:
then you could use this proportion to change chart's proportion.
Let me show the picture you talk about:
This seems the Interpolating line series demo with the BlackIsBlack theme.
Here there are some of the properties set for the lines:
Code: Select all
line1.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle;
line1.Pointer.HorizSize = 3;
line1.Pointer.VertSize = 3;
line1.Pointer.Visible = true;
About the screen resolution, you can retrieve it with this:
Code: Select all
SystemInformation.PrimaryMonitorSize
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Different line style & resize depend on screen resolution
So the chart style is LinePoint? Do this kind of style also apply on line or fastline?
Re: Different line style & resize depend on screen resolution
Hi Beige,
This is a line series with its pointers visible.
Fast lines series has no pointer that could be shown.
To see how this example has been done, please, take a look at the code in the demo All Features\Welcome !\Chart styles\Standard\Line(Strip)\Interpolating line series.
You should find tutorials and demos at TeeChart programs group.
This is a line series with its pointers visible.
Fast lines series has no pointer that could be shown.
To see how this example has been done, please, take a look at the code in the demo All Features\Welcome !\Chart styles\Standard\Line(Strip)\Interpolating line series.
You should find tutorials and demos at TeeChart programs group.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |