Hello forum's people: I'm newe using Spire.Xls. I have a chart with 4 series. How can I insert data labels (X,Y) to my chart type ScatterSmoothedLineMarkers to see it in every serie?
Thanks a lot.
foreach (ChartSerie serie in chart.Series)
{
serie.DataPoints.DefaultDataPoint.DataLabels.HasValue = true;
serie.DataPoints.DefaultDataPoint.DataLabels.HasSeriesName = false;
}