| 13 | #include <QmitkChartxyData.h> |
| 14 | |
| 15 | QmitkChartxyData::QmitkChartxyData(const std::vector< std::pair<double, double> > &data, |
| 16 | const QVariant &label, |
| 17 | const QVariant &chartType, |
| 18 | const QVariant &position) |
| 19 | : m_LabelCount(position), m_Label(label), m_ChartType(chartType) |
| 20 | { |
| 21 | SetData(data); |
| 22 | } |
| 23 | |
| 24 | void QmitkChartxyData::SetData(const std::vector< std::pair<double, double> > &data) |
| 25 | { |