All Questions
Tagged with highcharts python
244
questions
0
votes
1
answer
104
views
Highcharts Stock using the Chart.from_pandas method
can someone please share a simple example on how to use Chart.from_pandas method to draw a candlestick chart within Jupyter. My Dataframe contains the tandard Datetime, Open, High, Low, Close, Volume +...
0
votes
1
answer
24
views
Encoding issue with requests getting json
I want to get topography for French departments with this code :
import pandas as pd
import requests
link_dep = 'https://code.highcharts.com/mapdata/countries/fr/fr-all-all.topo.json'
topo = requests....
0
votes
0
answers
89
views
How can I click an element inside canvas using Selenium with Python?
How can I click an element inside canvas using Selenium with Python in this particular situation?
Inspecting the element shows this CSS selector:
#highcharts-hz2pb6j-471 > svg > g.highcharts-...
-1
votes
1
answer
172
views
Can you provide a highcharts_stock example written in python with multiple line charts?
Can you point me to an example written in python that uses the latest version of highchart_stock 1.5.0 (as installed from pypi) for python and includes 2 series showing the closing price of two stocks ...
0
votes
2
answers
141
views
streamlit highcharts : how to show burger menu
I'm trying to reproduce code available here :
https://aalteirac-streamlit-highcharts-test-app-main-3vgde6.streamlit.app
I got the graph, totally working, except I don't get the burger menu allowing to ...
0
votes
1
answer
123
views
How can I create a SVG chart offline with highcharts for python?
I'm trying to create an SVG chart with highcharts in Python for a windows application. I was able to download thanks to Server Side export, but I would need to export it offline. I saw that there is ...
0
votes
2
answers
84
views
Use a period (.) to separate thousands in the highchart tooltip
I want to use a period (.) to separate thousands in the highchart tooltip like 'lang': { 'thousandsSep': '.' } but I was unsuccessful.
This sentence expresses frustration with trying different methods ...
0
votes
0
answers
64
views
Adding custom html buttons to python highcharts in jupyter
I am trying to develop a highcharts plot, in jupyter, that updates the series values when a button is clicked.
A Dummy Example
Here is some dummy data for two separate charts. The xAxis and yAxis are ...
0
votes
1
answer
138
views
Highcharts map in python/Jupyter : no rendering
New to highcharts, I'm trying to draw a choropleth map for department in France with Jupyter notebooks (as a start)
from highcharts_maps.chart import Chart
import geopandas as gpd
import numpy as np
...
0
votes
1
answer
62
views
to_js_literal() - returns null for "open" values in data array
I am trying to convert a chart with a time series to js literal in highcharts for python.
The time series seems to be loading correctly into the python object chart.
When converting to js literal (...
1
vote
1
answer
139
views
Highcharts python
I have a python code:
from highcharts_core.chart import Chart
Chart.from_pandas(load_pickle_p, property_map={
'x': 'Date',
'y': 'Power'
}, series_type='area', ...
0
votes
0
answers
95
views
Highcharts in Jupyterlab Throws Highcharts.js script error while trying to display the charts on arearange
I'm trying to replicate one of the highchart's demos on area range with line charts (
/highcharts-core/area-charts/area-range-with-line.ipynb) in my local anaconda Jupyterlab opened in the browser (...
0
votes
0
answers
56
views
python highcharts integration issue with loading script in Jupyter Notebook
I encounter this issue while integrating highcharts into my python application with https://github.com/highcharts-for-python/highcharts-core
Something went wrong with the Highcharts.js script. It ...
0
votes
1
answer
67
views
Highstock highcharts - How do flag positions properly map to csv column/headers and to chart series items using options.series[#] in Javascript?
Edit - Solution - Fixed Syntax Error!
The question below has two answers expressed in the body and links to JSFiddle:
Highcharts Highstock How to add flags to chart drawn from embedded CSV data?
In ...
0
votes
1
answer
53
views
Changing data frame values to corresponding numbers
I'm trying to take data that appears like this.
age_gender
page_fans_gender_age
new_age_group
new_gender_group
F.13-17
1259
13-17
F
F.18-24
3329
18-24
F
F.25-34
14090
25-34
F
F.35-44
5864
35-44
F
...