| 174 | } |
| 175 | |
| 176 | void UpdateChart(vtkChart* chart, pimplChartSetting* setting) |
| 177 | { |
| 178 | if (chart && setting) |
| 179 | { |
| 180 | vtkPlot* plot = chart->GetPlot(0); |
| 181 | if (plot) |
| 182 | { |
| 183 | plot->SetTooltipNotation(setting->TooltipNotation); |
| 184 | plot->SetTooltipPrecision(setting->TooltipPrecision); |
| 185 | } |
| 186 | } |
| 187 | } |
| 188 | |
| 189 | vtkNew<vtkTable> Histogram; |
| 190 | bool VisibleColumnsModified; |
nothing calls this directly
no test coverage detected