stemp_abw.visualizations package

Submodules

stemp_abw.visualizations.highcharts module

class stemp_abw.visualizations.highcharts.HCPiechart(theme='results', data=None, tooltip_text='', setup_labels=None, **kwargs)[source]

Bases: stemp_abw.visualizations.highcharts.HCStemp

setup = {'chart': {'backgroundColor': 'rgba(255, 255, 255, 0.0)', 'type': 'pie'}, 'plotOptions': {'pie': {'allowPointSelect': False, 'cursor': 'pointer', 'dataLabels': {'format': '<b>{point.name}</b>: {point.y}<br>({point.percentage:.1f} %)'}, 'showInLegend': True}}, 'tooltip': {'headerFormat': None, 'pointFormat': '{point.name}: <b>{point.percentage:.1f}%</b>'}}
class stemp_abw.visualizations.highcharts.HCStackedColumn(theme='results', data=None, tooltip_text='', setup_labels=None, **kwargs)[source]

Bases: stemp_abw.visualizations.highcharts.HCStemp

setup = {'chart': {'backgroundColor': 'rgba(255, 255, 255, 0.0)', 'type': 'column'}, 'plotOptions': {'column': {'dataLabels': {'enabled': False}}}, 'tooltip': {'headerFormat': '<b>{point.x}</b><br/>', 'pointFormat': '{series.name}: {point.y}<br/>Total: {point.stackTotal}'}, 'yAxis': {'min': 0}}
class stemp_abw.visualizations.highcharts.HCStemp(theme='results', data=None, tooltip_text='', setup_labels=None, **kwargs)[source]

Bases: utils.highcharts.Highchart

setup = {}
tooltip
class stemp_abw.visualizations.highcharts.HCTimeseries(theme='results', data=None, tooltip_text='', setup_labels=None, **kwargs)[source]

Bases: stemp_abw.visualizations.highcharts.HCStemp

setup = {'chart': {'backgroundColor': 'rgba(255, 255, 255, 0.0)', 'type': 'line'}, 'legend': {'align': 'right', 'layout': 'vertical', 'verticalAlign': 'middle'}, 'xAxis': {'type': 'datetime'}, 'yAxis': {'min': 0}}

Module contents