Exemple #1
0
 /**
  * Constructor.
  *
  * @since 1.0.0
  *
  * @access public
  * @param array $data The data what has to be associated with this render.
  */
 public function __construct($data = array())
 {
     parent::__construct($data);
     $this->_verticalGridLines = true;
     $this->_horizontalGridLines = true;
     $this->_positions = array('' => '', 'in' => esc_html__('Inside the chart', Visualizer_Plugin::NAME), 'out' => esc_html__('Outside the chart', Visualizer_Plugin::NAME), 'none' => esc_html__('None', Visualizer_Plugin::NAME));
 }
Exemple #2
0
 /**
  * Renders tooltip settings section.
  *
  * @since 1.4.0
  *
  * @access protected
  */
 protected function _renderTooltipSettigns()
 {
     parent::_renderTooltipSettigns();
     self::_renderSelectItem(esc_html__('Text', Visualizer_Plugin::NAME), 'tooltip[text]', isset($this->tooltip['text']) ? $this->tooltip['text'] : null, array('' => '', 'both' => esc_html__('Display both the absolute value of the slice and the percentage of the whole', Visualizer_Plugin::NAME), 'value' => esc_html__('Display only the absolute value of the slice', Visualizer_Plugin::NAME), 'percentage' => esc_html__('Display only the percentage of the whole represented by the slice', Visualizer_Plugin::NAME)), esc_html__('Determines what information to display when the user hovers over a pie slice.', Visualizer_Plugin::NAME));
 }