Hello,
I have a Serie with personalized images instead of the default item image. I don't have problem to display my images (with zoom enabled or disabled).
I define the size of my images in the BeforeLayout event as following:
The images are displayed correctly when the EnableZoom property is set to "false" but when this property is set to "true" the new size is not applied for my images.
I have the correct images with the default size defined automatically and the consequence is that my images are unreadable.
I used the debug mode to check if the BeforeLayout event is correctly executed and I confirm that the dimensions are correctly modified for every images.
Thank you for your help.
Joël
I have a Serie with personalized images instead of the default item image. I don't have problem to display my images (with zoom enabled or disabled).
I define the size of my images in the BeforeLayout event as following:
| protected void rcChart_BeforeLayout(object sender, EventArgs e) |
| { |
| // Configure the icons |
| foreach (ChartSeriesItem item in rcChart.Series[0].Items) |
| { |
| item.PointAppearance.Dimensions.Width = 25; |
| item.PointAppearance.Dimensions.Height = 35; |
| } |
| } |
I have the correct images with the default size defined automatically and the consequence is that my images are unreadable.
I used the debug mode to check if the BeforeLayout event is correctly executed and I confirm that the dimensions are correctly modified for every images.
Thank you for your help.
Joël