Search found 3 matches

by Ingman
Wed Sep 14, 2005 9:32 am
Forum: VCL
Topic: Newbie question concerning TChartAxis
Replies: 3
Views: 4155

That worked, excelllent :D
by Ingman
Wed Sep 14, 2005 8:29 am
Forum: VCL
Topic: Newbie question concerning TChartAxis
Replies: 3
Views: 4155

Problem solved, but new problem with labels position

Hi again, solved that problem using the following modified helpfile example: procedure TForm1.Button1Click(Sender: TObject); var tmpVertAxis: TChartAxis; begin // Add vertical Axis Chart1.CustomAxes.Add; tmpVertAxis:=Chart1.CustomAxes[0]; tmpVertAxis.PositionPercent:=100; Series2.CustomVertAxis:=tmp...
by Ingman
Tue Sep 13, 2005 12:13 pm
Forum: VCL
Topic: Newbie question concerning TChartAxis
Replies: 3
Views: 4155

Newbie question concerning TChartAxis

Hi, I would like to create AChart that has one TLineSeries and a TBarSeries as well, the left axis should display for example count and the right axis percent, that is two different scales. Is this possible to do? If not I could standardize the two series, so they are shown relative the axis length,...