Windows form chart series formatting

57 Views Asked by At

Im trying to color the bars weather or not the 'Daily Profit/Loss' value is above Zero or below. I Feel my problem lies in the foreach statement, but can't quite pinpoint.

Any help is appreciated. Thank you

Clear-Chart $chart1

        $script:csv = Import-Csv -Path "C:\testpath\AutoBotStatsCollected.csv"
    
        update-Chart $chart1 -XPoints $csv.'Market' -YPoints $csv.'Daily Profit/Loss'
        
        $points = $Chart1.Series[0].Points
        
        ForEach($series in $points)
        {
            if ($series -lt 0)
            {
                $chart1.Series[0].Color = 'blue'
            }
            else
            {
                $chart1.Series[0].Color = 'crimson'
            }
        }
        
0

There are 0 best solutions below