Search found 4 matches
- Thu Mar 27, 2014 3:17 pm
- Forum: VCL
- Topic: Overlapping bars
- Replies: 3
- Views: 4253
Re: Overlapping bars
Here's the full code- procedure TfrmPsrGraph.SetupGraph(const v1,v2,v3:shortstring); var xBar1,xBar2,xBar3:TBarSeries; xLine1,xLine2,xLine3:TLineSeries; xTrend:TTrendFunction; i:integer; m, b: Double; begin xTrend:=TTrendFunction.Create(self); for i := chtPSR.SeriesCount -1 downto 0 do chtPSR.Series...
- Tue Mar 25, 2014 4:04 pm
- Forum: VCL
- Topic: Overlapping bars
- Replies: 3
- Views: 4253
Overlapping bars
I have 3 bars per date and the bars overlap. It seems to be by creation order so the older ones are behind the newer ones. How do I eliminate this overlapping behavior?
Thanks
Thanks
- Fri Mar 07, 2014 2:23 pm
- Forum: VCL
- Topic: Trend example
- Replies: 3
- Views: 4408
Re: Trend example
Thank you! Seeing the code makes it all look obvious now. btw, I couldn't find any examples of how to do this in design mode. Everything I saw was adjusting properties in the editor. I rarely use the editor in my projects.
- Thu Mar 06, 2014 7:55 pm
- Forum: VCL
- Topic: Trend example
- Replies: 3
- Views: 4408
Trend example
I just purchased Pro so I could use trends in my graph. I need to configure it in design mode- procedure TfrmPsrGraph.SetupGraph(const v1,v2,v3:shortstring); var xBar3:TBarSeries; xTrend:TTrendFunction; m, b: Double; begin xTrend:=TTrendFunction.Create(self); xBar3:=TBarSeries.Create(chtPSR); xBar3....