Exemple #1
0
  def chart(self):
    """

    :rtype: JsPlotly.Pie
    """
    if self._chart is None:
      self._chart = JsPlotly.Pie(self._report, varName=self.chartId)
    return self._chart
Exemple #2
0
  def chart(self) -> JsPlotly.Pie:
    """
    Description:
    ------------

    :rtype: JsPlotly.Pie
    """
    if self._chart is None:
      self._chart = JsPlotly.Pie(self.page, varName=self.chartId)
    return self._chart
Exemple #3
0
  def chart(self) -> JsPlotly.Pie:
    """
    Description:
    -----------

    :rtype: JsPlotly.Pie
    """
    if self._chart is None:
      self._chart = JsPlotly.Pie(page=self.page, js_code=self.chartId, component=self)
    return self._chart