highcharts-for-python / highcharts-core

Python wrapper for the Highcharts Core JavaScript library
https://www.highcharts.com/integrations/python
Other
58 stars 13 forks source link
charting charting-library data-visualization data-visualization-python highcharts visualization visualization-library wrapper-library

################################################### Highcharts Core for Python ###################################################

High-end data visualization for the Python ecosystem

Highcharts Core for Python is a Python library that provides a Python wrapper for the Highcharts Core <https://www.highcharts.com/products/highcharts/>__ JavaScript data visualization library, with full integration into the robust Python ecosystem, including:

The library supports Highcharts (JS) v.10.2 and higher, including Highcharts (JS) v.11.4.0.

COMPLETE DOCUMENTATION: https://core-docs.highchartspython.com/en/latest/index.html



The Highcharts for Python Toolkit


The Highcharts Core for Python library is - as the name suggests - the core library in the broader Highcharts for Python Toolkit <https://www.highcharts.com/integrations/python>, which together provides comprehensive support across the entire Highcharts <https://www.highcharts.com> suite of data visualization libraries:

.. list-table:: :widths: 30 30 40 :header-rows: 1



Installation


To install Highcharts Core for Python, just execute:

.. code:: bash

$ pip install highcharts-core

Before you install, please be aware of the following "hard" dependencies:

You can find more information about soft and development dependencies in the complete documentation <https://core-docs.highchartspython.com/en/latest/#dependencies>__.



Why Highcharts for Python?


Highcharts <https://www.highcharts.com> is the world's most popular, most powerful, category-defining JavaScript data visualization library. If you are building a web or mobile app/dashboard that will be visualizing data in some fashion, you should absolutely take a look at the Highcharts suite of solutions. Take a peak at some fantastic demo visualizations <https://www.highcharts.com/demo>.

As a suite of JavaScript libraries, Highcharts <https://www.highcharts.com>__ is written in JavaScript, and is used to configure and render data visualizations in a web browser (or other JavaScript-executing) environment. As a set of JavaScript libraries, its audience is JavaScript developers. But what about the broader ecosystem of Python developers and data scientists?

Given Python's increasing adoption as the technology of choice for data science and for the backends of leading enterprise-grade applications, Python is often the backend that delivers data and content to the front-end...which then renders it using JavaScript and HTML.

There are numerous Python frameworks (Django, Flask, Tornado, etc.) with specific capabilities to simplify integration with Javascript frontend frameworks (React, Angular, VueJS, etc.). But facilitating that with Highcharts has historically been very difficult. Part of this difficulty is because the Highcharts JavaScript suite - while supporting JSON as a serialization/deserialization format - leverages JavaScript object literals to expose the full power and interactivity of its data visualizations. And while it's easy to serialize JSON from Python, serializing and deserializing to/from JavaScript object literal notation is much more complicated.

This means that Python developers looking to integrate with Highcharts typically had to either invest a lot of effort, or were only able to leverage a small portion of Highcharts' rich functionality.

So we wrote the Highcharts for Python toolkit to bridge that gap.

Highcharts for Python provides Python object representation for all of the JavaScript objects defined in the Highcharts (JavaScript) API <https://api.highcharts.com/highcharts/>__. It provides automatic data validation, and exposes simple and standardized methods for serializing those Python objects back-and-forth to JavaScript object literal notation.

Key Highcharts Core for Python Features

|

Highcharts for Python vs Alternatives

For a discussion of Highcharts for Python in comparison to alternatives, please see the COMPLETE DOCUMENTATION: https://core-docs.highchartspython.com/en/latest/index.html



Hello World, and Basic Usage


  1. Import Highcharts Core for Python

.. code-block:: python

PRECISE-LOCATION PATTERN: BEST PRACTICE!

This method of importing Highcharts for Python objects yields the fastest

performance for the import statement. However, it is more verbose and requires

you to navigate the extensive Highcharts Core for Python API.

Import classes using precise module indications. For example:

from highcharts_core.chart import Chart from highcharts_core.global_options.shared_options import SharedOptions from highcharts_core.options import HighchartsOptions from highcharts_core.options.plot_options.bar import BarOptions from highcharts_core.options.series.bar import BarSeries

CATCH-ALL PATTERN

This method of importing Highcharts for Python classes has relatively slow

performance because it imports hundreds of different classes from across the entire

library. This performance impact may be acceptable to you in your use-case, but

do use at your own risk.

Import objects from the catch-all ".highcharts" module.

from highcharts_core import highcharts

You can now access specific classes without individual import statements.

highcharts.Chart highcharts.SharedOptions highcharts.HighchartsOptions highcharts.BarOptions highcharts.BarSeries

  1. Create Your Chart

    .. code-block:: python

    from a primitive array, using keyword arguments

    my_chart = Chart(data = [[1, 23], [2, 34], [3, 45]], series_type = 'line')

    from a primitive array, using the .from_array() method

    my_chart = Chart.from_array([[1, 23], [2, 34], [3, 45]], series_type = 'line')

    from a Numpy ndarray, using keyword arguments

    my_chart = Chart(data = numpy_array, series_type = 'line')

    from a Numpy ndarray, using the .from_array() method

    my_chart = Chart.from_array(data = numpy_array, series_type = 'line')

    from a JavaScript file

    my_chart = Chart.from_js_literal('my_js_literal.js')

    from a JSON file

    my_chart = Chart.from_json('my_json.json')

    from a Python dict

    my_chart = Chart.from_dict(my_dict_obj)

    from a Pandas dataframe

    my_chart = Chart.from_pandas(df)

    from a PySpark dataframe

    my_chart = Chart.from_pyspark(df, property_map = { 'x': 'transactionDate', 'y': 'invoiceAmt', 'id': 'id' }, series_type = 'line')

    from a CSV

    my_chart = Chart.from_csv('/some_file_location/filename.csv')

    from a HighchartsOptions configuration object

    my_chart = Chart.from_options(my_options)

    from a Series configuration, using keyword arguments

    my_chart = Chart(series = my_series)

    from a Series configuration, using .from_series()

    my_chart = Chart.from_series(my_series)

  2. Configure Global Settings (optional)

    .. code-block:: python

    Import SharedOptions

    from highcharts_core.global_options.shared_options import SharedOptions

    from a JavaScript file

    my_global_settings = SharedOptions.from_js_literal('my_js_literal.js')

    from a JSON file

    my_global_settings = SharedOptions.from_json('my_json.json')

    from a Python dict

    my_global_settings = SharedOptions.from_dict(my_dict_obj)

    from a HighchartsOptions configuration object

    my_global_settings = SharedOptions.from_options(my_options)

  3. Configure Your Chart / Global Settings

    .. code-block:: python

    from highcharts_core.options.title import Title from highcharts_core.options.credits import Credits

    EXAMPLE 1.

    Using dicts

    my_chart.title = { 'align': 'center', 'floating': True, 'text': 'The Title for My Chart', 'use_html': False, }

    my_chart.credits = { 'enabled': True, 'href': 'https://www.highchartspython.com/', 'position': { 'align': 'center', 'vertical_align': 'bottom', 'x': 123, 'y': 456 }, 'style': { 'color': '#cccccc', 'cursor': 'pointer', 'font_size': '9px' }, 'text': 'Chris Modzelewski' }

    EXAMPLE 2.

    Using direct objects

    from highcharts_core.options.title import Title from highcharts_core.options.credits import Credits

    my_title = Title(text = 'The Title for My Chart', floating = True, align = 'center') my_chart.options.title = my_title

    my_credits = Credits(text = 'Chris Modzelewski', enabled = True, href = 'https://www.highchartspython.com') my_chart.options.credits = my_credits

    EXAMPLE 3.

    Pandas with time series

    import pandas as pd import datetime as dt import numpy as np df = pd.DataFrame([ {"ref_date": dt.date(2024, 1, 1), "data": 1}, {"ref_date": dt.date(2024, 1, 2), "data": 5}, {"ref_date": dt.date(2024, 1, 3), "data": None}, {"ref_date": dt.date(2024, 1, 4), "data": 4}, {"ref_date": dt.date(2024, 1, 5), "data": None}, ])

    df['ref_date'] = pd.to_datetime(df['ref_date']) df.set_index('ref_date', inplace=True)

    df.index = (df.index.astype(np.int64) / 10**6).astype(np.int64)

    Correcting nanoseconds to epoch, which is crucial for javascript rendering,

    See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/now

    for more information on this behaviour

    from highcharts_core.chart import Chart chart = Chart.from_pandas( df=df.reset_index(), series_type='line', property_map={ 'x': df.index.name, 'y': df.columns.to_list() } )

    chart.options.x_axis = { 'type': 'datetime' }

    chart.display()

  4. Generate the JavaScript Code for Your Chart

Now having configured your chart in full, you can easily generate the JavaScript code that will render the chart wherever it is you want it to go:

.. code-block:: python

# EXAMPLE 1.
# as a string
js_as_str = my_chart.to_js_literal()

# EXAMPLE 2.
# to a file (and as a string)
js_as_str = my_chart.to_js_literal(filename = 'my_target_file.js')
  1. Generate the JavaScript Code for Your Global Settings (optional)

    .. code-block:: python

    as a string

    global_settings_js = my_global_settings.to_js_literal()

    to a file (and as a string)

    global_settings_js = my_global_settings.to_js_literal('my_target_file.js')

  2. Generate a Static Version of Your Chart

    .. code-block:: python

    as in-memory bytes

    my_image_bytes = my_chart.download_chart(format = 'png')

    to an image file (and as in-memory bytes)

    my_image_bytes = my_chart.download_chart(filename = 'my_target_file.png', format = 'png')

  3. Render Your Chart in a Jupyter Notebook

    .. code-block:: python

    my_chart.display()



Getting Help/Support


The Highcharts for Python toolkit comes with all of the great support that you are used to from working with the Highcharts JavaScript libraries. When you license the toolkit, you are welcome to use any of the following tools to get help using the toolkit. In particular, you can:

FOR MORE INFORMATION: https://www.highchartspython.com/get-help



Contributing


We welcome contributions and pull requests! For more information, please see the Contributor Guide <https://core-docs.highchartspython.com/en/latest/contributing.html>__. And thanks to all those who've already contributed!



Testing


We use TravisCI <https://travisci.com> for our build automation and ReadTheDocs <https://readthedocs.com> for our documentation.

Detailed information about our test suite and how to run tests locally can be found in our Testing Reference.