MCPcopy Create free account
hub / github.com/KDE/labplot / addYRange

Method addYRange

src/frontend/dockwidgets/CartesianPlotDock.cpp:1108–1116  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1106 updateRangeList(Dimension::X);
1107}
1108void CartesianPlotDock::addYRange() {
1109 if (!m_plot)
1110 return;
1111
1112 DEBUG(Q_FUNC_INFO << ", current y range count = " << m_plot->rangeCount(Dimension::Y))
1113
1114 m_plot->addYRange();
1115 updateRangeList(Dimension::Y);
1116}
1117
1118void CartesianPlotDock::removeXRange() {
1119 removeRange(Dimension::X);

Calls 1

rangeCountMethod · 0.45