Aspose::Cells::Charts::Series::SetName method

Series::SetName(const U16String&) method

Gets or sets the name of the data series.

void Aspose::Cells::Charts::Series::SetName(const U16String &value)

Examples

//Reference name to a cell
U16String val = u"=A1";
chart.GetNSeries().Get(0).SetName(val);

//Set a string to name
val = u"First Series";
chart.GetNSeries().Get(0).SetName(val);

See Also

Series::SetName(const char16_t*) method

Gets or sets the name of the data series.

void Aspose::Cells::Charts::Series::SetName(const char16_t *value)

Examples

//Reference name to a cell
chart.GetNSeries().Get(0).SetName(u"=A1");

//Set a string to name
chart.GetNSeries().Get(0).SetName(u"First Series");

See Also