I m using the datatable.defaultview as a source for series and that series is added to the xamchart..............when i map the table on to the chart using the series.datamapping = "column" only the column values are plotted on the y-axis......thats alright how do i bring the corressponding labels column to the x-axis so that i have one column i.e. 'int' on the y axis........and the other column 'varchar(20)' on the x axis as labels......i.e. for each int there is a corressponding varchar on x axis???..........
this XAMCHART is gettin on my nerves!
You can specify which object in your DataTable should be mapped to the Label in the DataMapping as well.
For example:
DataMapping="Value=SegmentA;Label=SeriesLabel";
Thanx man......but that Label part wasnt mentioned in the documentation............ur solution works.........I mean there it is mentioned to do "X = myXColumn; Y = myYColumn" .......which doesnt really work........