I am trying to make a pie chart that shows that rating of a python course. However every time I try to run it, the pie chart doesn’t pop up, only the title. I am using HighCharts to create the pie chart and it is also supposed to be interactive. This is what I am using to create the pie chart. I also don’t get any error message. Please help me.
This is my code down below:
JavaScript
x
88
88
1
import justpy as jp
2
import justpy as jp
3
import pandas as pa
4
from datetime import datetime
5
from pytz import utc
6
7
data = pa.read_csv("reviews.csv", parse_dates=['Timestamp'])
8
share = data.groupby(['Course Name'])['Rating'].count()
9
10
11
chart_def = """
12
{
13
chart: {
14
plotBackgroundColor: null,
15
plotBorderWidth: null,
16
plotShadow: false,
17
type: 'pie'
18
},
19
title: {
20
text: 'Browser market shares in January, 2018'
21
},
22
tooltip: {
23
pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
24
},
25
accessibility: {
26
point: {
27
valueSuffix: '%'
28
}
29
},
30
plotOptions: {
31
pie: {
32
allowPointSelect: true,
33
cursor: 'pointer',
34
dataLabels: {
35
enabled: true,
36
format: '<b>{point.name}</b>: {point.percentage:.1f} %'
37
}
38
}
39
},
40
series: [{
41
name: 'Brands',
42
colorByPoint: true,
43
data: [{
44
name: 'Chrome',
45
y: 61.41,
46
sliced: true,
47
selected: true
48
}, {
49
name: 'Internet Explorer',
50
y: 11.84
51
}, {
52
name: 'Firefox',
53
y: 10.85
54
}, {
55
name: 'Edge',
56
y: 4.67
57
}, {
58
name: 'Safari',
59
y: 4.18
60
}, {
61
name: 'Sogou Explorer',
62
y: 1.64
63
}, {
64
name: 'Opera',
65
y: 1.6
66
}, {
67
name: 'QQ',
68
y: 1.2
69
}, {
70
name: 'Other',
71
y: 2.61
72
}]
73
}]
74
}
75
"""
76
def app():
77
wp = jp.QuasarPage()
78
h1 = jp.QDiv(a = wp, text = "Analaysis of Course Reviews", classes='text-h3 text-center q-pa-md')
79
p1 = jp.QDiv(a = wp, text = "These graphs represent course review analaysis")
80
81
hc = jp.HighCharts(a= wp, options = chart_def)
82
hc_data = [{"name":v1, "y":v2} for v1, v2 in zip(share.index, share)]
83
hc.options.series[0].data = hc_data
84
85
return wp
86
87
jp.justpy(app)
88
Advertisement
Answer
I had the same problem.
I fixed it by removing (or commenting out) the 2 code lines below, which set the “plotBackgroundColor” and “plotBorderWidth” properties to null:
JavaScript
1
9
1
chart_def = """
2
{
3
chart: {
4
//plotBackgroundColor: null, --> remove or comment out this line
5
//plotBorderWidth: null, --> remove or comment out this line
6
plotShadow: false,
7
type: 'pie'
8
},
9
(…)