00001
00002
00003
00004
00005
00006
00007
00009
00010 #ifndef BARPLOT_H_
00011 #define BARPLOT_H_
00012
00013
00014 #include <wx/xy/xyplot.h>
00015
00016 #include <wx/category/categorydataset.h>
00017
00022 class WXDLLIMPEXP_FREECHART BarPlot : public XYPlot
00023 {
00024 public:
00025 BarPlot();
00026 virtual ~BarPlot();
00027
00028 protected:
00029 virtual bool AcceptAxis(Axis *axis);
00030
00031 virtual bool AcceptDataset(Dataset *dataset);
00032
00033 virtual void DrawDatasets(wxDC &dc, wxRect rc);
00034 };
00035
00036 #endif