------------------------------------------------------------------------------
| 607 | |
| 608 | //------------------------------------------------------------------------------ |
| 609 | const char* vtkBarChartActor::GetBarLabel(int i) |
| 610 | { |
| 611 | if (i < 0 || static_cast<unsigned int>(i) >= this->Labels->size()) |
| 612 | { |
| 613 | return nullptr; |
| 614 | } |
| 615 | |
| 616 | return this->Labels->at(i).c_str(); |
| 617 | } |
| 618 | |
| 619 | //------------------------------------------------------------------------------ |
| 620 | int vtkBarChartActor::GetNumberOfBarLabels() |