diff --git a/doc/dox/examples_and_tutorials.dox b/doc/dox/examples_and_tutorials.dox index 8f860e4c07..099a8fdb88 100644 --- a/doc/dox/examples_and_tutorials.dox +++ b/doc/dox/examples_and_tutorials.dox @@ -40,9 +40,12 @@ All test-projects are Qt-projects that use qmake to build. You can load them int \image html barchart_small.png \subpage JKQTPlotterBarcharts `JKQTPBarVerticalGraph`
C-style arrays of data + \image html barchart_errorbars_small.png + \subpage JKQTPlotterBarchartsErrorBars + `JKQTPBarVerticalErrorGraph`
JKQTPDatastore::addColumnCalculatedFromColumn() \image html barchart_twocolor_small.png \subpage JKQTPlotterBarchartsTwoColorFilling - `JKQTPBarVerticalGraph`
+ `JKQTPBarVerticalGraph`
JKQTPDatastore::addColumnCalculatedFromColumn() \image html stackedbars_small.png \subpage JKQTPlotterStackedBarChart `JKQTPBarVerticalStackableGraph`, `JKQTPBarHorizontalStackableGraph`
C++-style vectors of data @@ -52,6 +55,9 @@ All test-projects are Qt-projects that use qmake to build. You can load them int \image html wiggleplots_small.png \subpage JKQTPlotterWigglePlots `JKQTPFilledCurveXGraph`/`JKQTPFilledCurveYGraph`
setting/altering data in `JKQTPDatstore` directly
data-depentend coloring
random-walks
seismographic data + \image html filledgraphs_errors_small.png + \subpage JKQTPlotterFilledGraphsErrorBars + `JKQTPFilledCurveXErrorGraph`/`JKQTPFilledCurveYErrorGraph` \image html impulsesplot_small.png \subpage JKQTPlotterImpulsePlots `JKQTPImpulsesVerticalGraph` and `JKQTPImpulsesHorizontalGraph`
C++-style QVector as plot data diff --git a/doc/dox/whatsnew.dox b/doc/dox/whatsnew.dox index 7661e8505f..332e2b52b0 100644 --- a/doc/dox/whatsnew.dox +++ b/doc/dox/whatsnew.dox @@ -48,6 +48,7 @@ Changes, compared to \ref page_whatsnew_V4_0_0 "v4.0.0" include:
  • NEW: added property drawLineInForeground to JKQTPXYLineGraph and JKQTPXYParametrizedScatterGraph
  • NEW: added JKQTPXYGraph::setKeyColumn()/JKQTPXYGraph::getKeyColumn() and JKQTPXYGraph::setValueColumn()/JKQTPXYGraph::getValueColumn() and corresponding functions in other classes. In most graph classes they point to xColumn for key and yColumn for values. These functions are virtual and overwritten in derived classes with horizontally oriented graphs, where they point to yColumn for key and yColumn for value. This way you can write generic code with classes for both orientations.
  • NEW: barcharts (derived from JKQTPBarGraphBase) can be configured to use different fill styles above and below the baseline, see JKQTPBarGraphBase::FillMode
  • +
  • NEW: added new error indicator styles JKQTPErrorHalfBarsOutwards, JKQTPErrorHalfBarsInwards, JKQTPErrorHalfBarsAbove, JKQTPErrorHalfBarsBelow which are especially useful for barcharts
  • JKQTMathText: