Search found 3132 matches

by Sandra
Wed Aug 16, 2017 2:23 pm
Forum: VCL
Topic: zoom chart
Replies: 21
Views: 46910

Re: zoom chart

Hello Jim,

If you want zoom the Chart instead of Data, you need use Chart1.ZoomWheel property instead of Chart1.Zoom.MouseWheel. You should do the same as next line code:

Code: Select all

  Chart1.ZoomWheel:= pmwnormal;
Hoping this helps you.
Thanks in advance
by Sandra
Mon Aug 14, 2017 10:46 am
Forum: VCL
Topic: Runtime Exception with 2017.22 and C++
Replies: 9
Views: 18405

Re: Runtime Exception with 2017.22 and C++

Hello RG Solutions, Could you attached for us the project you're try to migrate to Tokyo because we can reproduce the problem here? Also, would be very grateful if you tell us which TeeChart version you used in Rad Studio Berlin and Seattle IDE's. Could you tell us, the version? Many thanks for your...
by Sandra
Thu Aug 10, 2017 3:15 pm
Forum: VCL
Topic: TChart BUG - 2 pixel axes and grids, smudged number font
Replies: 10
Views: 20448

Re: TChart BUG - 2 pixel axes and grids, smudged number font

Hello Bill,

Good news! I'm glad the problems you was experiencing have been solved. Thanks to inform us about these.

Thanks in advance
by Sandra
Thu Aug 10, 2017 8:41 am
Forum: VCL
Topic: TChart BUG - 2 pixel axes and grids, smudged number font
Replies: 10
Views: 20448

Re: TChart BUG - 2 pixel axes and grids, smudged number font

Hello Bill, The Line is charged because maybe by default the Chart is in GDIplus. The easy way to solve the behaviour is go to Chart Design Time view and change it by editor. To do it follow the steps below: 1- Go to design time view 2- Do click with right button and open Chart Editor 3- Go to Chart...
by Sandra
Wed Aug 09, 2017 12:02 pm
Forum: VCL
Topic: TChart BUG - 2 pixel axes and grids, smudged number font
Replies: 10
Views: 20448

Re: TChart BUG - 2 pixel axes and grids, smudged number font

Hello Bill, Many thanks for the project. After reviewing your project. I think can help you, change LabelText MarginToAxis value to 0. The line below shows you how can do that: TChartCalcX->Axes->Bottom->Texts->MarginToAxis = 0; Could you confirm us if the code works in your end? Thanks in advance
by Sandra
Wed Aug 09, 2017 9:51 am
Forum: FMX
Topic: Custom Axes issue
Replies: 3
Views: 13297

Re: Custom Axes issue

Hello Peter,

Many thanks for the information. I have added the information to the bug id=1894.

Thanks in advance
by Sandra
Tue Aug 08, 2017 10:57 am
Forum: VCL / FMX
Topic: Problems with ClientDaset and teegrid
Replies: 1
Views: 12640

Re: Problems with ClientDaset and teegrid

Hello Harry, After doing many test I have added the Demo problem in TeeGrid Bugzilla tracker to treat it for future versions. Here's the link: http://bugs.teechart.net/show_bug.cgi?id=1903 Also, I think the bug is related to TDataSet buffering bug. Here's the link: http://bugs.teechart.net/show_bug....
by Sandra
Mon Aug 07, 2017 3:36 pm
Forum: VCL
Topic: TChart BUG - 2 pixel axes and grids, smudged number font
Replies: 10
Views: 20448

Re: TChart BUG - 2 pixel axes and grids, smudged number font

Hello Bill, Maybe helps you modify the property LabelsSeparation. That controls the distance between label texts. It can be set to a low value or zero to override the calculation and behave according to the interval you have set only. Eg. Chart1->BottomAxis->LabelsSeparation := 1; Hoping this helps....
by Sandra
Thu Aug 03, 2017 10:54 am
Forum: .NET
Topic: License number not correct to install binary version
Replies: 3
Views: 10504

Re: License number not correct to install binary version

Hello Philippe,

Could you send an email to our Sales Dept at "sales at steema dot com" with your complete credentials information, because we can check your license here and find a solution for the problem?

Thanks in advance
by Sandra
Wed Aug 02, 2017 10:50 am
Forum: .NET
Topic: License number not correct to install binary version
Replies: 3
Views: 10504

Re: License number not correct to install binary version

Hello Philippe, I would like inform you that I can install without problems with my credentials, the TeeChart for Xamarin.Android 2017 binary and Source Code, build number 4.17.02.21, under Windows platform. Could you confirm us if you using the same version as us? Also, could you confirm us in whic...
by Sandra
Wed Jun 07, 2017 11:27 am
Forum: FMX
Topic: BarChart Side by Side
Replies: 13
Views: 29302

Re: BarChart Side by Side

Hello realsol, Sorry for the delay. I would like inform you that the problem occurs when is set the Xvalues property Order to Descending. Therefore, as a workaround, I would suggest you set the XValues order for each series to None. The code below shows you how: Chart1[0].XValues.Order := loNone; Ch...
by Sandra
Fri Jun 02, 2017 11:32 am
Forum: FMX
Topic: BarChart Side by Side
Replies: 13
Views: 29302

Re: BarChart Side by Side

Hello realsol,

We are doing many test to verify if the bug is fixed or not for next maintenance release, so I can't reproduce it using our production TeeChart Pro/VCL source code.

Thanks in advance
by Sandra
Thu Jun 01, 2017 9:22 am
Forum: FMX
Topic: BarChart Side by Side
Replies: 13
Views: 29302

Re: BarChart Side by Side

Hello realsol, To do as Series are drawn side by side, you need active the BarStack propierty Side by Side. The code below shows you how can do it: var Series1,Series2,Series3,Series4: TBarSeries; procedure TForm1.FormCreate(Sender: TObject); begin Series1 := TBarSeries.Create(Self); Series2 := TBar...
by Sandra
Wed May 31, 2017 2:36 pm
Forum: VCL
Topic: Programmatically accessing TSurfaceSeries border
Replies: 1
Views: 6257

Re: Programmatically accessing TSurfaceSeries border

Hello Sharpenski,

To enable/unenable the TSurfaceSeries Border you should change the value of Pen property. The code below shows you how:

Code: Select all

procedure TForm3.FormCreate(Sender: TObject);
begin
Series1.FillSampleValues(10);
Series1.Pen.Visible := false;
end; 
Hoping this helps you.
Thanks in advance
by Sandra
Wed May 31, 2017 9:23 am
Forum: FMX
Topic: E-notation and scientific superscript notation
Replies: 1
Views: 8997

Re: E-notation and scientific superscript notation

Hello Peter, If you set true the AxisLabelExponent property, you're activated, indirectly, the exponent super script font. If you want show the labels in E-notation you should only change the Axis Value Format without change the AxisLabelExponent property. The code below shows you how: Chart1.Axes.L...