-
-
Notifications
You must be signed in to change notification settings - Fork 6k
New issue
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
xAxis labels not align with values in Multiple Bar Chart #1334
Labels
Comments
@danielgindi looks like a v3 bug? |
I'm not quite sure which version, but certainly the latest one because I send this issue a few hours after downloading the latest version. |
It's easy to find out just check when and where you download the source code |
Master on Aug.19 |
Does this still happen in |
This is a duplicated of #1359, we'll post updates there |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
**let barData = BarChartData(dataSets: [resultDataSet, attemptDataSet]) barData.barWidth = 0.3 barData.groupBars(fromX: 0, groupSpace: 0.2, barSpace: 0.05) chartView.notifyDataSetChanged()**
try to remove one DataSet, it work correctly.
let barData = BarChartData(dataSets: [resultDataSet])
barData.barWidth = 0.3
barData.groupBars(fromX: 0, groupSpace: 0.2, barSpace: 0.05)
chartView.notifyDataSetChanged()
The text was updated successfully, but these errors were encountered: