GraphDC Module

class epyk.core.html.graph.GraphDC.Chart(page: PageModel, width, height, title, options, html_code, profile)
build(data=None, options=None, profile=False, component_id=None, dataflows: Optional[List[dict]] = None)
Parameters:
  • data

  • options

  • profile

  • component_id

  • dataflows

property chartId: str

Return the Javascript variable of the chart.

crossFilter(dimension, group)
Parameters:
  • dimension

  • group

define(options: Optional[Union[str, JsDataModel, float, dict, list, bool]] = None, dataflows: Optional[List[dict]] = None) str

Not yet defined for this chart

property options: OptionsWithTemplates

Property to set all the possible object for a button.

Usage:

div = page.ui.div(htmlCode="testDiv")
div.options.inline = True
class epyk.core.html.graph.GraphDC.ChartBar(page: PageModel, width, height, title, options, html_code, profile)
property dom: Bar

Bar chart is one of the most commonly used types of graph and are used to display and compare the number, frequency or other measure (e.g. mean) for different discrete categories or groups. The graph is constructed such that the heights or lengths of the different bars are proportional to the size of the category they represent.

Related Pages:

class epyk.core.html.graph.GraphDC.ChartBubble(page: PageModel, width, height, title, options, html_code, profile)
property dom: Bubble

A bubble chart is used to display three dimensions of the data.

It is a variation of scatter chart, in which the data points are replaced with bubbles. The bubble sizes are represented with respect to the data dimension. It uses horizontal and vertical axes as value axes.

Related Pages:

class epyk.core.html.graph.GraphDC.ChartLine(page: PageModel, width, height, title, options, html_code, profile)
property dom: Line

A line chart is used to display information as a series of data points connected by straight lines.

A data point represents two values, one plotted along the horizontal axis and another along the vertical axis. For example, the popularity of food items can be drawn as a line chart in such a way that the food item is represented along the x-axis and its popularity is represented along the y-axis.

Related Pages:

class epyk.core.html.graph.GraphDC.ChartPie(page: PageModel, width, height, title, options, html_code, profile)
property dom: Pie

A pie chart is a circular statistical graph. It is divided into slices to show a numerical proportion.

Related Pages:

class epyk.core.html.graph.GraphDC.ChartRow(page: PageModel, width, height, title, options, html_code, profile)
property dom: Row

Interface for the Row Chart component.

class epyk.core.html.graph.GraphDC.ChartScatter(page: PageModel, width, height, title, options, html_code, profile)
property dom: Scatter

A scatter plot is a type of mathematical diagram.

It is represented using the Cartesian coordinates to display values for typically two variables for a set of data. The data is displayed as a collection of points and the points maybe colored.

Related Pages:

class epyk.core.html.graph.GraphDC.ChartSeries(page: PageModel, width, height, title, options, html_code, profile)
property dom: Series

A series is a set of data. You can plot a chart based on the data.

Related Pages:

class epyk.core.html.graph.GraphDC.ChartSunburst(page: PageModel, width, height, title, options, html_code, profile)
property dom: Sunburst

Get the interface for the Sunburst Dom element.