It is obviously possible to hide individual data points in an Excel line chart.
- Select a data point.
- Right click -> Format Data Point…
- Select Patterns
- Tab Set Line to None
How do you accomplish the same thing in VBA? Intuition tells me there should be a property on the Point object Chart.SeriesCollection(<index>).Points(<index> which deals with this…
‘Describe it to the teddy bear’ works almost every time…
You have to go to the Border child object of the Point object and set its LineStyle to xlNone.