Powershell to create line chart from EXCEL

后端 未结 3 1838
清歌不尽
清歌不尽 2021-01-23 10:23

My powershell script inputs data into EXCEL worksheet

\"enter

and I am trying to c

3条回答
  •  别那么骄傲
    2021-01-23 11:01

    Based on my experience with VBA, it appears that the first thing to try is changing your chart type. You have $chart.chartType=$xlChart::xlBarClustered. Based on the similar VBA commands, I would try changing this to $chart.chartType=$xlChart::xlLine. That should make a big difference, and let you see what else needs to be tweaked.

提交回复
热议问题