kdelibs/kdeui/plotting
Ivailo Monev 82fc15f54b generic: use CMake moc instead of automoc4 by default
for compatibilty reasons automoc4 support is not removed but it
shall be in the future. automoc4 has not been maintained for a
while (last commit is from 2011) and the stable release is from
2009.

CMake version >= 2.8.6 provides the functionality for mocking so
I see no reason to not make use of it.
2015-02-27 07:40:26 +00:00
..
kplotaxis.cpp initial import 2014-11-13 01:04:59 +02:00
kplotaxis.h initial import 2014-11-13 01:04:59 +02:00
kplotobject.cpp initial import 2014-11-13 01:04:59 +02:00
kplotobject.h initial import 2014-11-13 01:04:59 +02:00
kplotpoint.cpp initial import 2014-11-13 01:04:59 +02:00
kplotpoint.h initial import 2014-11-13 01:04:59 +02:00
kplotwidget.cpp generic: use CMake moc instead of automoc4 by default 2015-02-27 07:40:26 +00:00
kplotwidget.h initial import 2014-11-13 01:04:59 +02:00
README initial import 2014-11-13 01:04:59 +02:00

This library provides the KPlot* classes.

KPlotWidget is a QWidget-derived class that provides a virtual baseclass 
for easy data-plotting. The idea behind KPlotWidget is that you only have 
to specify information in "data units"; i.e., the natural units of the 
data being plotted.  KPlotWidget automatically converts everything 
to screen pixel units.

KPlotWidget draws X and Y axes with tickmarks and tick labels.  It 
automatically determines how many tickmarks to use and where they should 
be, based on the data limits specified for the plot.  You change the limits 
by calling setLimits( double x1, double x2, double y1, double y2 ).

Data to be plotted are stored using the KPlotObject class.  KPlotObject
consists of a QList of QPointF's, each specifying the X,Y coordinates
of a data point.  KPlotObject also specifies the "type" of data to be 
plotted (POINTS or CURVE or POLYGON or LABEL).

Jason Harris
kstars@30doradus.org