I have generated a graph with xlsio and want to change the color of the label of the last of the axis data values. Dim serie1 As IChartSerie = chart.Series.Add("Serie1")
serie1.DataPoints.DefaultDataPoint.DataLabels.IsValue = True
serie1.DataPoints.DefaultDataPoint.DataLabels.Position = ExcelDataLabelPosition.Above
serie1.DataPoints.DefaultDataPoint.DataLabels.Color = ExcelKnownColors.Dark_blue
serie1.DataPoints.DefaultDataPoint.DataLabels.Bold = True
With this code I can change the style of all values, but want to change only the latter.
How can I do it?Thanks.