Skip to content

Commit

Permalink
feat: add linechart interaction point (#202)
Browse files Browse the repository at this point in the history
* feat: add linechart interaction point

* feat: add ability to show current data point on linechart
  • Loading branch information
AppPear committed Aug 11, 2021
1 parent 7861bbc commit caa75ec
Show file tree
Hide file tree
Showing 6 changed files with 59 additions and 27 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>SchemeUserState</key>
<dict>
<key>SwiftUICharts.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>2</integer>
</dict>
</dict>
</dict>
</plist>
4 changes: 2 additions & 2 deletions Sources/SwiftUICharts/Base/CardView/CardView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ public struct CardView<Content: View>: View, ChartBase {
if showShadow {
RoundedRectangle(cornerRadius: 20)
.fill(Color.white)
.shadow(color: Color.gray, radius: 8)
.shadow(color: Color(white: 0.9, opacity: 1), radius: 8)
}
VStack {
VStack (alignment: .leading) {
self.content()
}
.clipShape(RoundedRectangle(cornerRadius: showShadow ? 20 : 0))
Expand Down
3 changes: 2 additions & 1 deletion Sources/SwiftUICharts/Base/Chart/ChartData.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ public class ChartData: ObservableObject {
}

var normalisedPoints: [Double] {
points.map { $0 / (points.max() ?? 1.0) }
let absolutePoints = points.map { abs($0) }
return points.map { $0 / (absolutePoints.max() ?? 1.0) }
}

var normalisedRange: Double {
Expand Down
6 changes: 6 additions & 0 deletions Sources/SwiftUICharts/Base/Extensions/CGPoint+Extension.swift
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,10 @@ extension CGPoint {

return CGPoint(x: stepWidth, y: stepHeight)
}

func denormalize(with geometry: GeometryProxy) -> CGPoint {
let width = geometry.frame(in: .local).width
let height = geometry.frame(in: .local).height
return CGPoint(x: self.x * width, y: self.y * height)
}
}
2 changes: 1 addition & 1 deletion Sources/SwiftUICharts/Base/Grid/ChartGrid.swift
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ struct DashedLine: View {
var body: some View {
GeometryReader { geometry in
line(frame: geometry.frame(in: .local))
.stroke(Color(white: 0.3), style: StrokeStyle(lineWidth: 1, lineCap: .round, dash: [5, 10]))
.stroke(Color(white: 0.85), style: StrokeStyle(lineWidth: 1, lineCap: .round, dash: [5, 10]))
}
}
}
Expand Down
57 changes: 34 additions & 23 deletions Sources/SwiftUICharts/Charts/LineChart/Line.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ public struct Line: View {
@State private var didCellAppear: Bool = false

var curvedLines: Bool = true
var path: Path {
Path.quadCurvedPathWithPoints(points: chartData.normalisedPoints,
step: CGPoint(x: 1.0, y: 1.0))
}

/// The content and behavior of the `Line`.
/// Draw the background if showing the full line (?) and the `showBackground` option is set. Above that draw the line, and then the data indicator if the graph is currently being touched.
Expand All @@ -31,12 +35,13 @@ public struct Line: View {
style: style,
trimTo: didCellAppear ? 1.0 : 0.0)
.animation(.easeIn)
// if self.showIndicator {
// IndicatorPoint()
// .position(self.getClosestPointOnPath(touchLocation: self.touchLocation))
// .rotationEffect(.degrees(180), anchor: .center)
// .rotation3DEffect(.degrees(180), axis: (x: 0, y: 1, z: 0))
// }
if self.showIndicator {
IndicatorPoint()
.position(self.getClosestPointOnPath(geometry: geometry,
touchLocation: self.touchLocation))
.rotationEffect(.degrees(180), anchor: .center)
.rotation3DEffect(.degrees(180), axis: (x: 0, y: 1, z: 0))
}
}
.onAppear {
didCellAppear = true
Expand All @@ -49,7 +54,7 @@ public struct Line: View {
.onChanged({ value in
self.touchLocation = value.location
self.showIndicator = true
// self.getClosestDataPoint(point: self.getClosestPointOnPath(touchLocation: value.location))
self.getClosestDataPoint(geometry: geometry, touchLocation: value.location)
self.chartValue.interactionInProgress = true
})
.onEnded({ value in
Expand All @@ -64,24 +69,30 @@ public struct Line: View {

// MARK: - Private functions

//extension Line {
// /// Calculate point closest to where the user touched
// /// - Parameter touchLocation: location in view where touched
// /// - Returns: `CGPoint` of data point on chart
// private func getClosestPointOnPath(touchLocation: CGPoint) -> CGPoint {
// let closest = self.path.point(to: touchLocation.x)
// return closest
// }
//
extension Line {
/// Calculate point closest to where the user touched
/// - Parameter touchLocation: location in view where touched
/// - Returns: `CGPoint` of data point on chart
private func getClosestPointOnPath(geometry: GeometryProxy, touchLocation: CGPoint) -> CGPoint {
let geometryWidth = geometry.frame(in: .local).width
let normalisedTouchLocationX = (touchLocation.x / geometryWidth) * CGFloat(chartData.normalisedPoints.count - 1)
let closest = self.path.point(to: normalisedTouchLocationX)
var denormClosest = closest.denormalize(with: geometry)
denormClosest.x = denormClosest.x / CGFloat(chartData.normalisedPoints.count - 1)
denormClosest.y = denormClosest.y / CGFloat(chartData.normalisedRange)
return denormClosest
}

// /// Figure out where closest touch point was
// /// - Parameter point: location of data point on graph, near touch location
// private func getClosestDataPoint(point: CGPoint) {
// let index = Int(round((point.x)/step.x))
// if (index >= 0 && index < self.chartData.data.count){
// self.chartValue.currentValue = self.chartData.points[index]
// }
// }
//}
private func getClosestDataPoint(geometry: GeometryProxy, touchLocation: CGPoint) {
let geometryWidth = geometry.frame(in: .local).width
let index = Int(round((touchLocation.x / geometryWidth) * CGFloat(chartData.points.count - 1)))
if (index >= 0 && index < self.chartData.data.count){
self.chartValue.currentValue = self.chartData.points[index]
}
}
}

struct Line_Previews: PreviewProvider {
/// Predefined style, black over white, for preview
Expand Down

0 comments on commit caa75ec

Please sign in to comment.