Charts
Progress Chart : Sales Stats
Sales Stats
72%
Sales
-
Conversion Ratio
-
Total requirements
Documentation
Available Parameters
| Parameter | Type | Description |
|---|---|---|
baseId
|
Unique Text
required |
Set Unique Base ID for Chart. |
title
|
Text
required |
Set title of Chart. |
type
|
Text | Set chart type. Set default or "progress". |
progressDetails
|
Progress Details Object | Set progress details for chart type "progress". Example: {
|
height
|
Number | Set height for chart in pixels. |
legend
|
Array of Legend | Set list of legend for chart. Example: [
|
actions
|
Array of Action Item | Set list of actions for chart. Example: [
|
options
|
Options Object | Set Options for chart. More about options see https://echarts.apache.org/en/option.html |
Starter Kit Codes
Starter Kit Code
{# include charts/pie #}
{% include "../../charts/pie.twig", with {
"baseId" : "example-chart-sales-stats",
"title" : "Sales Stats",
"type" : "progress",
"progressDetails" : {
"name" : "Conversion Ratio",
"value" : 72,
"unit" : "Sales",
"color" : "#1F58D4",
},
"height" : 203,
"legend" : [
{
"name" : "Conversion Ratio",
"color" : "#1F58D4"
},
{
"name" : "Total requirements",
"color" : "#E6E8EC"
},
],
"actions" : [
{
"text" : "Action 1",
"link" : "javascript:void()"
},
{
"text" : "Action 2",
"link" : "javascript:void()"
},
{
"text" : "Action 3",
"link" : "javascript:void()"
},
]
} %}