Best way to check if a Chart is a combo chart

I’m currently checking if a Chart object is a combo chart by looping through its NSeries property and checking that each Series.Type is the same. If I find a Series which has a different type, that tells me that I have a combo chart.

Is there a better way of detecting this?

@vonH,

Yes, you are doing ok browsing through the series and check its Type to evaluate if the chart is a combo chart or not.

1 Like