| 545 | } |
| 546 | |
| 547 | void QmitkChartWidget::Impl::Show(bool showSubChart) |
| 548 | { |
| 549 | if (m_C3xyData.empty()) |
| 550 | { |
| 551 | MITK_WARN << "no data available for display in chart"; |
| 552 | } |
| 553 | |
| 554 | else |
| 555 | { |
| 556 | m_C3Data.SetAppearance(showSubChart, m_C3xyData.front()->GetChartType() == QVariant("pie")); |
| 557 | } |
| 558 | |
| 559 | InitializeJavaScriptChart(); |
| 560 | } |
| 561 | |
| 562 | void QmitkChartWidget::Impl::SetShowLegend(bool show) |
| 563 | { |
no test coverage detected