You are here

protected function ChartsOpenFlash::_get_translated_chart_type in Charts and Graphs 6

Translate Charts and Graphs graph type to Open Chrats Flash 2 types.

It currently doesn't nothing of value but will leave it here in case some brave soul decides to implement horizontal bar or area or some other graph type.

Return value

<string>

1 call to ChartsOpenFlash::_get_translated_chart_type()
ChartsOpenFlash::get_chart in apis/charts_openflash/charts_openflash.class.inc
Function that renders data.

File

apis/charts_openflash/charts_openflash.class.inc, line 188
Implementation of abstract class ChartCanvas for Open Charts Flash 2 library.

Class

ChartsOpenFlash
Implementation of abstract class ChartCanvas for Open Charts Flash 2 library.

Code

protected function _get_translated_chart_type() {
  switch ($this->type) {
    default:
      $type = $this->type;
  }
  return $type;
}