Search found 8963 matches
- Fri Sep 18, 2020 5:38 am
- Forum: VCL
- Topic: Display settings and font size
- Replies: 35
- Views: 18872
Re: Display settings and font size
Great! Thanks for the feedback.
- Fri Sep 18, 2020 5:38 am
- Forum: VCL
- Topic: Caption goes outside of bounderies
- Replies: 9
- Views: 4379
- Fri Sep 18, 2020 5:29 am
- Forum: VCL
- Topic: BoxPlot Initial Paint seems to be wrong
- Replies: 6
- Views: 3654
Re: BoxPlot Initial Paint seems to be wrong
Hello,
No I can't reproduce it. Could you please arrange a simple example project we can run as-is here?
Thanks in advance.
No I can't reproduce it. Could you please arrange a simple example project we can run as-is here?
Thanks in advance.
- Thu Sep 17, 2020 7:44 am
- Forum: VCL
- Topic: Caption goes outside of bounderies
- Replies: 9
- Views: 4379
Re: Caption goes outside of bounderies
Hello, You could check if the left axis title fits in the chart height and wrap the text accordingly. Ie: procedure TForm1.Chart1Resize(Sender: TObject); var oneLineTitle: String; titleHeight: Integer; begin oneLineTitle:=StringReplace(Chart1.Axes.Left.Title.Text, sLineBreak, '', [rfReplaceAll]); Ch...
- Thu Sep 17, 2020 6:11 am
- Forum: VCL
- Topic: Two questions about TPoint3Dseries
- Replies: 4
- Views: 2889
Re: Two questions about TPoint3Dseries
Hello,
Could you please detail how would you expect both things to be drawn?
Could you please detail how would you expect both things to be drawn?
- Thu Sep 17, 2020 6:07 am
- Forum: VCL
- Topic: Axes.Depth.Title.Angle
- Replies: 5
- Views: 2819
- Wed Sep 16, 2020 6:13 am
- Forum: VCL
- Topic: BoxPlot Initial Paint seems to be wrong
- Replies: 6
- Views: 3654
Re: BoxPlot Initial Paint seems to be wrong
Hello,
Try forcing a repaint calling
Try forcing a repaint calling
Chart1.Draw;
.- Tue Sep 15, 2020 12:51 pm
- Forum: VCL
- Topic: How to draw an elliptic cylinder?
- Replies: 5
- Views: 3198
Re: How to draw an elliptic cylinder?
Hello,
I'm afraid there's no series or tool implemented in TeeChart doing this for you, but once you have the data, it should be possible to use a TSurfaceSeries or a TPoint3DSeries to draw it.
I'm afraid there's no series or tool implemented in TeeChart doing this for you, but once you have the data, it should be possible to use a TSurfaceSeries or a TPoint3DSeries to draw it.
- Tue Sep 15, 2020 6:58 am
- Forum: VCL
- Topic: How to get "rounded" Axis Labels?
- Replies: 3
- Views: 2414
Re: How to get "rounded" Axis Labels?
Hello, Is there a better way to mark Axis Labels as closely as possible? Except, LabelsSeparation := 1. I'm afraid the only alternative would be to manually populate the labels yourself. Ie: var lHeight: Integer; curVal: Double; dif: Double; begin Chart1.AddSeries(TPointSeries).FillSampleValues(10);...
- Mon Sep 14, 2020 1:14 pm
- Forum: Activex
- Topic: Drawing Polygon on Canvas in OnAfterDraw
- Replies: 2
- Views: 2628
Re: Drawing Polygon on Canvas in OnAfterDraw
Hello, In the AddArrays example here , we populate arrays in a similar way than what you are doing. So it looks good to me. - .h: class CVCTeeChart5Dlg : public CDialog { public: //... COleSafeArray XValues; COleSafeArray YValues; //... - .cpp: BOOL CVCTeeChart5Dlg::OnInitDialog() { //... DWORD numE...
- Mon Sep 14, 2020 6:25 am
- Forum: VCL
- Topic: Display settings and font size
- Replies: 35
- Views: 18872
- Thu Sep 10, 2020 2:04 pm
- Forum: Activex
- Topic: Drawing Series on Existing Chart
- Replies: 3
- Views: 3022
Re: Drawing Series on Existing Chart
Great, thanks for sharing!
- Thu Sep 10, 2020 2:03 pm
- Forum: VCL
- Topic: How to get "rounded" Axis Labels?
- Replies: 3
- Views: 2414
Re: How to get "rounded" Axis Labels?
Hello,
I'm trying to reproduce the problem without success.
Could you please arrange a simple example project we can run as-is to reproduce the problem here?
Thanks in advance.
I'm trying to reproduce the problem without success.
Could you please arrange a simple example project we can run as-is to reproduce the problem here?
Thanks in advance.
- Thu Sep 10, 2020 2:00 pm
- Forum: .NET
- Topic: Adding labels to Areas
- Replies: 1
- Views: 1834
Re: Adding labels to Areas
Hello,
I'd suggest you to give a try at the Annotation Tool. You can find examples about it in the demo here.
I'd suggest you to give a try at the Annotation Tool. You can find examples about it in the demo here.
- Thu Sep 10, 2020 1:55 pm
- Forum: VCL
- Topic: How to show perfect spheres as Pointers in a Point3Dseries?
- Replies: 1
- Views: 1590
Re: How to show perfect spheres as Pointers in a Point3Dseries?
Hello,
Have you tried activating OpenGL?
You can find an example of it in the New Features demo shipped with the binary installer.
Have you tried activating OpenGL?
You can find an example of it in the New Features demo shipped with the binary installer.