Language Tag | Language | Region | Description |
---|---|---|---|
ar-SA | Arabic | Saudi Arabia | Arabic (Saudi Arabia) |
bn-BD | Bangla | Bangladesh | Bangla (Bangladesh) |
bn-IN | Bangla | India | Bangla (India) |
cs-CZ | Czech | Czech Republic | Czech (Czech Republic) |
da-DK | Danish | Denmark | Danish (Denmark) |
de-AT | German | Austria | Austrian German |
de-CH | German | Switzerland | "Swiss" German |
de-DE | German | Germany |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Image Example: | |
https://quickchart.io/chart?bkg=white&c=%7B%20type%3A%20%27doughnut%27%2C%20data%3A%20%7B%20labels%3A%20%5B%27High%27%2C%20%27Medium%27%2C%20%27Low%27%5D%2C%20datasets%3A%20%5B%7B%20data%3A%20%5B11%2C%20110%2C%2060%5D%2C%20backgroundColor%3A%20%5B%27%234e73df%27%2C%20%27%230f3dc4%27%2C%20%27%239fb4f3%27%5D%20%7D%5D%20%7D%2C%20options%3A%20%7B%20legend%3A%20%7B%20position%3A%20%27right%27%2C%20align%3A%20%27start%27%20%7D%2C%20plugins%3A%20%7B%20datalabels%3A%20%7B%20color%3A%20%27%23fff%27%20%7D%2C%20doughnutlabel%3A%20%7B%20labels%3A%20%5B%7B%20text%3A%20%27Donut%27%2C%20font%3A%20%7B%20size%3A%2020%20%7D%20%7D%5D%20%7D%20%7D%20%7D%20%7D | |
Interactive Example: | |
https://quickchart.io/sandbox/#{%0A%20%20%20%20type:%20'doughnut',%0A%20%20%20%20data:%20{%0A%20%20%20%20%20%20%20%20labels:%20['High',%20'Medium',%20'Low'],%0A%20%20%20%20%20%20%20%20datasets:%20[{%0A%20%20%20%20%20%20%20%20%20%20%20%20data:%20[11,%20110,%2060],%0A%20%20%20%20%20%20%20%20%20%20%20%20backgroundColor:%20['%234e73df',%20'% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { stringify } = require('javascript-stringify'); | |
const chartObj = { | |
type: 'bar', | |
data: { | |
labels: ['January', 'February', 'March', 'April', 'May'], | |
datasets: [{ | |
label: 'Dogs', | |
data: [ 50, 60, 70, 180, 190 ] | |
}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const chartObj = { | |
type: 'bar', | |
data: { | |
labels: ['January', 'February', 'March', 'April', 'May'], | |
datasets: [{ | |
label: 'Dogs', | |
data: [ 50, 60, 70, 180, 190 ] | |
}] | |
}, | |
options: { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const chartStr = `{ | |
type: 'bar', | |
data: { | |
labels: ['January', 'February', 'March', 'April', 'May'], | |
datasets: [{ | |
label: 'Dogs', | |
data: [ 50, 60, 70, 180, 190 ] | |
}] | |
}, | |
options: { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "line", | |
"data": { | |
"labels": [ "", "", "", "", "", "", "", "" ], | |
"datasets": [ | |
{ | |
"label": "comments", | |
"borderColor": "blue", | |
"yAxisID": "A", | |
"data": [ 0, 1, 1, 1, 2, 3, 4, 4 ], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"net/http" | |
"net/url" | |
) | |
func main() { | |
values := url.Values{ | |
"phone": {"5555555"}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var request = require('request'); | |
request.post('https://textbelt.com/text', { | |
form: { | |
phone: '5555555555', | |
message: 'Hello world', | |
key: 'textbelt', | |
}, | |
}, function(err, httpResponse, body) { | |
if (err) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
type: 'radar', | |
data: { | |
labels: ['Jan', 'Feb', 'March', 'April', 'May'], | |
datasets: [{ | |
data: [ 50, 60, 70, 80, 90 ], | |
backgroundColor: 'transparent', | |
borderColor: 'red', | |
}] | |
}, |
NewerOlder