I have a WinUltraChart that is paired with a grid. What I need to be able to do is match the column order in the chart with the sort order in the grid. When the sort changes the chart needs to change to reflect the updated sort order.
What I'm looking for is a way to do this without having to destroy the chart and recreate it with the new sort values/order. I don't see any easy way within the chart class to update the series points but perhaps I'm just missing it.
Thanks
Neil
Any visual changes cause the chart to redraw entirely. I think it's easier to just re-bind the chart when you sort the data. If you don't have thousands and thousands of points displaying in the chart, you shouldn't notice any performance hits.
Ok, Thanks. I've (more or less) done what you suggested. I do see the screen flicker though so I'm working on trying to remove that effect.