Skip to content

Commit c76bc60

Browse files
committed
Updated requirements and added another demo.
1 parent 10371e1 commit c76bc60

File tree

4 files changed

+72
-6
lines changed

4 files changed

+72
-6
lines changed

highcharts-core/line-charts/basic-line.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@
163163
{
164164
"cell_type": "code",
165165
"execution_count": null,
166-
"id": "0a15686e-9276-4a2a-abb3-b3c529098725",
166+
"id": "69ef4b1d-59e3-4482-9ad7-efe94b81aa38",
167167
"metadata": {},
168168
"outputs": [],
169169
"source": []
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"id": "c6dab5e1-7c58-4c71-a286-12cf985393aa",
6+
"metadata": {},
7+
"source": [
8+
"# Tutorial Line"
9+
]
10+
},
11+
{
12+
"cell_type": "code",
13+
"execution_count": null,
14+
"id": "d97fd530-4317-469a-8693-5aca0f487bc0",
15+
"metadata": {
16+
"tags": []
17+
},
18+
"outputs": [],
19+
"source": [
20+
"from highcharts_core.chart import Chart\n",
21+
"from highcharts_core.options.series.area import LineSeries\n",
22+
"from highcharts_core.global_options.shared_options import SharedOptions\n",
23+
"\n",
24+
"my_chart = Chart(container = 'target_div',\n",
25+
" options = {\n",
26+
" 'series': [\n",
27+
" LineSeries(data = [0, 5, 3, 5])\n",
28+
" ]\n",
29+
" },\n",
30+
" variable_name = 'myChart')\n",
31+
"\n",
32+
"# Now this will render the contents of \"my_chart\" in your Jupyter Notebook\n",
33+
"my_chart.display()"
34+
]
35+
},
36+
{
37+
"cell_type": "code",
38+
"execution_count": null,
39+
"id": "d14e449a-5bd1-4bc3-96a9-78c3da46604f",
40+
"metadata": {},
41+
"outputs": [],
42+
"source": []
43+
}
44+
],
45+
"metadata": {
46+
"kernelspec": {
47+
"display_name": "Python 3 (ipykernel)",
48+
"language": "python",
49+
"name": "python3"
50+
},
51+
"language_info": {
52+
"codemirror_mode": {
53+
"name": "ipython",
54+
"version": 3
55+
},
56+
"file_extension": ".py",
57+
"mimetype": "text/x-python",
58+
"name": "python",
59+
"nbconvert_exporter": "python",
60+
"pygments_lexer": "ipython3",
61+
"version": "3.10.5"
62+
}
63+
},
64+
"nbformat": 4,
65+
"nbformat_minor": 5
66+
}

highcharts-gantt/gantt-charts/basic-gantt-chart.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
{
133133
"cell_type": "code",
134134
"execution_count": null,
135-
"id": "4ec7bbf0-a11a-45e6-812d-501d1e421396",
135+
"id": "926fdce2-e476-46d4-9b11-aaa8ca7086f9",
136136
"metadata": {},
137137
"outputs": [],
138138
"source": []

requirements.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ asana==3.2.0
22
esprima==4.0.1
33
geojson==3.0.1
44
geopandas==0.12.2
5-
highcharts-core>=1.0.0-rc1
6-
highcharts-stock>=1.0.0-rc1
7-
highcharts-maps>=1.0.0-rc1
8-
highcharts_gantt>=1.0.0-rc1
5+
highcharts-core>=1.0.0
6+
highcharts-stock>=1.0.0
7+
highcharts-maps>=1.0.0
8+
highcharts_gantt>=1.0.0
99
jira==3.5.0
1010
jupyterlab==3.6.1
1111
monday==1.3.3

0 commit comments

Comments
 (0)