Get-HeatmapLevel.ps1

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
function Get-HeatmapLevel
{
    <#
    .Synopsis
        Gets the different levels of heatmap colors
    .Description
        Gets the mapping of rendered color to heatmap percentage values
    .Example
        Get-HeatmapLevel
    .Link
        Set-HeatmapLevel
    #>

    param()
    
    #region Get heatmap level hashtable
    $script:HeatMapLevel
    #endregion Get heatmap level hashtable
}