Wt examples  4.11.1
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
78
79#endif // CHARTS_EXAMPLE_H_
CategoryExample()
Creates the category chart example.
ChartsExample()
Constructor.
PieExample()
Creates the pie chart example.
ScatterPlotExample()
Creates the scatter plot example.
TimeSeriesExample()
Creates the time series scatter plot example.