Page 1 of 1
TeeChart New Version Integration Issue
Posted: Wed Jan 20, 2016 7:07 am
by 16071129
Hi,
We have used the Latest Version of TeeChart with our Project and we are getting following visible differences as shown in attached screenshots.
- With Previous Version of TeeChart
- TchartDiff.PNG (47.17 KiB) Viewed 10611 times
- With Previous Version of TeeChart
- TchartDiff.PNG (47.17 KiB) Viewed 10611 times
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.
Re: TeeChart New Version Integration Issue
Posted: Wed Jan 20, 2016 4:21 pm
by Christopher
Hello,
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();
}
gives me the following chart:
- export635889034627644469.png (28.29 KiB) Viewed 10584 times
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;
}
which gives the following:
- export635889035119026550.png (46.98 KiB) Viewed 10584 times
Re: TeeChart New Version Integration Issue
Posted: Thu Jan 21, 2016 4:40 am
by 16071129
Hi,
Code: Select all
tChart1.CurrentTheme = ThemeType.Opera;
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.
- After Opera Theme Applied.png (76.33 KiB) Viewed 10575 times
Re: TeeChart New Version Integration Issue
Posted: Thu Jan 21, 2016 10:03 am
by Christopher
Quant wrote:We added following code to our project and it changed whole appearance of the chart.
Yes, that is the expected behaviour.
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