i saw the zoom example and it works :)
But now i want to add another piece of data for the same period: i have multiple data samples (in one object, with a datetime propery period and some properties which contain the data) for each day, and i want to display two or three bars and also zoom.
But when i add another sample, i loose the zoom funcionality...
I'm showing the 'periode' (period) on the X-axis.
SeriesMapping seriesMapping = new SeriesMapping();
ItemMapping itemMapping = new ItemMapping("SALES1", DataPointMember.YValue );
seriesMapping.ItemMappings.Add(itemMapping);
itemMapping =
new ItemMapping("Periode", DataPointMember.XCategory );
seriesMapping.ItemMappings.Add(itemMapping);
RadChart1.SeriesMappings.Add(seriesMapping);
seriesMapping =
new SeriesMapping();
itemMapping =
new ItemMapping("SALES2", DataPointMember.YValue);
seriesMapping.ItemMappings.Add(itemMapping);
itemMapping =
new ItemMapping("Periode", DataPointMember.XCategory);
seriesMapping.ItemMappings.Add(itemMapping);
RadChart1.SeriesMappings.Add(seriesMapping);
Am i on the right track by inserting 2 seriesmappings objects or do i have to create 1 seriesmappings object and create all the itemmappings within that seriesmappings?
Regards,
Michel