We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to get a BarChart with Ints?
public init(values: [Double], xIndex: Int) I can use only Doubles.
public init(values: [Double], xIndex: Int)
currently it will be shown this way: Bar1: 15,0 Bar2: 20,0 Bar3: 7,0
But I want: Bar1: 15 Bar2: 20 Bar3: 7
how can i do this?
The text was updated successfully, but these errors were encountered:
chartDataSet.valueFormatter = NSNumberFormatter() chartDataSet.valueFormatter?.alwaysShowsDecimalSeparator = false
chartDataSet is a object of BarChartDataSet. i guess you know about it.
chartDataSet
Sorry, something went wrong.
thanks you!
No branches or pull requests
Is it possible to get a BarChart with Ints?
public init(values: [Double], xIndex: Int)
I can use only Doubles.
currently it will be shown this way:
Bar1: 15,0
Bar2: 20,0
Bar3: 7,0
But I want:
Bar1: 15
Bar2: 20
Bar3: 7
how can i do this?
The text was updated successfully, but these errors were encountered: