# HG changeset patch # User Dennis C. M. # Date 1624372913 -7200 # Node ID 7e524a9cc19459ce400aeca2d5be4b52e6337872 # Parent 46e874c1f459fa6d6ca72650e6ebd27eceb74d2f# Parent ffc7731f7206a6df8f486d31addf587ebf7514b6 Merge pull request #13 from denniscm190/dennis Minor UI Updates in CharLabel committer: GitHub diff -r 46e874c1f459 -r 7e524a9cc194 Sources/StockCharts/LineChart/Helpers/ChartLabel.swift --- a/Sources/StockCharts/LineChart/Helpers/ChartLabel.swift Tue Jun 22 16:11:26 2021 +0200 +++ b/Sources/StockCharts/LineChart/Helpers/ChartLabel.swift Tue Jun 22 16:41:53 2021 +0200 @@ -20,15 +20,17 @@ if let dates = self.dates { let date = formatStringDate(dates[indexPosition]) Text(date) + .opacity(0.5) } if let hours = self.hours { let hour = hours[indexPosition] Text(hour) + .opacity(0.5) } Text("\(data[indexPosition], specifier: "%.2f")") .foregroundColor(Color(.systemBlue)) } - .font(.headline) + .font(.caption) } } diff -r 46e874c1f459 -r 7e524a9cc194 StockCharts.xcodeproj/project.xcworkspace/xcuserdata/dennis.xcuserdatad/UserInterfaceState.xcuserstate Binary file StockCharts.xcodeproj/project.xcworkspace/xcuserdata/dennis.xcuserdatad/UserInterfaceState.xcuserstate has changed