From b184fb98e9607c201ccdfb71302569af9fbb6fbd Mon Sep 17 00:00:00 2001 From: Majid Jabrayilov Date: Thu, 5 May 2022 18:38:26 +0400 Subject: [PATCH] Chart style protocol refactored --- Sources/SwiftUICharts/Model/ChartStyle.swift | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/Sources/SwiftUICharts/Model/ChartStyle.swift b/Sources/SwiftUICharts/Model/ChartStyle.swift index 8f8ea5f..43e8602 100644 --- a/Sources/SwiftUICharts/Model/ChartStyle.swift +++ b/Sources/SwiftUICharts/Model/ChartStyle.swift @@ -1,6 +1,6 @@ // -// File.swift -// +// ChartStyle.swift +// SwiftUICharts // // Created by Majid Jabrayilov on 08.12.20. // @@ -8,12 +8,6 @@ import SwiftUI /// Protocol type that defines general chart styling options public protocol ChartStyle { - /// Boolean value indicating whenever show chart labels - var showLabels: Bool { get } - - /// Boolean value indicating whenever show chart axis - var showAxis: Bool { get } - /// Boolean value indicating whenever show chart legends var showLegends: Bool { get } }