Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 393 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 393 Bytes

PSChart

Very basic charting for PowerShell

Usage

Import-Module PSChart
$data = Get-CimInstance Win32_LogicalDisk | where DriveType -eq 3 
$data | out-chart -ChartType Column -Property DeviceId,Size,Freespace -Title 'FreeDiskSpace'`
     -SeriesColor Orange ,MediumAquamarine -ChartSettings @{LabelFormatString = 'N0'} 

sample chart