Paul van Zyl
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Charts] Stacked bar chartHi
Thanks for the great feedback, unfortunately not at the moment, the script is limited to the six types listed. You may want to investigate other solutions if you have to have a stacked bar chart such as google charts or something using the D3 library.
Thanks again and warmest egards
Paul
Forum: Plugins
In reply to: [WordPress Charts] Bar Char ScaleHey there,
all datasets should be seperated by the next keyword, as the bar chart can have multiple items of data (a dataset) per “label”, if you only have one you should be seperating each with the next keyword.
ie :datasaets=”50 next 20 next 10″ or datasets=”20,10,50 next 30,30,10 next 50,40,20″
alternatively it sounds like your data would be better displayed using a PIE chart or line. Hope that helps.
Warmest Regards
Paul
Forum: Plugins
In reply to: [WordPress Charts] Appearing with scrollingIts a pleasure!
I will be adding this feature shortly, though at this point it would take some custom scripting for you to do it. Look out for my updates, and thanks for taking the time to comment.
Warmest Regards
Paul
Forum: Plugins
In reply to: [WordPress Charts] Horizontal bar chartsHi George,
Currently this is not possible with this charting plugin, though it may be in the future if enough people request it, though this will entirely depend on the charts.js author, as the plugin I’ve built is really the beginnings of an interface for the script making it accessible and soon, easy to use in WordPress.
Thanks for the kind words.
Warmest Regards
Paul
Forum: Plugins
In reply to: [WordPress Charts] Bar Char ScaleHi There
for the bar charts you must use the following
datasets=”40,32,50,35 next 20,25,45,42 next 40,43, 61,50 next 33,15,40,22″and you must also ensure you have the correct number of labels.
This is because the bar chart is able to show comparative data and therefore requires sets divided by the “next” keyword, even if you only have a single value per set.
If you’re doing it this way could you add a code snippet and link to an example if possible?
Hope this helps.
Warmest Regards
Paul
Forum: Plugins
In reply to: [WordPress Charts] Fluidity with line chartI’m going to assume this resolved your issue, please contact me directly should you require further assistance.
Warmest Regards
Paul
Forum: Plugins
In reply to: [WordPress Charts] External Data SourcesClosing this thread, contact me directly if you require further assistance 🙂
Forum: Plugins
In reply to: [WordPress Charts] Fluidity with line chartHey,
anything further on this? if you can show me your code I’lll do my best to help, alternatively I’d like to close this thread before the end of the month.
Thanks, and regards
Paul
Forum: Plugins
In reply to: [WordPress Charts] External Data SourcesHey Jann
does that satisfy your question ? can I help you in any other way at all ?
Let me know, otherwise I’ll close this topic as complete, thanks 🙂
Have a great week.
Paul
Forum: Plugins
In reply to: [WordPress Charts] Fluidity with line chartHi Mike,
I’d need to see how you’re using the shortcode as the line chart should be smooth.
Unfortunately its not possible to do the hover over or chart interaction as you describe, as wp charts creates an html5 canvas render of the data. If you’d like something interactive you probably need to look at something that outputs SVG or possibly a google chart.
While charts.js is probably one of the best looking chart libraries, it does fall short at times in my mind because of this feature.
Hope that helps. drop a copy of your shortcode so I can have a look.
Paul
Forum: Plugins
In reply to: [WordPress Charts] Doughnut charts in OperaHi there
Closing this thread, let me know if the above suggested parameters didn’t help.
Regards
Paul.
Forum: Plugins
In reply to: [WordPress Charts] External Data SourcesHi Jann
Sure, you wouldn’t be able to do this from the admin section BUT it wouldn’t be too hard to do in your template files.
The first step would just be getting your external data, such as from a google spreadsheet, or parsing a file, and depending on where its coming from clearly you could either work with the API to do so, or use php or javascript (all depending) to get and output your data in the template file the way you want.
Secondly you’d want to format the output as strings, (with the formatting you would use for the shortcode, ) and then ouput them in the shortcode, using the WP do_shortcode() ; method.
Good luck 🙂
Forum: Plugins
In reply to: [WordPress Charts] Doughnut charts in OperaHi There
I’ve not tested it in opera as I don’t have a copy and know it to have a very low market share, but that being said I’d still like this plugin to work solidly for you.
try setting the height and width properties of chart shortcode to an equal amount (the correct amount for what you’re after) as well as the canvaswidth and canvasheight properties. It may be a product of the way I’ve made the charts responsive, or there may be a silly fix for opera.
Please test the above and let me know, I’ll have a look at this in opera shortly and get back to you as well.
Thanks for the great feedback.
Regards Paul
Forum: Plugins
In reply to: [WordPress Charts] Grab data from meta keyHi Raphael
Not currently using the post editor and shortcode as most users would, but if you’re just a little comfortable getting your hands dirty you could echo out meta values / values from the database / or anything you wanted and pass it to the shortcode using the wordpress do_shortcode() method.
Forum: Plugins
In reply to: [WordPress Charts] Adding labelsHey mcrib
at the moment only line, bar and radar charts support labels, which are added via the labels=”” attribute in the short code.
In the next upgrade due shortly you will be able to add an optional label key below or along side the chart.
Hope that helps 🙂