Hello,
I was finally able to generate a StackedColumn100 graphic from powershell :)
This is the result for two data series:
Used space:
$ProcessList = "A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","Z","X"
$Placeholder = 142,130,147,143,156,47,28,148,110,120,107,117,133,142,119,111,146,124,152,90,126,147,148,161
Free space:
$ProcessList = "A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","Z","X"
$Placeholder = 28,49,22,39,24,132,151,22,61,59,72,62,38,28,52,59,24,47,18,89,44,24,36,23
This represent Used and Free space for Storage devices A,B,C...
What I'm unable to figure out is how to print as labels the data from $placeholder and not the % value
For example for the first column:
A Used Space = 142
A Free Space = 28
142+28=170 (170 is 100%)
Used space = 83.53% - printed as label
Free space = 16.47% - printed as label
Instead %83.53 & %16.47, I would like to print 142 and 28.
I've used for each series .IsValueShownAsLabel = $true but this will display the %value and not the data value
Thank you for any suggestion!