Skip to content

Latest commit

 

History

History
62 lines (43 loc) · 1.69 KB

landing-page.md

File metadata and controls

62 lines (43 loc) · 1.69 KB

dash-holoniq-apexcharts

Minimal Dash wrapper for react-apexcharts library.

Code Snippet

from dash_holoniq_apexcharts import DashApexcharts
import dash
from dash import  html

app = dash.Dash(__name__)


app.layout = html.Div([
    DashApexcharts(
        options = {
            'chart': {'id': 'apex-chart-example'},
            'xaxis': { 'categories': [1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999]}
        },

        series = [{
            'name': 'series-1',
            'data': [30, 40, 35, 50, 49, 60, 70, 91, 125]
        }],

        type = "bar",
        width=500,
        height=320
    )
])

if __name__ == '__main__':
    app.run_server(debug=False, host="0.0.0.0", port=5000)

Installation

You can install dash-holoniq-apexcharts with pip:

pip install dash-holoniq-apexcharts

Documentation

Head over to the README for more details.

Contributing

The source code for dash-holoniq-apexcharts is available on GitHub. If you find a bug or something is unclear, we encourage you to raise an issue. We also welcome contributions, to contribute, fork the repository and open a pull request.