Skip to content

Commit

Permalink
Merge pull request ChartsOrg#3 from healthimation/a11y_for_bar_charts
Browse files Browse the repository at this point in the history
A11y for bar charts
  • Loading branch information
andreichernikovich committed Apr 15, 2021
2 parents c28fa28 + 50b51c5 commit 4828bb6
Show file tree
Hide file tree
Showing 5 changed files with 116 additions and 114 deletions.
2 changes: 1 addition & 1 deletion Charts.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Charts"
s.version = "3.3.1f"
s.version = "3.3.1g"
s.summary = "Charts is a powerful & easy to use chart library for iOS, tvOS and OSX (and Android)"
s.homepage = "https://github.com/evgenButurlia/Charts"
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
Expand Down
2 changes: 1 addition & 1 deletion Source/Charts/Charts/ChartViewBase.swift
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ open class ChartViewBase: NSUIView, ChartDataProvider, AnimatorDelegate
@objc open var noDataFont = NSUIFont.systemFont(ofSize: 12)

/// color of the no data text
@objc open var noDataTextColor: NSUIColor = NSUIColor.black
@objc open var noDataTextColor: NSUIColor = NSUIColor.init(red: 0.0, green: 119.0/255.0, blue: 133/255.0, alpha: 1.0)

/// alignment of the no data text
@objc open var noDataTextAlignment: NSTextAlignment = .left
Expand Down
Loading

0 comments on commit 4828bb6

Please sign in to comment.