Wt examples  4.10.4
Loading...
Searching...
No Matches
ChartsExample.h
Go to the documentation of this file.
1// This may look like C code, but it's really -*- C++ -*-
2/*
3 * Copyright (C) 2008 Emweb bv, Herent, Belgium.
4 *
5 * See the LICENSE file for terms of use.
6 */
7#ifndef CHARTS_EXAMPLE_H_
8#define CHARTS_EXAMPLE_H_
9
10#include <Wt/WContainerWidget.h>
11
12#include <iostream>
13
14namespace Wt {
15 class WAbstractItemModel;
16
17 namespace Ext {
18 class TableView;
19 }
20}
21
26
29class TimeSeriesExample: public Wt::WContainerWidget
30{
31public:
35};
36
39class CategoryExample: public Wt::WContainerWidget
40{
41public:
45};
46
49class ScatterPlotExample: public Wt::WContainerWidget
50{
51public:
55};
56
59class PieExample: public Wt::WContainerWidget
60{
61public:
64 PieExample();
65};
66
69class ChartsExample : public Wt::WContainerWidget
70{
71public:
75};
76
79#endif // CHARTS_EXAMPLE_H_
A Widget that demonstrates a category chart.
CategoryExample()
Creates the category chart example.
A widget that demonstrates various aspects of the charting lib.
ChartsExample()
Constructor.
A Widget that demonstrates a Pie chart.
PieExample()
Creates the pie chart example.
A Widget that demonstrates a scatter plot.
ScatterPlotExample()
Creates the scatter plot example.
A widget that demonstrates a times series chart.
TimeSeriesExample()
Creates the time series scatter plot example.