• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

LICENSES/H03-May-2022-

autotests/H03-May-2022-528354

examples/H03-May-2022-239167

src/H03-May-2022-2,7081,496

.git-blame-ignore-revsH A D04-Dec-202196 43

.gitignoreH A D04-Dec-2021305 2928

.gitlab-ci.ymlH A D04-Dec-2021373 86

.kde-ci.ymlH A D04-Dec-2021131 86

KF5PlottingConfig.cmake.inH A D04-Dec-2021193 95

README.mdH A D04-Dec-2021902 2316

metainfo.yamlH A D04-Dec-2021371 2220

README.md

1# KPlotting
2
3Data plotting
4
5## Introduction
6
7KPlotWidget is a QWidget-derived class that provides a virtual base class
8for easy data-plotting. The idea behind KPlotWidget is that you only have
9to specify information in "data units"; i.e., the natural units of the
10data being plotted.  KPlotWidget automatically converts everything
11to screen pixel units.
12
13KPlotWidget draws X and Y axes with tick marks and tick labels.  It
14automatically determines how many tick marks to use and where they should
15be, based on the data limits specified for the plot.  You change the limits
16by calling `setLimits(double x1, double x2, double y1, double y2)`.
17
18Data to be plotted are stored using the KPlotObject class.  KPlotObject
19consists of a QList of QPointF's, each specifying the X,Y coordinates
20of a data point.  KPlotObject also specifies the "type" of data to be
21plotted (POINTS or CURVE or POLYGON or LABEL).
22
23