Switching between line or bar in a combination chart

#vc is a script parameter that contains your combination chart.
vc = Graph.As[CombinationChart]()

# Sets chart to show lines

vc.SeriesType = CombinationChartSeriesType.Line

# Sets chart to show bars:

vc.SeriesType = CombinationChartSeriesType.Bar 
Previous
Next Post »