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

Method addXRange

src/frontend/dockwidgets/CartesianPlotDock.cpp:1099–1107  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1097}
1098
1099void CartesianPlotDock::addXRange() {
1100 if (!m_plot)
1101 return;
1102
1103 DEBUG(Q_FUNC_INFO << ", current x range count = " << m_plot->rangeCount(Dimension::X))
1104
1105 m_plot->addXRange();
1106 updateRangeList(Dimension::X);
1107}
1108void CartesianPlotDock::addYRange() {
1109 if (!m_plot)
1110 return;

Calls 1

rangeCountMethod · 0.45