Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
15
How to get UI status of the Chart?
posted

i am using ColumnSeries in UltraDataChart.

Create a Series in one function and call the SaveTo function.
Sometimes an empty image is created.

So I want to check the state of the chart control and call a SaveTo function.

ex)
void Test()
{
createSeries(
chart);
chart.SaveTo(~~);
}

Parents
No Data
Reply
  • 7535
    Offline posted

    Hello,

    Thank you for the post.

    You should be calling Flush method before save to, Usually flush is called if the visual of the SeriesViewer needs to be synchronously saved or evaluated.

    Let me know if you have any question.

    Regards,

    Divya Jain

Children