Skip to content

Commit

Permalink
Merge pull request #4801 from SLambrakis/bugfix/4800-objc-axis-render…
Browse files Browse the repository at this point in the history
…er-properties

Properties on axis renderers to Objc (Fixes #4800)
  • Loading branch information
pmairoldi committed May 25, 2022
2 parents d2ae284 + 9b8433f commit 313c285
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Source/Charts/Renderers/XAxisRenderer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ import CoreGraphics
@objc(ChartXAxisRenderer)
open class XAxisRenderer: NSObject, AxisRenderer
{
public let viewPortHandler: ViewPortHandler
public let axis: XAxis
public let transformer: Transformer?
@objc public let viewPortHandler: ViewPortHandler
@objc public let axis: XAxis
@objc public let transformer: Transformer?

@objc public init(viewPortHandler: ViewPortHandler, axis: XAxis, transformer: Transformer?)
{
Expand Down
6 changes: 3 additions & 3 deletions Source/Charts/Renderers/YAxisRenderer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ import CoreGraphics
@objc(ChartYAxisRenderer)
open class YAxisRenderer: NSObject, AxisRenderer
{
public let viewPortHandler: ViewPortHandler
public let axis: YAxis
public let transformer: Transformer?
@objc public let viewPortHandler: ViewPortHandler
@objc public let axis: YAxis
@objc public let transformer: Transformer?

@objc public init(viewPortHandler: ViewPortHandler, axis: YAxis, transformer: Transformer?)
{
Expand Down

0 comments on commit 313c285

Please sign in to comment.