view Sources/StockCharts/LineChart/Helpers/IndicatorPoint.swift @ 131:ce6bfc2702fb default tip

Move to mercurial
author Dennis C. M. <dennis@denniscm.com>
date Tue, 03 Jun 2025 15:00:31 +0100
parents 5057c45046c1
children
line wrap: on
line source

//
//  IndicatorPoint.swift
//  StockCharts
//
//  Created by Dennis Concepción Martín on 30/4/21.
//

import SwiftUI

public struct IndicatorPoint: View {
    public var lineChartController: LineChartController
    
    public var body: some View {
        Circle()
            .frame(width: 20, height: 20)
            .foregroundColor(lineChartController.indicatorPointColor)
    }
}