I'm using the DevExpress xtraChart to display some data. In the CustomDrawSeries
event, I'm checking the series name and changing SeriesTemplate.Label.PointOptions.ValueNumericOptions.Format
. It works... partially.
The idea is to change ValueNumericOptions.Format
from NumericFormat.FixedPoint
to NumericFormat.Percent
and vice versa based on the name. The problem is the change is not displayed immediately. In order to see the change, the user must select another cell and then the change is visible immediately.
How can I force a refresh to the series and see the changes immediately without needing to select another cell?
Update -
After the change is made via code, I inspected Format
and it is being set correctly. This confirms, in my mind anyway, this is a refresh issue.