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
Context Last version of Charts, using a CombinedChartView with a grouped BarChart and a LineChart.
Problem getTransformer function doesn't work properly when AxisDependency is set to right. The AxisDependency still to left axis.
getTransformer
AxisDependency
right
It should be The AxisDependency should return a right axis based transformer.
Exemple code
let transformer = barChartView.getTransformer(forAxis: YAxis.AxisDependency.right) let point = transformer.pixelForValues(x: groupWidth, y: 0)
It seems like it's not implemented yet,
internal override func initialize() { super.initialize() _leftAxisTransformer = Transformer(viewPortHandler: _viewPortHandler) _rightAxisTransformer = Transformer(viewPortHandler: _viewPortHandler) }
The text was updated successfully, but these errors were encountered:
you are using barChartView instead of combined chart view.
Sorry, something went wrong.
No branches or pull requests
Context
Last version of Charts, using a CombinedChartView with a grouped BarChart and a LineChart.
Problem
getTransformer
function doesn't work properly whenAxisDependency
is set toright
. The AxisDependency still to left axis.It should be
The AxisDependency should return a right axis based transformer.
Exemple code
It seems like it's not implemented yet,
The text was updated successfully, but these errors were encountered: