FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
quickchart-python/examples/simple_example_with_function.py at master · typpo/quickchart-python · GitHub
typpo
/
quickchart-python
Public
Notifications
You must be signed in to change notification settings
Fork
10
Star
66
Code
Issues
2
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
quickchart-python
/
examples
/
simple_example_with_function.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
32 lines (30 loc) · 527 Bytes
Breadcrumbs
quickchart-python
/
examples
/
simple_example_with_function.py
Copy path
File metadata and controls
32 lines (30 loc) · 527 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from
quickchart
import
QuickChart
qc
=
QuickChart
()
qc
.
width
=
600
qc
.
height
=
300
qc
.
device_pixel_ratio
=
2.0
qc
.
config
=
"""{
type: 'bar',
data: {
labels: ['Q1', 'Q2', 'Q3', 'Q4'],
datasets: [{
label: 'Users',
data: [50, 60, 70, 180]
}, {
label: 'Revenue',
data: [100, 200, 300, 400]
}]
},
options: {
scales: {
yAxes: [{
ticks: {
callback: (val) => {
return val + 'k';
}
}
}]
}
}
}"""
print
(
qc
.
get_url
())
Back
|
FazBrowse Home
|
New Git URL