46 comments found.
Do you support divi builder, as I am using it and I cannot find the charts anywhere!
Sorry is the only way to do it. It creates a short code and adds it to the array. You can use the short code with the classic editor.
Hello,
I have a couple of pre-sale questions:
1. What data sources are possible to use? 2. Does the plugin support automatic updates from data source? For example if I use an URL.
Thaks a lot.
Currently you can only enter data manually. We are planning to add json from a url in the next version.
Hi thanks for your reply.
no its not possible this version 
who i cant put value onbar o line ? for example this: https://i.stack.imgur.com/KPcVt.png
hi you can show bar label like this
option = {
xAxis: {
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
type: 'value',
},
series: [{
data: [120, 200, 150, 80, 70, 110, 130],
type: 'bar',
showBackground: true,
label: {
show: true,
position: 'insideBottom',
fontSize:24
},
backgroundStyle: {
color: 'rgba(220, 220, 220, 0.8)'
}
}]
};
label: {
show: true,
position: 'insideBottom',
fontSize:24
},
Hi, does this work with wpbakery? thanks
Yes. You can use it as a shortcode.
Hello, I installed your plugin but I get a blank page, I can see where to add or edit charts ?!
hi, please see. https://www.youtube.com/watch?v=O5wSMf9ETHw&feature=youtu.be
pre sales question : can the data values be changed dynamically?? eg, by uploading an excel with values, or reading the values from the db
I’m sorry. not supported.
hi i am interestied in your plugin, however i want to add kuwait map divided by governates. i also want to see the backend and how easy to custmize the plugin before i buy. great plugin thank you.
hi, can you send your email addres to us.
i do not have your email address
Hi. I’m interested in your plugin, I see that it has maps and images, my question is: can I use other maps, for example Mexico, other images to fill, or are they absolute, that is, can not be changed?
maps and images can be changed. demo page.
Never mind, I figured how to do this.
But now I have another issue. I’m trying to insert a shortcode for each chart into my home page, but it doesn’t show up at all. it works fine on the regular page: https://tovp.org/donation-fundmeter-test/ but not inside the page builder, there’s nothing to be displayed. Is it possible to make it display inside page builder? I tried putting shortcode inside text block, custom-html block, widget-text block and widget-html block and still nothing. I alos tried to put contact form 7 shortcode into page builder and it works fine, just your charts will not display.
Can you please help me troubleshoot this issue?
Thank you.
Hi, you can use json editor for this in page builder. like this https://github.com/josdejong/jsoneditor
So it’s not possible to use it inside page builder without json editor? How do I add json editor to my page builder then?
no, its not possible
json editor is jquery plugin, you can download and import like chartli script. see editor usage page https://github.com/josdejong/jsoneditor/blob/master/docs/usage.md
what a bummer. what about plain html/java script? or iframe?
And it looks like at lease for gauges when you specify and size of radius under series: i.e. 180 it will not resize itself to smaller size. So how do you make gauges to auto-resize? Be responsive?
we’ll planed add editor ın chartli plugin next version, but it will take some time
function chartResize() {
var allCharts = $('.chartli-charts');//add this class all chart div
for (var i = 0; i < allCharts.length; i++) {
var $item = $(allCharts[i]);
echarts
.getInstanceById($item.attr('_echarts_instance_'))
.resize();
}
}
$(document).ready(function () {
setTimeout(chartResize, 100)
});
$(window).on("load", function () {
setTimeout(chartResize, 100)
});
window.onresize = function () {
setTimeout(chartResize, 100)
};
where do I put this code?
if you are using wp version, not necessary add this code
yes, I use WP version and my gauges are not responsive.
we’ll control this problem..
ok, will you let me know when and how? thank you
is there a way to control the length of the axisTick, but not the smaller ones which I found, but bigger ones that show for each number on the scale?
Any updates on the responsive feature for gauge charts? Thank you.
Thank you, I figured out the colors. The main question remains how do I change gauge numbers from 0 to 100, I want to use different numbers, and replace % with say $.
thank you too 
To change split numbers where exactly is this located? Under Series? I can’t find it? Is this goes into “axisTick”?
option = {
series: [{
name: 'example',
type: 'gauge',
radius: '90%',
min:0,
max:1000,
splitNumber: 50,
startAngle: 220,
endAngle: -40,
axisLine: {
show: true,
lineStyle: {
width: 1,
color: [[1,'rgba(0,0,0,0)']]
}
},
axisLabel: {
show: true,
color:'#fff',
distance:30
},
axisTick: {
show: true,
lineStyle: {
color: '#fff',
width: 1
},
length: -8
},
splitLine: {
show: true,
length: -20,
lineStyle: {
color: '#fff'
}
},
detail: {
show: false
},
pointer: {
show: false
}
},
]
};
Thank you, it works
Our figures are very high, in millions, so how do I properly calibrate the gauge scale, if I put max number as 1000000 it’s just too much to display. For example, we can use scale in 100,000 which in short is 100K, is there a way to add letters to the numbers on the gauge? so instead of showing 10, 20, 30, 50…. it will show 10K, 20K, etc?
Hi,
Question. When I use gauge type, how do I change colors on the gauge axis? There are 3 colors: green, blue and red. Where can I change these? Also, how and where do I change the axis numbers, currently the gauge is showing from 0 to 100. I want to use this as Donations fundmeter and use collected amount instead of %.
Thank you.
axisLine: {
show: true,
lineStyle: {
width: 100,
shadowBlur: 10,
color: [
[0, '#B5495B'],
[0.333333, '#D0104C'],
[0.666666, '#f09426'],
[1, '#20604F']
]
}
},
you add in series this code
Full code is
option = {
series: [{
type: "gauge",
startAngle: 190,
endAngle: -10,
min: 0,
max: 1000,
radius: "80%",
center: ["50%", "65%"],
axisLine: {
show: true,
lineStyle: {
width: 100,
shadowBlur: 10,
color: [
[0, '#B5495B'],
[0.333333, '#D0104C'],
[0.666666, '#f09426'],
[1, '#20604F']
]
}
},
axisTick: {
show: false
},
axisLabel: {
show: false
},
splitLine: {
show: false
},
pointer: {
width: "3%",
length: '90%',
color: "black"
},
itemStyle: {
normal: {
color: "rgba(255, 255, 255, 0.8)",
shadowBlur: 20
}
},
title: {
show: false
},
detail: {
show: true
},
data: [{
value:945, name:'945'
}]
}]
}
for change ”%” character use this formatter code
series: [
{
name: 'example',
type: 'gauge',
detail: {formatter:'{value}%'},
data: [{value: 50, name: 'example'}]
}
]
min:0, max:1000, splitNumber: 50,
Hello there,
unfortunately you need to use the dot in the values because it separates the values on the comma chart.
In wich mode I can change comma in point? can you show to me a example?
At the moment in automatic show me the comma like these 123,456,678 I have to change the comma in dot
Hello there,
unfortunately you need to use the dot in the values because it separates the values on the comma chart.
ok but when I try to use the dots inside pie chart doesn’t work
can you send us your script code?
This is my script code, I need to show dots or comma
{ “backgroundColor”: ”#ffffff”, “title”: { “text”: “Ripartizione per Asse”, “subtext”: ””, “x”: “center” }, “tooltip”: { “trigger”: “item”, “formatter”: “{b} : {c}” }, “legend”: { “selectedMode”: false, “orient”: “vertical”, “y”: “bottom”, “x”: “left”, “data”: [ “Asse I”, “Asse II”, “Asse III”, ””, ”” ] }, “toolbox”: { “show”: false, “feature”: { “mark”: { “show”: true }, “dataView”: { “show”: true, “readOnly”: false }, “magicType”: { “show”: true, “type”: [ “pie”, “funnel” ], “option”: { “funnel”: { “x”: “25%”, “width”: “50%”, “funnelAlign”: “left”, “max”: 1548 } } }, “restore”: { “show”: true }, “saveAsImage”: { “show”: true } } }, “color”: [ ”#6d9eeb”, ”#f6b26b”, ”#cccccc” ], “calculable”: true, “series”: [ { “name”: “Ripartizione per Asse”, “type”: “pie”, “radius”: “55%”, “center”: [ “50%”, “50%” ], “data”: [ { “value”: 360227224, “name”: “Asse I” }, { “value”: 114014376, “name”: “Asse II” }, { “value”: 16691734, “name”: “Asse III” } ], “label”: { “normal”: { “formatter”: “{c}” } } } ] }
you can use this code for value dots }
{
"backgroundColor": "#ffffff",
"title": {
"text": "Ripartizione per Asse",
"subtext": "",
"x": "center"
},
"tooltip": {
"trigger": "item",
"formatter": "{b} : {c}"
},
"legend": {
"selectedMode": false,
"orient": "vertical",
"y": "bottom",
"x": "left",
"data": [
"Asse I",
"Asse II",
"Asse III",
"",
""
]
},
"color": [
"#6d9eeb",
"#f6b26b",
"#cccccc"
],
"calculable": false,
"series": [
{
"name": "Ripartizione per Asse",
"type": "pie",
"radius": "55%",
"center": [
"50%",
"50%"
],
"data": [
{
"value": "36022.7224",
"name": "Asse I"
},
{
"value": "11401.4376",
"name": "Asse II"
},
{
"value": "16691.734",
"name": "Asse III"
}
],
"label": {
"normal": {
"formatter": "{c}"
}
}
}
]
I need a value like this 360.227.224 or this 360,227,224
unfortunately it is not possible to give such a value 
But how is it possible that on the bar charts is showed the values with a comma and on the pie charts is not possible?
In this bar chart is showed on the level of Y and inside the label all the numbers with commas. I need also inside the pie chart the same type of numbers with commas
{ “backgroundColor”: ”#ffffff”, “title”: { “text”: “Title”, “x”: “center”, “subtext”: ”” }, “tooltip”: { “trigger”: “axis” }, “legend”: { “padding”: 20, “x”: “center”, “y”: “bottom”, “data”: [ “Quota II”, “Quota III” ], “selectedMode”: false }, “toolbox”: { “show”: false, “feature”: { “mark”: { “show”: false }, “dataView”: { “show”: false, “readOnly”: false }, “magicType”: { “show”: true, “type”: [ “line”, “bar” ] }, “restore”: { “show”: true, “title”: “Refresh” }, “saveAsImage”: { “show”: true, “title”: “Save As Image” } } }, “calculable”: true, “xAxis”: [ { “type”: “category”, “data”: [ “Asse I ”, “Asse II”, “Asse III” ] } ], “yAxis”: [ { “type”: “value” } ], “grid”: { “show”: true, “containLabel”: true, “left”: “10”, “right”: “40”, “top”: “80”, “bottom”: “60” }, “color”: [ ”#3d85c6”, ”#f6b26b” ], “series”: [ { “name”: “Quota II”, “type”: “bar”, “data”: [ 270170418, 85510782, 12518800 ] }, { “name”: “Quota III”, “type”: “bar”, “data”: [ 90056806, 28503594, 4172934 ] } ] }
is not possible on pie chart..
I just installed this plugin and there is nothing in it. There is only Chartli All Chart on a blank page. Is this plugin even working?
Please send us the website demo address. help@yellowred.info
I can’t get this to install at all. Get’s to 100% where I assume it wants to decompress the zip file and I get a white WordPress failure screen asking me, are you sure you want to do this? Please try again.
Please advise.
wordpress verison ?
file upload limit ?
WP Version: 4.9.4
Max Upload Size: 16 MB
Also, can you replace or append names on graphs to use a png, jpg or svg graphic that is a company brand for example?
If not, please consider implementing support for this ASAP.
Can you send us screenshot for about this?
How? I haven’t been able to install the plugin to check.
Wordpress Answer: You need to increase your upload limit. If you can not do this you need to upload via ftp.
Take a graph, each field has a name associated with it, BMW, Audi for example, instead of saying that, why not have the logo for the brand instead? This is what I’m asking if the plugin supports, and if it doesn’t, please consider adding it ASAP.
I should also point out, I tried this on two separate sites, on completely different servers, & it simply doesn’t work.
https://1drv.ms/u/s!Ar45i15ykF_-gfFDEKf3_SRhAa5hfg
Can you replace or append names on graphs to use a png, jpg or svg graphic that is a company brand for example? If not, please consider implementing support for this ASAP. See attached as an example mocked up in PS.
hi, can you send us to your email address.
Hello, Pre sale question, Can I read the chart data from google spreadsheet ?
hi, sorry. not supported.
Hello! Is there a Circle Chord Diagram? Graph Circular?
Sory. Not supported.
Hi,
1. The HTML version Chartli supports json, does this Wordpress version support it? 2. Does this plugin support poll data source (json for example) and auto update chart?
Thanks. Paul
Hi, 1- Wp version not supported json data yet ☹ we have working on this 2- If you know advanced jquery, yes its possible.
Thanks Best Regards
can the graphs be configured to animate when scrolled onto?
Hi, please explain in detail.