KD Chart 2  [rev.2.7]
Public Types | Static Public Member Functions | List of all members
KDChartEnums Class Reference

Project global class providing some enums needed both by KDChartParams and by KDChartCustomBox. More...

#include <KDChartEnums.h>

Inheritance diagram for KDChartEnums:
Inheritance graph
[legend]
Collaboration diagram for KDChartEnums:
Collaboration graph
[legend]

Public Types

enum  GranularitySequence {
  GranularitySequence_10_20,
  GranularitySequence_10_50,
  GranularitySequence_25_50,
  GranularitySequence_125_25,
  GranularitySequenceIrregular
}
 GranularitySequence specifies the values, that may be applied, to determine a step width within a given data range. More...
 
enum  MeasureCalculationMode {
  MeasureCalculationModeAbsolute,
  MeasureCalculationModeRelative,
  MeasureCalculationModeAuto,
  MeasureCalculationModeAutoArea,
  MeasureCalculationModeAutoOrientation
}
 Measure calculation mode: the way how the absolute value of a KDChart::Measure is determined during KD Chart's internal geometry calculation time. More...
 
enum  MeasureOrientation {
  MeasureOrientationAuto,
  MeasureOrientationHorizontal,
  MeasureOrientationVertical,
  MeasureOrientationMinimum,
  MeasureOrientationMaximum
}
 Measure orientation mode: the way how the absolute value of a KDChart::Measure is determined during KD Chart's internal geometry calculation time. More...
 
enum  PositionValue {
  PositionUnknown = 0,
  PositionCenter = 1,
  PositionNorthWest = 2,
  PositionNorth = 3,
  PositionNorthEast = 4,
  PositionEast = 5,
  PositionSouthEast = 6,
  PositionSouth = 7,
  PositionSouthWest = 8,
  PositionWest = 9,
  PositionFloating =10
}
 Numerical values of the static KDChart::Position instances, for using a Position::value() with a switch () statement. More...
 
enum  TextLayoutPolicy {
  LayoutJustOverwrite,
  LayoutPolicyRotate,
  LayoutPolicyShiftVertically,
  LayoutPolicyShiftHorizontally,
  LayoutPolicyShrinkFontSize
}
 Text layout policy: what to do if text that is to be drawn would cover neighboring text or neighboring areas. More...
 

Static Public Member Functions

static QString granularitySequenceToString (GranularitySequence sequence)
 Converts the specified granularity sequence enum to a string representation. More...
 
static QString layoutPolicyToString (TextLayoutPolicy type)
 Converts the specified text layout policy enum to a string representation. More...
 
static QString measureCalculationModeToString (MeasureCalculationMode mode)
 Converts the specified measure calculation mode enum to a string representation. More...
 
static QString measureOrientationToString (MeasureOrientation mode)
 Converts the specified measure orientation enum to a string representation. More...
 
static GranularitySequence stringToGranularitySequence (const QString &string)
 Converts the specified string to a granularity sequence enum value. More...
 
static TextLayoutPolicy stringToLayoutPolicy (const QString &string)
 Converts the specified string to a text layout policy enum value. More...
 
static MeasureCalculationMode stringToMeasureCalculationMode (const QString &string)
 Converts the specified string to a measure calculation mode enum value. More...
 
static MeasureOrientation stringToMeasureOrientation (const QString &string)
 Converts the specified string to a measure orientation enum value. More...
 

Detailed Description

Project global class providing some enums needed both by KDChartParams and by KDChartCustomBox.

Definition at line 40 of file KDChartEnums.h.

Member Enumeration Documentation

GranularitySequence specifies the values, that may be applied, to determine a step width within a given data range.

Note
Granularity with can be set for Linear axis calculation mode only, there is no way to specify a step width for Logarithmic axes.

Value occurring in the GranularitySequence names only are showing their respective relation ship. For real data they will most times not be used directly, but be multiplied by positive (or negative, resp.) powers of ten.

A granularity sequence is a sequence of values from the following set: 1, 1.25, 2, 2.5, 5.

The reason for using one of the following three pre-defined granularity sequences (instead of just using the best matching step width) is to follow a simple rule: If scaling becomes finer (== smaller step width) no value, that has been on a grid line before, shall loose its line and be NOT on a grid line anymore!

This means: Smaller step width may not remove any grid lines, but it may add additional lines in between.

  • GranularitySequence_10_20 Step widths can be 1, or 2, but they never can be 2.5 nor 5, nor 1.25.
  • GranularitySequence_10_50 Step widths can be 1, or 5, but they never can be 2, nor 2.5, nor 1.25.
  • GranularitySequence_25_50 Step widths can be 2.5, or 5, but they never can be 1, nor 2, nor 1.25.
  • GranularitySequence_125_25 Step widths can be 1.25 or 2.5 but they never can be 1, nor 2, nor 5.
  • GranularitySequenceIrregular Step widths can be all of these values: 1, or 1.25, or 2, or 2.5, or 5.
Note
When ever possible, try to avoid using GranularitySequenceIrregular! Allowing all possible step values, using this granularity sequence involves a serious risk: Your users might be irritated due to 'jumping' grid lines, when step size is changed from 2.5 to 2 (or vice versa, resp.). In case you still want to use GranularitySequenceIrregular just make sure to NOT draw any sub-grid lines, because in most cases you will get not-matching step widths for the sub-grid. In short: GranularitySequenceIrregular can safely be used if your data range is not changing at all AND (b) you will not allow the coordinate plane to be zoomed AND (c) you are not displaying any sub-grid lines.

Since you probably like having the value 1 as an allowed step width, the granularity sequence decision boils down to a boolean question:

  • To get ten divided by five you use GranularitySequence_10_20, while
  • for having it divided by two GranularitySequence_10_50 is your choice.
Enumerator
GranularitySequence_10_20 
GranularitySequence_10_50 
GranularitySequence_25_50 
GranularitySequence_125_25 
GranularitySequenceIrregular 

Definition at line 95 of file KDChartEnums.h.

Measure calculation mode: the way how the absolute value of a KDChart::Measure is determined during KD Chart's internal geometry calculation time.

KDChart::Measure values either are relative (calculated in relation to a given AbstractArea), or they are absolute (used as fixed values).

Values stored in relative measure always are interpreted as per-mille of a reference area's height (or width, resp.) depending on the orientation set for the KDChart::Measure.

  • MeasureCalculationModeAbsolute Value set by setValue() is absolute, to be used unchanged.
  • MeasureCalculationModeRelative Value is relative, the reference area is specified by setReferenceArea(), and orientation specified by setOrientation().
  • MeasureCalculationModeAuto Value is relative, KD Chart will automatically determine which reference area to use, and it will determine the orientation too.
  • MeasureCalculationModeAutoArea Value is relative, Orientation is specified by setOrientation(), and KD Chart will automatically determine which reference area to use.
  • MeasureCalculationModeAutoOrientation Value is relative, Area is specified by setReferenceArea(), and KD Chart will automatically determine which orientation to use.
See also
KDChart::Measure::setCalculationMode
Enumerator
MeasureCalculationModeAbsolute 
MeasureCalculationModeRelative 
MeasureCalculationModeAuto 
MeasureCalculationModeAutoArea 
MeasureCalculationModeAutoOrientation 

Definition at line 222 of file KDChartEnums.h.

Measure orientation mode: the way how the absolute value of a KDChart::Measure is determined during KD Chart's internal geometry calculation time.

KDChart::Measure values either are relative (calculated in relation to a given AbstractArea), or they are absolute (used as fixed values).

Values stored in relative measure take into account the width (and/or the height, resp.) of a so-called reference area, that is either specified by KDChart::Measure::setReferenceArea, or determined by KD Chart automatically, respectively.

  • MeasureOrientationAuto Value is calculated, based upon the width (or on the height, resp.) of the reference area: KD Chart will automatically determie an appropriate way.
  • MeasureOrientationHorizontal Value is calculated, based upon the width of the reference area.
  • MeasureOrientationVertical Value is calculated, based upon the height of the reference area.
  • MeasureOrientationMinimum Value is calculated, based upon the width (or on the height, resp.) of the reference area - which ever is smaller.
  • MeasureOrientationMaximum Value is calculated, based upon the width (or on the height, resp.) of the reference area - which ever is smaller.
See also
KDChart::Measure::setOrientationMode
Enumerator
MeasureOrientationAuto 
MeasureOrientationHorizontal 
MeasureOrientationVertical 
MeasureOrientationMinimum 
MeasureOrientationMaximum 

Definition at line 290 of file KDChartEnums.h.

Numerical values of the static KDChart::Position instances, for using a Position::value() with a switch () statement.

See also
Position
Enumerator
PositionUnknown 
PositionCenter 
PositionNorthWest 
PositionNorth 
PositionNorthEast 
PositionEast 
PositionSouthEast 
PositionSouth 
PositionSouthWest 
PositionWest 
PositionFloating 

Definition at line 192 of file KDChartEnums.h.

Text layout policy: what to do if text that is to be drawn would cover neighboring text or neighboring areas.

  • LayoutJustOverwrite Just ignore the layout collision and write the text nevertheless.
  • LayoutPolicyRotate Try counter-clockwise rotation to make the text fit into the space.
  • LayoutPolicyShiftVertically Shift the text baseline upwards (or downwards, resp.) and draw a connector line between the text and its anchor.
  • LayoutPolicyShiftHorizontally Shift the text baseline to the left (or to the right, resp.) and draw a connector line between the text and its anchor.
  • LayoutPolicyShrinkFontSize Reduce the text font size.
See also
KDChartParams::setPrintDataValues
Enumerator
LayoutJustOverwrite 
LayoutPolicyRotate 
LayoutPolicyShiftVertically 
LayoutPolicyShiftHorizontally 
LayoutPolicyShrinkFontSize 

Definition at line 161 of file KDChartEnums.h.

Member Function Documentation

static QString KDChartEnums::granularitySequenceToString ( GranularitySequence  sequence)
static

Converts the specified granularity sequence enum to a string representation.

Parameters
sequencethe granularity sequence enum to convert
Returns
the string representation of the granularity sequence

Definition at line 109 of file KDChartEnums.h.

Referenced by KDChart::operator<<().

static QString KDChartEnums::layoutPolicyToString ( TextLayoutPolicy  type)
static

Converts the specified text layout policy enum to a string representation.

Parameters
typethe text layout policy to convert
Returns
the string representation of the text layout policy enum
static QString KDChartEnums::measureCalculationModeToString ( MeasureCalculationMode  mode)
static

Converts the specified measure calculation mode enum to a string representation.

Parameters
modethe measure calculation mode to convert
Returns
the string representation of the Measure calculation mode enum

Definition at line 235 of file KDChartEnums.h.

static QString KDChartEnums::measureOrientationToString ( MeasureOrientation  mode)
static

Converts the specified measure orientation enum to a string representation.

Parameters
modethe measure orientation to convert
Returns
the string representation of the measure orientation enum

Definition at line 303 of file KDChartEnums.h.

static GranularitySequence KDChartEnums::stringToGranularitySequence ( const QString &  string)
static

Converts the specified string to a granularity sequence enum value.

Parameters
stringthe string to convert
Returns
the granularity sequence enum value

Definition at line 133 of file KDChartEnums.h.

static TextLayoutPolicy KDChartEnums::stringToLayoutPolicy ( const QString &  string)
static

Converts the specified string to a text layout policy enum value.

Parameters
stringthe string to convert
Returns
the text layout policy enum value
static MeasureCalculationMode KDChartEnums::stringToMeasureCalculationMode ( const QString &  string)
static

Converts the specified string to a measure calculation mode enum value.

Parameters
stringthe string to convert
Returns
the measure calculation mode enum value

Definition at line 259 of file KDChartEnums.h.

static MeasureOrientation KDChartEnums::stringToMeasureOrientation ( const QString &  string)
static

Converts the specified string to a measure orientation enum value.

Parameters
stringthe string to convert
Returns
the measure orientation enum value

Definition at line 327 of file KDChartEnums.h.


The documentation for this class was generated from the following file:

Klarälvdalens Datakonsult AB (KDAB)
"The Qt, C++ and OpenGL Experts"
https://www.kdab.com/

https://www.kdab.com/development-resources/qt-tools/kd-chart/