* Starting on filling in documentation. * First pass on most/all files * more descriptions filled in * Some documentation but TBH the author would be better suited to explain how this works! * more basic stuff filled in * Add a description and bunch of discussion text for most of the view `body` declarations * more explanations Co-authored-by: Dan Wood <danwood@users.noreply.github.com>
8 lines
237 B
Swift
8 lines
237 B
Swift
import SwiftUI
|
|
|
|
/// Representation of a single data point in a chart that is being observed
|
|
public class ChartValue: ObservableObject {
|
|
@Published var currentValue: Double = 0
|
|
@Published var interactionInProgress: Bool = false
|
|
}
|