User (Legacy) Posted March 8, 2004 Report Share Posted March 8, 2004 Hi again I have a small problem. I have a ado-data resultset containing theese data 1, 700 2, 200 9, 5 I do this : Chart.TypeMask = 2 Chart.DataType(0) = CDT_XVALUE Chart.DataType(1) = CDT_VALUE And expect that the graph shows 3 bars, The first bar with x-value 1 and y-value 700 The next bar with x-value 2 and y-value 200 The first bar with x-value 9 and y-value 5 BUT, the last bar has an x-value of 3. I must have forgotten something, but what? Please, any ideas are welcome. Cheers, Soren Denmark Link to comment Share on other sites More sharing options...
Software FX Posted March 8, 2004 Report Share Posted March 8, 2004 Bart Charts don't have X-Values (only X/Y charts do). What you want is use this as a label: Chart.DataType(0) = CDT_LABEL Chart.DataType(1) = CDT_VALUE -- FP Software FX Link to comment Share on other sites More sharing options...
User (Legacy) Posted March 9, 2004 Author Report Share Posted March 9, 2004 Arhh Great. Thank you. "SoftwareFX Support" <noreply@softwarefx.com> wrote in message news:i2nXWaUBEHA.4080@webserver3.softwarefx.com... > Bart Charts don't have X-Values (only X/Y charts do). What you want is use > this as a label: > > Chart.DataType(0) = CDT_LABEL > Chart.DataType(1) = CDT_VALUE > > -- > FP > Software FX > > Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.