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
rqt_plot_qtcharts/src/rqt_plot_qtcharts/rqt_plot_qtcharts_widget.cpp
Line 236 in 853194c
Change it to mChart->axes(Qt::Vertical, mSeriesList.at(i)).append(mAxisY); as it is going to be deprecated in Qt 5.13
The text was updated successfully, but these errors were encountered:
(\s*.*)->setAxisY\((.*),\s*(.*)\); -> $1->axes(Qt::Vertical, $3).append($2);
and (\s*.*)->setAxisX\((.*),\s*(.*)\); -> $1->axes(Qt::Horizontal, $3).append($2);
(\s*.*)->setAxisX\((.*),\s*(.*)\); -> $1->axes(Qt::Horizontal, $3).append($2);
Sorry, something went wrong.
2e10800
QLineSeries::attachAxis should be used...
No branches or pull requests
rqt_plot_qtcharts/src/rqt_plot_qtcharts/rqt_plot_qtcharts_widget.cpp
Line 236 in 853194c
Change it to mChart->axes(Qt::Vertical, mSeriesList.at(i)).append(mAxisY); as it is going to be deprecated in Qt 5.13
The text was updated successfully, but these errors were encountered: