20ElementPlotData::ElementPlotData(wxString name, CurveType curveType)
23 m_curveType = curveType;
26ElementPlotData::~ElementPlotData() {}
27void ElementPlotData::AddData(std::vector<double> values, wxString name)
31 data->SetValues(values);
34 data->SetColour(*wxBLACK);
35 data->SetPenType(wxPENSTYLE_SOLID);
38 m_elementData.push_back(data);
This class is responsible to manage the graphical data of electromechanical result to be plotted on c...