Hi,
We have used the Latest Version of TeeChart with our Project and we are getting following visible differences as shown in attached screenshots.
There are two visible differences:
1] Axis Labels Font Size gets increased.
2] Axis Border gets Invisible.
Please let us know how to resolve them.
Note: We didn't change anything in our project. We checked the same with older TeeChart Version again which is working fine.
TeeChart New Version Integration Issue
TeeChart New Version Integration Issue
- Attachments
-
- With Latest (Dec-15) Version of TeeChart
- Acc Latest.png (42.94 KiB) Viewed 10611 times
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: TeeChart New Version Integration Issue
Hello,
Using TeeChart.dll 4.1.2015.12161, the .NET 3.5 version shipped with the latest release, running the following code:
gives me the following chart:
this is because of changes to the default theme. To change the theme back to that of previous versions, you can use:
which gives the following:
Using TeeChart.dll 4.1.2015.12161, the .NET 3.5 version shipped with the latest release, running the following code:
Code: Select all
private void InitializeChart()
{
tChart1.Aspect.View3D = false;
tChart1.Series.Add(typeof(Candle)).FillSampleValues();
}
this is because of changes to the default theme. To change the theme back to that of previous versions, you can use:
Code: Select all
private void InitializeChart()
{
tChart1.Aspect.View3D = false;
tChart1.Series.Add(typeof(Candle)).FillSampleValues();
tChart1.CurrentTheme = ThemeType.Opera;
}
Best Regards,
Christopher Ireland / 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 |
Re: TeeChart New Version Integration Issue
Hi,
We added following code to our project and it changed whole appearance of the chart.
Attaching the screenshot for your reference. Please check previously attached screenshot for our original Chart Appearance.
Code: Select all
tChart1.CurrentTheme = ThemeType.Opera;
Attaching the screenshot for your reference. Please check previously attached screenshot for our original Chart Appearance.
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: TeeChart New Version Integration Issue
Yes, that is the expected behaviour.Quant wrote:We added following code to our project and it changed whole appearance of the chart.
May I suggest, then, that you either:
1) change the theme and then apply all the color/font etc. changes you wish
2) do not change the theme, but specify *all* the color/font etc. changes you wish
Best Regards,
Christopher Ireland / 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 |