67 comments found.
Is there a way to add some space in-between each word in the word cloud? They are so close together it looks strange.
hi i want to use the flight map chart but i cant find documentation on it how to configure. can you point me to doc so i can see if possible to edit data i will but the flight map. thanks
Hello, we do not have a special document for the flight map, you just need to enter the coordinates for your flight plans. To see it in detail, you can review our flight radar example on the home page.
Hi Team, Thank you for this amazing charts. Could you please guide me how to change the font style and size of the popup text and mouse over text (for the donut chart example). I am looking to change the fonts to normal Arial for all elements in this charts, including the legends. Expecting a reply at the earliest. Thanks
One more query, if I wanted to hide the mouse over texts on the pie (not the pop up texts) what need to do?
Hello any update for my query?
Chartli based e-chart. Please see https://echarts.apache.org/en/option.html#title
Thank you!
hi, do i have options to change the value in demo version. i want to play with demo if possible.
no, its not possible yet, maybe we can add chart editor on new version. good idea. thanks
Hi,
really liked this but got few questions.
- are you still supporting this script as you have not released any version. - so if i install this on my server then anyone who visits my website can use these charts ? - i cannot make any changes in chart to understand how does it look but my user would be able to change the data element - user can download the chart ? - user can create some iframe or something and use into their blog or project etc - is there any share button if user can share on any platform or with friends
Hi, - yes we are supporting still - yes when you install on your server, users can see this charts. Chartli is javascript plugin - changing data is very easy and you can also use it with json datasets or json api url - charts are not download but you can take screenshot. - chartli is on based html and javascript, you can use iframe - there is no share button but you can take screenshot and share it
Hi, i want to buy this but i wanna make sure that you support 0px padding. I’m using ApexChart at the moment, though great, i can’t really control the exact size of the pie, radial, radar chart, coz they always come with a sizeable padding all around. For instance, i want to be able to display a donut chart that would fill up an entire square div. Please advise.
grid:{left:0,right:0,top:0,bottom:0}
yes you can use 0 padding for your charts
i’m using apexcharts now, it also has ‘0’ padding option, but still have space around the chart. I wanna make sure your chart can fill entire div.
hi, sorry for late. themeforest.net not work our location. now its work 0 padding and margin like this image https://imgyukle.com/i/RJFpbI
Will i be able to format the chart like this? https://drive.google.com/open?id=183pTci5EZbmw5uULP4LQm1DwvFb-PJYl
hmm, unfortunately grid options has no set for pie/donut charts 
Now that I’ve used eCharts after having used Chartli, what is the purpose of Chartli?
hi, chartli includes customized charts and can get support for chartli graphics
can i use this on laravel?
Hello, I have a question. I want to buy your chart plugin. does it have donut chart thickness change options?
yes its possible with chart “radius” settings
Tried to contact author, got error page: jQuery21109524239304861861_1548729357326({clickthrough_id“}) I would like to know if there is a short trial period so I know if it will work for me, as well as good docs and example of a two-line line chart with x axis labels using jquery/javascript. Need to get a project rolling quickly.
Hello there; Unfortunately, we don’t have trial version. you can contact us info@yellowred.info
Can I export the data (to txt file) through the chart? and can you send the documentation first? Thanks.
hi, can u send email to us
hi, I had sent you an email (help@yellowred.info)
Support kısmından geri dönüş alamadığım için burdan yazıyorum. yardım rica ediyorum. fakat kimse maillerime geri dönüş yapmıyor. dönüş yapabilir misiniz?
Merhaba; 4 gün önce size “Merhaba, her iki durum için de ekran görüntüsü gönderir misiniz ?” yazılı bir mail göndermişiz. Rica etsek her iki durum için de ekran görüntüsü alıp gönderebilir misiniz?
dostum selam bir sorum daha olacak. jquery 2.1.4 versiyon kullanmışsın. Daha üstü versiyonlarda kullansak sorun teşkil edermi?
Merhaba, şu an için en üst versiyon olan jquery 3.3.1 versiyonu ile çalışıyor.
merhaba Dokumantasyon linki çalışmıyor. Satın alacağım fakat incelerken farkettim. yardımcı olabilir misiniz?
Merhaba; şimdi düzelttik inceleyebilirsiniz. Teşekkürler
Hızlı dönüşünüz için Teşekkür ediyorum. İyi Çalışmalar.
Hello, can you email me stacymaegoodwin@gmail.com thank you! I have some questions about developing in visual studio using your charts.
hi, our email adress is help@yellowred.info thanks
Just bought the plugin. Using the gauge – how do you change the resolution? Eg. I want to change 0 – 100 to 0 – 10 only.
series: [
{
name: 'Example',
type: 'gauge',
min:0,
max:10,
detail: {formatter:'{value}%'},
data: [{value: 50, name: 'Example'}]
}
]
Is there an option to append graphics such a company brands in place of name tags?
Please share detailed information with us. for example screnshot Thanks
I’ve bought this by accident, I thought it was a wordpress plugin, so it’s of no use to me anyway…
hello , i have a pre-sales question, i have data on mysql that i would love displayed in a graph , my current project heavily relies on php… can i use this wonderful script to generate dynamic graphs with only few lines of code?
yes, chartli is easy. it support json dynamic datas (example json file in include). if you convert sql to json, you can easyly dynamic charts and maps.
this is sample javascript code for simple line chart
option = {
legend: {
data: ['Height (km) and temperature (° X) changes in the relationship between']
},
toolbox: {
show: true,
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,
tooltip: {
trigger: 'axis',
formatter: "Temperature : <br />{b}km : {c}°C"
},
grid: {
show: true,
containLabel: true,
left: '10',
right: '20',
top: '50',
bottom: '50'
},
xAxis: [
{
type: 'value',
axisLabel: {
formatter: '{value} °C'
}
}
],
yAxis: [
{
type: 'category',
axisLine: { onZero: false },
axisLabel: {
formatter: '{value} km'
},
boundaryGap: false,
data: ['0', '10', '20', '30', '40', '50', '60', '70', '80']
}
],
series: [
{
name: 'Height (km) and temperature (° X) changes in the relationship between',
type: 'line',
smooth: true,
itemStyle: {
normal: {
lineStyle: {
shadowColor: 'rgba(0,0,0,0.4)'
}
}
},
data: [10, -50, -66.5, -56.5, -22.1, -2.5, -27.7, -55.7, -76.5]
}
]
};
this is amazing, can you provide me support on how to convert sql to json once i buy …( am fairly good at javascript).... all the data is dynamic ?
thanks
yes, if you buying this item i can send sql to json code in c# example.
thanks … i have purchased it
do you want c# json example, if you send me your mail adress i can send to. thanks
yes…i have sent you the email.
i sent example on your email have a good day
hello,
is the json format used for bar graph still applicable in the pie chart , gauged , filling since i would want to use them …
also, its only on bar graph that has this feature
”” url: ‘data/chartlibar1.json’, ””
can i add this functionality to the rest of the scripts, since my data is from php ?
$.ajax({
type: "GET",
contentType: 'application/json; charset=utf-8',
dataType: 'json',
url: 'data/chartlibar1.json',
error: function () {
alert("An error occurred.");
},
i sent example on your email have a good day
hello , can i use word cloud using php ? http://preview.codecanyon.net/item/chartli-interactive-chart/full_screen_preview/14957273
[{
name: 'Jquery',
value: 6181
}, {
name: 'React',
value: 4386
}, {
name: 'Angular',
value: 4055
}, {
name: 'Vue',
value: 2467
}, {
name: 'React Native',
value: 2244
}
]
thanks, can i use this json format also in the filling and mapping examples? thanks
Yes, you can use it in all graphic types.
will this work with wordpress?
2 MB JS is crashing my dreamweaver … documentation does not answer the question on how to utilize json from other sources like displaying data from external sources. is there a special format?
hi,
Sorry, I do not know anything about Dreamviewer 
this code is example json format
{ “jobs”: [ “Doctor”, “Teacher”, “Engineer” ], “days”: [ “Monday”, “Tuesday”, “Wednesday”, “Thursday”, “Friday”, “Saturday”, “Sunday” ], “doctor_data”: [ 570, 100, 21, 54, 260, 830, 710 ], “teacher_data”: [ 30, 182, 434, 791, 390, 30, 10 ], “engineer_data”: [ 1320, 1132, 601, 234, 120, 90, 20 ], “doctor_style”: { “areaStyle”: { “opacity”: 0.9, “color”: ”#247BA0” }, “lineStyle”: { “opacity”: 0 } }, “teacher_style”: { “areaStyle”: { “opacity”: 0.9, “color”: ”#F25F5C” }, “lineStyle”: { “opacity”: 0 } }, “engineer_style”: { “areaStyle”: { “opacity”: 0.9, “color”: ”#FFE066” }, “lineStyle”: { “opacity”: 0 } }
}