How to update the value of Aspose::Slides::Charts::IChartDataCell?
What am I supposed to pass to set_Value() method?
It expects SharedPtr<System::Object>, but how do I create this?
Is this supposed to be a new ChartDataCell? ChartDataCell doesn’t even have a public constructor
All I want to do is update the value of the given ChartDataCell with a new string value. How do I do that?
Aspose::Slides::Charts::IChartDataCell is actually representing a cell inside ChartDataWorkbook that holds any series or category data. it is used in GetCell() method of ChartDataWorkbook class. Please visit this Github example link and check GetCell() calls for your convenience. You can also visit this documentation link for your convenience. I hope this will be helpful.