FIX: remove JKQTPCoordinateAxis::setTickSpacing() as tickSPacing is an internal property that is readonly to the user of the library/outside the class
Some checks failed
CodeQL / Analyze (cpp) (push) Has been cancelled
Doxygen build&deploy / build (push) Has been cancelled
MSVC-CodeAnalysis / Analyze (push) Has been cancelled

This commit is contained in:
jkriege2 2024-10-08 22:00:45 +02:00
parent b65da26c0f
commit 0f956ae8a5
3 changed files with 1 additions and 9 deletions

View File

@ -731,11 +731,6 @@ void JKQTPCoordinateAxis::setNoAbsoluteRange() {
setRange(axismin, axismax);
}
void JKQTPCoordinateAxis::setTickSpacing(double __value) {
this->tickSpacing = __value;
this->paramsChanged=true;
redrawPlot();
}
void JKQTPCoordinateAxis::setAxisMinWidth(double __value) {
this->axisMinWidth = __value;

View File

@ -546,9 +546,6 @@ class JKQTPLOTTER_LIB_EXPORT JKQTPCoordinateAxis: public QObject {
/** \brief do not use an absolute range of plot axis */
void setNoAbsoluteRange();
/** \copydoc tickSpacing */
void setTickSpacing(double __value);
/** \copydoc axisMinWidth */
void setAxisMinWidth(double __value);

View File

@ -187,7 +187,7 @@ class JKQTPLOTTER_LIB_EXPORT JKQTPCoordinateAxisStyle {
/** \brief minimum number of axis ticks */
unsigned int minTicks;
/** \brief number of minor grid lines per axis tick interval
/** \brief number of minor grid lines per (major) axis tick interval
*
* \image html docu_logaxis_set_minorticks.png
**/