Hi ,
I added an FillSceneGraph event for an Ultrachart to increase the legend stroke width like this:
foreach (Primitive p in e.SceneGraph) { Polyline poly = p as Polyline; if (poly != null && poly.Path != null && poly.Path.ToLower().IndexOf("legend") != -1) { poly.PE.StrokeWidth = 5; } }
Whenever this code with the stroke width is used for the chart, the Ultragrid in the same form is not refreshed until the window is resized.
Is this a bug ?
(version is 8.1)
Sounds rather unlikely for the chart to be affecting another control. Can you post a sample project?