TeeChart2014AX zoom problem
TeeChart2014AX zoom problem
Hello,
I'm testing Teechart2014AX before use it in production.
I'm finding some problems:
1: The mouse zoom function draw the box not in correct position. The box is drawn outside the window.
2: Using GDIPlus, the dotted line with small thickness (0 or 1) is draw not clear.
Best regards
Giovanni
I'm testing Teechart2014AX before use it in production.
I'm finding some problems:
1: The mouse zoom function draw the box not in correct position. The box is drawn outside the window.
2: Using GDIPlus, the dotted line with small thickness (0 or 1) is draw not clear.
Best regards
Giovanni
Re: TeeChart2014AX zoom problem
I am also running into the same problem. Even the demo does this. I am also having a problem with not being able to set the fonts.
Re: TeeChart2014AX zoom problem
Hello,
Please, read the instructions below in my signature.
We've been able to reproduce the problem and we're investigating it. We'll be back here asap.tqm wrote:1: The mouse zoom function draw the box not in correct position. The box is drawn outside the window.
I'm not sure to understand what do you mean with "not clear". Could you please show us a screenshot indicating what do you see/expect?tqm wrote:2: Using GDIPlus, the dotted line with small thickness (0 or 1) is draw not clear.
Do you mean #1 or #2 above?cmacleod wrote:I am also running into the same problem. Even the demo does this.
I think 2 different issues in the same thread is enough, even if they may be related. Could you please open a new thread explaining the problem and how can we reproduce it?cmacleod wrote:I am also having a problem with not being able to set the fonts.
Please, read the instructions below in my signature.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: TeeChart2014AX zoom problem
Sorry to bump in.
Could you also check the cursor tool. This is also drawn outside the chart (not using full repaint).
Greetings,
Jack
Could you also check the cursor tool. This is also drawn outside the chart (not using full repaint).
Greetings,
Jack
Re: TeeChart2014AX zoom problem
Hello,
We're checking the cursor tool also.
We've already found the fix to the Zoom rectangle problem and we'll publish a maintenance release asap.Jack@007 wrote:Could you also check the cursor tool. This is also drawn outside the chart (not using full repaint).
We're checking the cursor tool also.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: TeeChart2014AX zoom problem
About not solid line, please create a project with TeeChart6 and past this code:
Private Sub Form_Load()
TChart1.Aspect.View3D = False
TChart1.AddSeries scLine
TChart1.Series(0).Add 1, "", 0
TChart1.Series(0).Add 1, "", 0
TChart1.Series(0).asLine.LinePen.Width = 0
TChart1.Series(0).asLine.LinePen.Style = psDash
TChart1.Axis.Left.GridPen.Visible = False
End Sub
the serie line is dashed with "decent" length.
Now create a project with TeeChart2014AX and a checkbox and paste this code
Private Sub Check1_Click()
TChart1.Aspect.GDIPlus.Active = Check1.Value = vbChecked
End Sub
Private Sub Form_Load()
TChart1.Aspect.View3D = False
TChart1.AddSeries scLine
TChart1.Series(0).Add 1, "", 0
TChart1.Series(0).Add 1, "", 0
TChart1.Series(0).asLine.LinePen.Width = 0
TChart1.Series(0).asLine.LinePen.Style = psDash
TChart1.Axis.Left.GridPen.Visible = False
TChart1.Axis.Bottom.GridPen.Visible = False
End Sub
With GDI+ on the line has dash too small.
With GDI+ off, the line is solid line. Why ?
In Teechart.Net there is DashStyle.Custom and .DashPattern. With it I can "stretch" the dash for a better visualization.
Why TeeChartA2014AX does not support DashStyle.Custom ? (it is a GDI+ feature)
Best regards
Giovanni
Private Sub Form_Load()
TChart1.Aspect.View3D = False
TChart1.AddSeries scLine
TChart1.Series(0).Add 1, "", 0
TChart1.Series(0).Add 1, "", 0
TChart1.Series(0).asLine.LinePen.Width = 0
TChart1.Series(0).asLine.LinePen.Style = psDash
TChart1.Axis.Left.GridPen.Visible = False
End Sub
the serie line is dashed with "decent" length.
Now create a project with TeeChart2014AX and a checkbox and paste this code
Private Sub Check1_Click()
TChart1.Aspect.GDIPlus.Active = Check1.Value = vbChecked
End Sub
Private Sub Form_Load()
TChart1.Aspect.View3D = False
TChart1.AddSeries scLine
TChart1.Series(0).Add 1, "", 0
TChart1.Series(0).Add 1, "", 0
TChart1.Series(0).asLine.LinePen.Width = 0
TChart1.Series(0).asLine.LinePen.Style = psDash
TChart1.Axis.Left.GridPen.Visible = False
TChart1.Axis.Bottom.GridPen.Visible = False
End Sub
With GDI+ on the line has dash too small.
With GDI+ off, the line is solid line. Why ?
In Teechart.Net there is DashStyle.Custom and .DashPattern. With it I can "stretch" the dash for a better visualization.
Why TeeChartA2014AX does not support DashStyle.Custom ? (it is a GDI+ feature)
Best regards
Giovanni
Re: TeeChart2014AX zoom problem
Hello,
I can reproduce the problem with a Line series but it works fine with a FastLine. Could you please give it a try?
This comes from this discussion:
http://www.teechart.net/support/viewtop ... =3&t=14565
I can reproduce the problem with a Line series but it works fine with a FastLine. Could you please give it a try?
This comes from this discussion:
http://www.teechart.net/support/viewtop ... =3&t=14565
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: TeeChart2014AX zoom problem
Yes the FastLine serie works, but the dash line aspect change enabling or disabling GDI+.
Using the GDI+ the dash is too short and is not clear.
For this reason I think that the best solution is the use of DashStyle.Custom. With it the customer can select the "correct" dash length for every not solid line.
Regards
Giovanni
Using the GDI+ the dash is too short and is not clear.
For this reason I think that the best solution is the use of DashStyle.Custom. With it the customer can select the "correct" dash length for every not solid line.
Regards
Giovanni
Re: TeeChart2014AX zoom problem
Hi,
I updated the teechart AX2014 with the last Update Release.
The problem on zoom box is fixed.
There are still problems on line style with GDI+ on/off
Regards
Giovanni
I updated the teechart AX2014 with the last Update Release.
The problem on zoom box is fixed.
There are still problems on line style with GDI+ on/off
Regards
Giovanni
Re: TeeChart2014AX zoom problem
Hello Giovanni,
thanks for the advise. We're going to try to improve the styles in GDI+ mode.
thanks for the advise. We're going to try to improve the styles in GDI+ mode.
Pep Jorge
http://support.steema.com
http://support.steema.com
Re: TeeChart2014AX zoom problem
Good morning,
I updated the teechart AX with the last version 2014.0.2.141120.
Using GDI+ there are still problems on lines with no solid style (dash, dashdot,...).
The length of the segment is too short and the apparence is not clear.
Furthermore the property DashStyle.Custom is still missing.
Regards
Giovanni
I updated the teechart AX with the last version 2014.0.2.141120.
Using GDI+ there are still problems on lines with no solid style (dash, dashdot,...).
The length of the segment is too short and the apparence is not clear.
Furthermore the property DashStyle.Custom is still missing.
Regards
Giovanni
Re: TeeChart2014AX zoom problem
Hello Giovanni,
I apologise with you for the delay.
Feel free to add you email to the both tickets so you can be automatically notified when and update arrives.
Thanks in advance
I apologise with you for the delay.
I would like inform you that I have already added the request in TeeChart VCL Bugzilla tracker. Here’s the link to the ticket: http://bugs.teechart.net/show_bug.cgi?id=1035.Using GDI+ there are still problems on lines with no solid style (dash, dashdot,...). The length of the segment is too short and the apparence is not clear.
In TeeChart Pro VCL/FMX and TeeChart Activex the property DashStyle.Custom never has been implemented. That is only implemented in TeechartFor.Net. The request is already added in TeeChart VCL Bugzilla tracker as a future request. Here's the link to the ticket http://bugs.teechart.net/show_bug.cgi?id=265Furthermore the property DashStyle.Custom is still missing.
Feel free to add you email to the both tickets so you can be automatically notified when and update arrives.
Thanks in advance
Best Regards,
Sandra Pazos / 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 |