mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-15 10:05:47 +08:00
FIX: remove JKQTPCoordinateAxis::setTickSpacing() as tickSPacing is an internal property that is readonly to the user of the library/outside the class
This commit is contained in:
parent
b65da26c0f
commit
0f956ae8a5
@ -731,11 +731,6 @@ void JKQTPCoordinateAxis::setNoAbsoluteRange() {
|
|||||||
setRange(axismin, axismax);
|
setRange(axismin, axismax);
|
||||||
}
|
}
|
||||||
|
|
||||||
void JKQTPCoordinateAxis::setTickSpacing(double __value) {
|
|
||||||
this->tickSpacing = __value;
|
|
||||||
this->paramsChanged=true;
|
|
||||||
redrawPlot();
|
|
||||||
}
|
|
||||||
|
|
||||||
void JKQTPCoordinateAxis::setAxisMinWidth(double __value) {
|
void JKQTPCoordinateAxis::setAxisMinWidth(double __value) {
|
||||||
this->axisMinWidth = __value;
|
this->axisMinWidth = __value;
|
||||||
|
@ -546,9 +546,6 @@ class JKQTPLOTTER_LIB_EXPORT JKQTPCoordinateAxis: public QObject {
|
|||||||
/** \brief do not use an absolute range of plot axis */
|
/** \brief do not use an absolute range of plot axis */
|
||||||
void setNoAbsoluteRange();
|
void setNoAbsoluteRange();
|
||||||
|
|
||||||
/** \copydoc tickSpacing */
|
|
||||||
void setTickSpacing(double __value);
|
|
||||||
|
|
||||||
/** \copydoc axisMinWidth */
|
/** \copydoc axisMinWidth */
|
||||||
void setAxisMinWidth(double __value);
|
void setAxisMinWidth(double __value);
|
||||||
|
|
||||||
|
@ -187,7 +187,7 @@ class JKQTPLOTTER_LIB_EXPORT JKQTPCoordinateAxisStyle {
|
|||||||
|
|
||||||
/** \brief minimum number of axis ticks */
|
/** \brief minimum number of axis ticks */
|
||||||
unsigned int minTicks;
|
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
|
* \image html docu_logaxis_set_minorticks.png
|
||||||
**/
|
**/
|
||||||
|
Loading…
Reference in New Issue
Block a user