Mercurial > public > stock-charts
comparison Sources/StockCharts/CapsuleChart/CapsuleChartStyle.swift @ 108:f53d8b9ca92b
Custom style implemented
author | Dennis Concepción Martín <dennisconcepcionmartin@gmail.com> |
---|---|
date | Sun, 04 Jul 2021 16:40:24 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
107:b0c81b2e624d | 108:f53d8b9ca92b |
---|---|
1 // | |
2 // CapsuleChartStyle.swift | |
3 // StockCharts | |
4 // | |
5 // Created by Dennis Concepción Martín on 04/07/2021. | |
6 // | |
7 | |
8 import SwiftUI | |
9 | |
10 public class CapsuleChartStyle { | |
11 public var capsuleColor: Color | |
12 | |
13 public init(capsuleColor: Color) { | |
14 self.capsuleColor = capsuleColor | |
15 } | |
16 } |