Hi

I am writing out an array of double into a chart and it gives me the horizontal axis label as 1,2,..,6. But I want the text to be according to a string array with names. Can this be done? So far my code looks like

With myChart.Chart
    .SeriesCollection.NewSeries
    .SeriesCollection(1).Name = "Median"
    .SeriesCollection(1).Values = median
    .SeriesCollection(1).ChartType = xlXYScatter
    .SeriesCollection(1).MarkerStyle = 3
End With