Skip to content

Commit

Permalink
IMAGE UPDATE
Browse files Browse the repository at this point in the history
  • Loading branch information
Shayokh144 committed Sep 11, 2024
1 parent 1d061b6 commit f7b561c
Show file tree
Hide file tree
Showing 22 changed files with 6 additions and 2 deletions.
Binary file removed visualization/LastOneMonth/1.png
Binary file not shown.
Binary file removed visualization/LastOneMonth/10.png
Binary file not shown.
Binary file removed visualization/LastOneMonth/2.png
Binary file not shown.
Binary file removed visualization/LastOneMonth/3.png
Binary file not shown.
Binary file removed visualization/LastOneMonth/4.png
Binary file not shown.
Binary file removed visualization/LastOneMonth/5.png
Binary file not shown.
Binary file removed visualization/LastOneMonth/6.png
Binary file not shown.
Binary file removed visualization/LastOneMonth/7.png
Binary file not shown.
Binary file removed visualization/LastOneMonth/8.png
Binary file not shown.
Binary file removed visualization/LastOneMonth/9.png
Binary file not shown.
Binary file added visualization/LastTwoMonth/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added visualization/LastTwoMonth/10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added visualization/LastTwoMonth/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added visualization/LastTwoMonth/3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added visualization/LastTwoMonth/4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added visualization/LastTwoMonth/5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added visualization/LastTwoMonth/6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added visualization/LastTwoMonth/7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added visualization/LastTwoMonth/8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added visualization/LastTwoMonth/9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# July-August 2024
# Last 2 Months

# Chicken Eggs (Layer)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,11 @@ final class LineChartViewModel: ObservableObject {
if minYValue < 0 {
minYValue = 0
}
chartYAxisValues = stride(from: minYValue, to: maxYValue, by: 10).map { $0 }
var difference = (maxYValue - minYValue) / 16
// if difference < 10 {
// difference = 10
// }
chartYAxisValues = stride(from: minYValue, to: maxYValue, by: difference).map { $0 }
chartXAxisValues.removeAll()
var dayInterval = Int(dataList.count / 20)
if dayInterval < 14 {
Expand Down

0 comments on commit f7b561c

Please sign in to comment.