ResInsight/doc/qwtplot.plantuml
Kristian Bendiksen 258fbddc10
Merge pull request #8387 from OPM/qtcharts-summary-plots
Closes #8228 

Major refactoring of summary plotting. Now possible to create plots both with Qwt and QtChart as plotting tool.
2022-01-17 13:14:21 +01:00

32 lines
604 B
Plaintext

@startuml
package Rim {
PdmObject <|-- RimViewWindow
package plots {
RimViewWindow <|-- RimPlotWindow
RimPlotWindow <|-- RimPlot
RimPlot <|-- RimSummaryPlot
}
}
package RiuQwt {
class RiuSummaryQwtPlot
class RiuQwtPlotWidget
}
package RiuQtCharts {
class RiuSummaryQtChartsPlot
class RiuQtChartsPlotWidget
}
RiuPlotWidget <|--- RiuQwtPlotWidget
RiuSummaryPlot <|-- RiuSummaryQwtPlot
RiuSummaryQwtPlot --> RiuQwtPlotWidget
RiuSummaryQtChartsPlot --> RiuQtChartsPlotWidget
RiuSummaryPlot <|-- RiuSummaryQtChartsPlot
RiuPlotWidget <|--- RiuQtChartsPlotWidget
RimSummaryPlot --> RiuSummaryPlot
@enduml