comparison Sources/StockCharts/LineChart/ChartView.swift @ 31:48fe101fd122

Debugging public access level
author Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com>
date Fri, 30 Apr 2021 18:11:01 +0200
parents 3204b99365d4
children
comparison
equal deleted inserted replaced
30:716558986fed 31:48fe101fd122
21 self.hours = hours 21 self.hours = hours
22 } 22 }
23 23
24 public var body: some View { 24 public var body: some View {
25 VStack { 25 VStack {
26 Text("Hello") 26 ChartLabel(data: data, dates: dates, hours: hours, indexPosition: $indexPosition)
27 // ChartLabel(data: data, dates: dates, hours: hours, indexPosition: $indexPosition) 27 .opacity(showingIndicators ? 1: 0)
28 // .opacity(showingIndicators ? 1: 0) 28 .padding(.vertical)
29 // .padding(.vertical)
30 29
31 // LineView(data: data, showingIndicators: $showingIndicators, indexPosition: $indexPosition) 30 LineView(data: data, showingIndicators: $showingIndicators, indexPosition: $indexPosition)
32 } 31 }
33 } 32 }
34 } 33 }