Search found 5 matches
- Thu Jun 25, 2015 3:25 pm
- Forum: VCL
- Topic: Overlapping series on the X axis
- Replies: 10
- Views: 14917
Re: Overlapping series on the X axis
Thank you. Your solution works for me.
- Tue Jun 23, 2015 1:00 pm
- Forum: VCL
- Topic: Overlapping series on the X axis
- Replies: 10
- Views: 14917
Re: Overlapping series on the X axis
Hi Yeray, I would add these lines: Chart1.BottomAxis.LabelStyle := talPointValue; Chart1.OnGetAxisLabel := Chart1GetAxisLabel; You can simply do something like this in the GetAxisLabel event: if Sender.Horizontal then if ValueIndex >= 0 then begin d := Series.XValue[ValueIndex]; LabelText := LabelTe...
- Fri Jun 19, 2015 6:07 pm
- Forum: VCL
- Topic: Overlapping series on the X axis
- Replies: 10
- Views: 14917
Re: Overlapping series on the X axis
I'll echo Cristians statement - yes when the different series are populated with different X-Values. In our case, we have data with timestamps. One series is of temperature data collected at various intervals over a time period. The other series is another temperature probe's data collected at vario...
- Thu Jun 18, 2015 3:52 pm
- Forum: VCL
- Topic: Overlapping series on the X axis
- Replies: 10
- Views: 14917
Re: Overlapping series on the X axis
Same problem here. Just stumbled across your post while looking for answers. Using XE7 with the included version of TChart. It happens when there is more than one chartseries. If you use the OnGetAxisLabel event, and clear the LabelText whenever the Series.SeriesIndex <> 0 for example, this fixes it...
- Fri Jan 16, 2009 9:03 pm
- Forum: VCL
- Topic: Bug:TSurfaceSeries access violation, Teechart pro 7, BDS2006
- Replies: 1
- Views: 2591
Bug:TSurfaceSeries access violation, Teechart pro 7, BDS2006
Iterating through my data by calling AddXYZ like this: for z := 25000 downto 0 do for x := 1 to 1000 do AddXYZ(x, y, z); will cause an access violation. This is not the case if the loop on Z ascends rather than descends, ie. for z := 0 to 25000 do... works fine. This is because in TeeSurfa.TCustom3D...