VTK  9.5.2
vtkAxis.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
3
41
42#ifndef vtkAxis_h
43#define vtkAxis_h
44
45#include "vtkChartsCoreModule.h" // For export macro
46#include "vtkContextItem.h"
47#include "vtkPen.h" // For vtkPen
48#include "vtkRect.h" // For bounding rect
49#include "vtkSmartPointer.h" // For vtkSmartPointer
50#include "vtkStdString.h" // For vtkStdString ivars
51#include "vtkVector.h" // For position variables
52#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
53
54VTK_ABI_NAMESPACE_BEGIN
55class vtkContext2D;
56class vtkFloatArray;
57class vtkDoubleArray;
58class vtkStringArray;
59class vtkTextProperty;
60
61class VTKCHARTSCORE_EXPORT VTK_MARSHALAUTO vtkAxis : public vtkContextItem
62{
63public:
64 vtkTypeMacro(vtkAxis, vtkContextItem);
65 void PrintSelf(ostream& os, vtkIndent indent) override;
66
79
80 enum
81 {
84 };
85
89 static vtkAxis* New();
90
92
95 virtual void SetPosition(int position);
96 vtkGetMacro(Position, int);
98
100
103 void SetPoint1(const vtkVector2f& pos);
104 void SetPoint1(float x, float y);
106
108
111 vtkGetVector2Macro(Point1, float);
114
116
119 void SetPoint2(const vtkVector2f& pos);
120 void SetPoint2(float x, float y);
122
124
127 vtkGetVector2Macro(Point2, float);
130
135 virtual void SetNumberOfTicks(int numberOfTicks);
136
138
141 vtkGetMacro(NumberOfTicks, int);
143
145
148 vtkSetMacro(TickLength, float);
149 vtkGetMacro(TickLength, float);
151
153
157 vtkGetObjectMacro(LabelProperties, vtkTextProperty);
159
165 virtual void SetMinimum(double minimum);
166
168
173 vtkGetMacro(Minimum, double);
175
181 virtual void SetMaximum(double maximum);
182
184
189 vtkGetMacro(Maximum, double);
191
197 virtual void SetUnscaledMinimum(double minimum);
198
200
203 vtkGetMacro(UnscaledMinimum, double);
205
209 virtual void SetUnscaledMaximum(double maximum);
210
212
215 vtkGetMacro(UnscaledMaximum, double);
217
219
228 virtual void SetRange(double minimum, double maximum);
229 virtual void SetRange(double range[2]);
230 virtual void SetUnscaledRange(double minimum, double maximum);
231 virtual void SetUnscaledRange(double range[2]);
233
235
242 virtual void GetRange(double* range);
243 virtual void GetUnscaledRange(double* range);
245
249 virtual void SetMinimumLimit(double lowest);
250
252
255 vtkGetMacro(MinimumLimit, double);
257
261 virtual void SetMaximumLimit(double highest);
262
264
267 vtkGetMacro(MaximumLimit, double);
269
273 virtual void SetUnscaledMinimumLimit(double lowest);
274
276
279 vtkGetMacro(UnscaledMinimumLimit, double);
281
285 virtual void SetUnscaledMaximumLimit(double highest);
286
288
291 vtkGetMacro(UnscaledMaximumLimit, double);
293
295
298 vtkGetVector2Macro(Margins, int);
300
302
305 vtkSetVector2Macro(Margins, int);
307
309
312 virtual void SetTitle(const vtkStdString& title);
315
317
320 vtkGetObjectMacro(TitleProperties, vtkTextProperty);
322
324
336 vtkGetMacro(LogScaleActive, bool);
338
340
346 vtkGetMacro(LogScale, bool);
347 virtual void SetLogScale(bool logScale);
348 vtkBooleanMacro(LogScale, bool);
350
352
355 vtkSetMacro(GridVisible, bool);
356 vtkGetMacro(GridVisible, bool);
358
360
363 vtkSetMacro(LabelsVisible, bool);
364 vtkGetMacro(LabelsVisible, bool);
366
368
371 vtkSetMacro(RangeLabelsVisible, bool);
372 vtkGetMacro(RangeLabelsVisible, bool);
374
376
379 vtkSetMacro(LabelOffset, float);
380 vtkGetMacro(LabelOffset, float);
382
384
387 vtkSetMacro(TicksVisible, bool);
388 vtkGetMacro(TicksVisible, bool);
390
392
395 vtkSetMacro(AxisVisible, bool);
396 vtkGetMacro(AxisVisible, bool);
398
400
403 vtkSetMacro(TitleVisible, bool);
404 vtkGetMacro(TitleVisible, bool);
406
408
412 virtual void SetPrecision(int precision);
413 vtkGetMacro(Precision, int);
415
419 enum
420 {
425 };
426
428
432 virtual void SetLabelFormat(const std::string& fmt);
433 vtkGetMacro(LabelFormat, std::string);
435
437
442 vtkSetMacro(RangeLabelFormat, std::string);
443 vtkGetMacro(RangeLabelFormat, std::string);
445
447
452 virtual void SetNotation(int notation);
453 vtkGetMacro(Notation, int);
455
459 enum
460 {
461 AUTO = 0, // Automatically scale the axis to view all data that is visible.
462 FIXED, // Use a fixed axis range and make no attempt to rescale.
463 CUSTOM // Deprecated, use the tick label settings instead.
464 };
465
467
470 vtkSetMacro(Behavior, int);
471 vtkGetMacro(Behavior, int);
473
475
478 vtkSetSmartPointerMacro(Pen, vtkPen);
479 vtkGetObjectMacro(Pen, vtkPen);
481
483
486 vtkSetSmartPointerMacro(GridPen, vtkPen);
487 vtkGetObjectMacro(GridPen, vtkPen);
489
491
498 vtkSetMacro(TickLabelAlgorithm, int);
499 vtkGetMacro(TickLabelAlgorithm, int);
501
503
507 vtkSetMacro(ScalingFactor, double);
508 vtkGetMacro(ScalingFactor, double);
509 vtkSetMacro(Shift, double);
510 vtkGetMacro(Shift, double);
512
517 void Update() override;
518
522 bool Paint(vtkContext2D* painter) override;
523
530 virtual void AutoScale();
531
537
543
549
554
562 virtual bool SetCustomTickPositions(vtkDoubleArray* positions, vtkStringArray* labels = nullptr);
563
571
577 static double NiceNumber(double number, bool roundUp);
578
583 static double NiceMinMax(double& min, double& max, float pixelRange, float tickPixelSpacing);
584
590
594 bool Hit(const vtkContextMouseEvent& mouse) override;
595
596protected:
598 ~vtkAxis() override;
599
608 void UpdateLogScaleActive(bool updateMinMaxFromUnscaled);
609
613 virtual void GenerateTickLabels(double min, double max);
614
618 virtual void GenerateTickLabels();
619
620 virtual void GenerateLabelFormat(int notation, double n);
621
625 virtual vtkStdString GenerateSprintfLabel(double value, const std::string& format);
626
631 double CalculateNiceMinMax(double& min, double& max);
632
642 double LogScaleTickMark(double number, bool roundUp, bool& niceValue, int& order);
643
655 virtual void GenerateLogSpacedLinearTicks(int order, double min, double max);
656
668 int order, double min = 1.0, double max = 9.0, bool detailLabels = true);
669
674
675 int Position; // The position of the axis (LEFT, BOTTOM, RIGHT, TOP)
676 float* Point1; // The position of point 1 (usually the origin)
677 float* Point2; // The position of point 2 (usually the terminus)
679 double TickInterval; // Interval between tick marks in plot space
680 int NumberOfTicks; // The number of tick marks to draw
681 float TickLength; // The length of the tick marks
682 vtkTextProperty* LabelProperties; // Text properties for the labels.
683 double Minimum; // Minimum value of the axis
684 double Maximum; // Maximum values of the axis
685 double MinimumLimit; // Lowest possible value for Minimum
686 double MaximumLimit; // Highest possible value for Maximum
687 double UnscaledMinimum; // UnscaledMinimum value of the axis
688 double UnscaledMaximum; // UnscaledMaximum values of the axis
689 double UnscaledMinimumLimit; // Lowest possible value for UnscaledMinimum
690 double UnscaledMaximumLimit; // Highest possible value for UnscaledMaximum
691 double NonLogUnscaledMinLimit; // Saved UnscaledMinimumLimit (when !LogActive)
692 double NonLogUnscaledMaxLimit; // Saved UnscaledMinimumLimit (when !LogActive)
693 int Margins[2]; // Horizontal/vertical margins for the axis
694 vtkStdString Title; // The text label drawn on the axis
695 vtkTextProperty* TitleProperties; // Text properties for the axis title
696 bool LogScale; // *Should* the axis use a log scale?
697 bool LogScaleActive; // *Is* the axis using a log scale?
698 bool GridVisible; // Whether the grid for the axis should be drawn
699 bool LabelsVisible; // Should the axis labels be visible
700 bool RangeLabelsVisible; // Should range labels be visible?
701 float LabelOffset; // Offset of label from the tick mark
702 bool TicksVisible; // Should the tick marks be visible.
703 bool AxisVisible; // Should the axis line be visible.
704 bool TitleVisible; // Should the title be visible.
705 int Precision; // Numerical precision to use, defaults to 2.
706 int Notation; // The notation to use (standard, scientific, mixed)
707 std::string LabelFormat; // The printf-style format string used for labels.
708 std::string RangeLabelFormat; // The printf-style format string used for range labels.
709 int Behavior; // The behaviour of the axis (auto, fixed, custom).
710 float MaxLabel[2]; // The widest/tallest axis label.
711 bool TitleAppended; // Track if the title is updated when the label formats
712 // are changed in the Extended Axis Labeling algorithm
713
715
721 double Shift;
723
728
733
738
743
748
753
759
764
769
774
779
780private:
781 vtkAxis(const vtkAxis&) = delete;
782 void operator=(const vtkAxis&) = delete;
783
787 bool InRange(double value);
788};
789
790VTK_ABI_NAMESPACE_END
791#endif // vtkAxis_h
virtual void SetUnscaledMaximumLimit(double highest)
Set the logical highest possible value for Maximum, in plot coordinates.
bool Paint(vtkContext2D *painter) override
Paint event for the axis, called whenever the axis needs to be drawn.
virtual void SetMinimum(double minimum)
Set the logical minimum value of the axis, in plot coordinates.
vtkVector2f Position1
Definition vtkAxis.h:678
void GenerateLogScaleTickMarks(int order, double min=1.0, double max=9.0, bool detailLabels=true)
Generate tick marks for logarithmic scale for specific order of magnitude.
virtual void SetUnscaledMinimumLimit(double lowest)
Set the logical lowest possible value for Minimum, in plot coordinates.
virtual void GenerateTickLabels()
Generate tick labels from the supplied double array of tick positions.
bool TitleVisible
Definition vtkAxis.h:704
void SetPoint1(float x, float y)
Set point 1 of the axis (in pixels), this is usually the origin.
double UnscaledMaximumLimit
Definition vtkAxis.h:690
bool TitleAppended
Definition vtkAxis.h:711
int Behavior
Definition vtkAxis.h:709
static double NiceNumber(double number, bool roundUp)
Return a "nice number", often defined as 1, 2 or 5.
void SetPoint2(const vtkVector2f &pos)
Set point 2 of the axis (in pixels), this is usually the terminus.
vtkVector2f GetPosition2()
Get point 2 of the axis (in pixels), this is usually the terminus.
std::string RangeLabelFormat
Definition vtkAxis.h:708
static vtkAxis * New()
Creates a 2D Chart object.
virtual void SetNotation(int notation)
Get/set the numerical notation, standard, scientific, fixed, or a printf-style format string.
int Precision
Definition vtkAxis.h:705
void Update() override
Update the geometry of the axis.
int Margins[2]
Definition vtkAxis.h:693
vtkRectf GetBoundingRect(vtkContext2D *painter)
Request the space the axes require to be drawn.
double NonLogUnscaledMinLimit
Definition vtkAxis.h:691
virtual vtkDoubleArray * GetTickPositions()
An array with the positions of the tick marks along the axis line.
vtkVector2f Position2
Definition vtkAxis.h:678
int Position
Definition vtkAxis.h:675
bool UsingNiceMinMax
Hint as to whether a nice min/max was set, otherwise labels may not be present at the top/bottom of t...
Definition vtkAxis.h:758
virtual void SetNumberOfTicks(int numberOfTicks)
Set the number of tick marks for this axis.
virtual void SetLabelFormat(const std::string &fmt)
Get/Set the printf-style format string used when TickLabelAlgorithm is TICK_SIMPLE and Notation is PR...
virtual vtkStringArray * GetTickLabels()
A string array containing the tick labels for the axis.
virtual void GenerateLogSpacedLinearTicks(int order, double min, double max)
Generate logarithmically-spaced tick marks with linear-style labels.
bool Hit(const vtkContextMouseEvent &mouse) override
Return true if the supplied x, y coordinate is inside the item.
float MaxLabel[2]
Definition vtkAxis.h:710
double CalculateNiceMinMax(double &min, double &max)
Calculate the next "nicest" numbers above and below the current minimum.
int TickLabelAlgorithm
The algorithm being used to tick label placement.
Definition vtkAxis.h:773
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual void SetTitle(const vtkStdString &title)
Get/set the title text of the axis.
bool GridVisible
Definition vtkAxis.h:698
double Shift
Scaling factor used on this axis, this is used to accurately render very small/large numbers accurate...
Definition vtkAxis.h:721
double UnscaledMinimumLimit
Definition vtkAxis.h:689
vtkTextProperty * LabelProperties
Definition vtkAxis.h:682
static double NiceMinMax(double &min, double &max, float pixelRange, float tickPixelSpacing)
Static function to calculate "nice" minimum, maximum, and tick spacing values.
float * Point2
Definition vtkAxis.h:677
@ FIXED
Definition vtkAxis.h:462
@ CUSTOM
Definition vtkAxis.h:463
@ TICK_SIMPLE
Definition vtkAxis.h:82
@ TICK_WILKINSON_EXTENDED
Definition vtkAxis.h:83
virtual void SetUnscaledRange(double range[2])
Set the logical range of the axis, in plot coordinates.
int NumberOfTicks
Definition vtkAxis.h:680
vtkStdString Title
Definition vtkAxis.h:694
void SetPoint1(const vtkVector2f &pos)
Set point 1 of the axis (in pixels), this is usually the origin.
bool Resized
Flag to indicate that the axis has been resized.
Definition vtkAxis.h:768
double MinimumLimit
Definition vtkAxis.h:685
virtual void SetPosition(int position)
Get/set the position of the axis (LEFT, BOTTOM, RIGHT, TOP, PARALLEL).
double UnscaledMinimum
Definition vtkAxis.h:687
float TickLength
Definition vtkAxis.h:681
virtual void GetRange(double *range)
Get the logical range of the axis, in plot coordinates.
bool RangeLabelsVisible
Definition vtkAxis.h:700
vtkVector2f GetPosition1()
Get point 1 of the axis (in pixels), this is usually the origin.
double TickInterval
Definition vtkAxis.h:679
virtual void SetMaximumLimit(double highest)
Set the logical highest possible value for Maximum, in plot coordinates.
void SetPoint2(float x, float y)
Set point 2 of the axis (in pixels), this is usually the terminus.
virtual void SetPrecision(int precision)
Get/set the numerical precision to use, default is 2.
vtkSmartPointer< vtkFloatArray > TickScenePositions
Position of tick marks in screen coordinates.
Definition vtkAxis.h:747
virtual void SetMinimumLimit(double lowest)
Set the logical lowest possible value for Minimum, in plot coordinates.
virtual vtkStdString GenerateSprintfLabel(double value, const std::string &format)
Generate label using a printf-style format string.
virtual void RecalculateTickSpacing()
Recalculate the spacing of the tick marks - typically useful to do after scaling the axis.
vtkSmartPointer< vtkPen > Pen
This object stores the vtkPen that controls how the axis is drawn.
Definition vtkAxis.h:732
virtual void SetUnscaledMinimum(double minimum)
Set the logical, unscaled minimum value of the axis, in plot coordinates.
virtual void SetRange(double range[2])
Set the logical range of the axis, in plot coordinates.
bool LabelsVisible
Definition vtkAxis.h:699
void CalculateTitlePosition(vtkVector2f &out)
Calculate the position where the title of the axis would be drawn.
~vtkAxis() override
bool TicksVisible
Definition vtkAxis.h:702
Location
Enumeration of the axis locations in a conventional XY chart.
Definition vtkAxis.h:72
@ TOP
Definition vtkAxis.h:76
@ BOTTOM
Definition vtkAxis.h:74
@ PARALLEL
Definition vtkAxis.h:77
@ RIGHT
Definition vtkAxis.h:75
@ LEFT
Definition vtkAxis.h:73
double Maximum
Definition vtkAxis.h:684
virtual vtkStdString GenerateSimpleLabel(double val)
Generate a single label using the current settings when TickLabelAlgorithm is TICK_SIMPLE.
double Minimum
Definition vtkAxis.h:683
virtual void GenerateTickLabels(double min, double max)
Calculate and assign nice labels/logical label positions.
int Notation
Definition vtkAxis.h:706
virtual bool SetCustomTickPositions(vtkDoubleArray *positions, vtkStringArray *labels=nullptr)
Set the tick positions, and optionally custom tick labels.
virtual void GenerateLabelFormat(int notation, double n)
virtual void AutoScale()
Use this function to autoscale the axes after setting the minimum and maximum values.
virtual vtkFloatArray * GetTickScenePositions()
An array with the positions of the tick marks along the axis line.
virtual void SetUnscaledMaximum(double maximum)
Set the logical maximum value of the axis, in plot coordinates.
double ScalingFactor
Scaling factor used on this axis, this is used to accurately render very small/large numbers accurate...
Definition vtkAxis.h:720
vtkSmartPointer< vtkPen > GridPen
This object stores the vtkPen that controls how the grid lines are drawn.
Definition vtkAxis.h:737
double NonLogUnscaledMaxLimit
Definition vtkAxis.h:692
float * Point1
Definition vtkAxis.h:676
double MaximumLimit
Definition vtkAxis.h:686
virtual void GetUnscaledRange(double *range)
Get the logical range of the axis, in plot coordinates.
vtkTextProperty * TitleProperties
Definition vtkAxis.h:695
virtual void SetRange(double minimum, double maximum)
Set the logical range of the axis, in plot coordinates.
bool CustomTickLabels
Are we using custom tick labels, or should the axis generate them?
Definition vtkAxis.h:727
void UpdateLogScaleActive(bool updateMinMaxFromUnscaled)
Update whether log scaling will be used for layout and rendering.
virtual vtkStdString GetTitle()
Get/set the title text of the axis.
std::string LabelFormat
Definition vtkAxis.h:707
double LogScaleTickMark(double number, bool roundUp, bool &niceValue, int &order)
Return a tick mark for a logarithmic axis.
bool TickMarksDirty
Mark the tick labels as dirty when the min/max value is changed.
Definition vtkAxis.h:763
float LabelOffset
Definition vtkAxis.h:701
bool AxisVisible
Definition vtkAxis.h:703
vtkSmartPointer< vtkStringArray > TickLabels
The labels for the tick marks.
Definition vtkAxis.h:752
virtual void SetUnscaledRange(double minimum, double maximum)
Set the logical range of the axis, in plot coordinates.
double UnscaledMaximum
Definition vtkAxis.h:688
bool LogScale
Definition vtkAxis.h:696
virtual void SetMaximum(double maximum)
Set the logical maximum value of the axis, in plot coordinates.
virtual void SetLogScale(bool logScale)
Get/set whether the axis should attempt to use a log scale.
@ FIXED_NOTATION
Definition vtkAxis.h:423
@ PRINTF_NOTATION
Definition vtkAxis.h:424
@ SCIENTIFIC_NOTATION
Definition vtkAxis.h:422
@ STANDARD_NOTATION
Definition vtkAxis.h:421
bool LogScaleActive
Definition vtkAxis.h:697
vtkTimeStamp BuildTime
The point cache is marked dirty until it has been initialized.
Definition vtkAxis.h:778
vtkSmartPointer< vtkDoubleArray > TickPositions
Position of tick marks in screen coordinates.
Definition vtkAxis.h:742
Class for drawing 2D primitives to a graphical context.
vtkContextItem()=default
data structure to represent mouse events.
dynamic, self-adjusting array of double
dynamic, self-adjusting array of float
a simple class to control print indentation
Definition vtkIndent.h:29
provides a pen that draws the outlines of shapes drawn by vtkContext2D.
Definition vtkPen.h:30
Hold a reference to a vtkObjectBase instance.
Wrapper around std::string to keep symbols short.
a vtkAbstractArray subclass for strings
represent text properties.
record modification and/or execution time
#define VTK_MARSHALAUTO
#define max(a, b)