FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
quickchart-python/examples/using_quickchartfunction.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
/
using_quickchartfunction.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
34 lines (31 loc) · 889 Bytes
Breadcrumbs
quickchart-python
/
examples
/
using_quickchartfunction.py
Copy path
File metadata and controls
34 lines (31 loc) · 889 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
33
34
from
datetime
import
datetime
from
quickchart
import
QuickChart
,
QuickChartFunction
qc
=
QuickChart
()
qc
.
width
=
600
qc
.
height
=
300
qc
.
device_pixel_ratio
=
2.0
qc
.
config
=
{
"type"
:
"bar"
,
"data"
: {
"labels"
: [
datetime
(
2020
,
1
,
15
),
datetime
(
2021
,
1
,
15
)],
"datasets"
: [{
"label"
:
"Foo"
,
"data"
: [
1
,
2
]}],
},
"options"
: {
"scales"
: {
"yAxes"
: [
{
"ticks"
: {
"callback"
:
QuickChartFunction
(
'(val) => val + "k"'
)}},
{
"ticks"
: {
"callback"
:
QuickChartFunction
(
"""function(val) {
return val + '???';
}"""
)
}
},
],
"xAxes"
: [
{
"ticks"
: {
"callback"
:
QuickChartFunction
(
'(val) => "$" + val'
)}}
],
}
},
}
print
(
qc
.
get_url
())
Back
|
FazBrowse Home
|
New Git URL