Kiran Potphode
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Charts] same custpm color for multiple ID chartsHi @pixelcreativeit ,
Its possible to add the multiple ids in PHP code snippet.
if( $chart_id == 1 && $chart_id == 2 && $meta_key == βgraphβ ){From above code line you can see multiple id’s can be provided with conjunction of
&&PHP operator.Forum: Plugins
In reply to: [Easy Charts] Automatic import of xls or csv filesHi @duplessisp ,
Currently, feature you requested is not available. I Will definitely try to add it if some other users requests it too.
Forum: Plugins
In reply to: [Easy Charts] Not working any moreHi @marcgoudy,
I might have found the fix for this. Apparently, the javascript library on which Easy charts plugin is based, does not accept a number less than 1 for
Configuration -> Marginsettings of the chart.Please update your charts settings for Margin Configuration to have values as 1 or a higher number. Restriction on margin configuration to have numbers greater than zero is already in place.
Please let me know if this fix works for you.
Forum: Plugins
In reply to: [Easy Charts] Color errorOkay, but I am not able to see any issue on the link you provided. I can see all the bars on the chart with different colors. Please, can you ensure that output you noticing is not from any cached version of the webpage?
Also if you are still noticing the same error, that might be a plugin or theme conflict. Please attempt to disable all plugins, and use one of the default (Twenty*) themes. If the problem goes away, enable them one by one to identify the source of your troubles.
Please let me know the results so that I can help you further.
Forum: Plugins
In reply to: [Easy Charts] Pie chart PROBLEMHi @soydiego,
Please try placing your chart data this way https://imgur.com/a/7qQYoag.
Hope this will help you the issue.Regards
Forum: Plugins
In reply to: [Easy Charts] Localized numerical formatting (. for ,)Hi @poetaster,
This plugin is based on an open source library known as d3js.
The functionality provided by the plugin is a subset of possible usage of the library.The best place to submit such patches would be https://github.com/d3/d3.
Thanks for your interest in helping out with your efforts.
Regards
Forum: Plugins
In reply to: [Easy Charts] Not working any moreHi @marcgoudy
This may be a plugin or theme conflict. Please attempt to disable all plugins, and use one of the default (Twenty*) themes. If the problem goes away, enable them one by one to identify the source of your troubles.
Please let me know the results so that I can help you further.
Regards,
Forum: Plugins
In reply to: [Easy Charts] Color errorHi @csedu,
Please, can you explain your issue a little more?
What I understood is that you are seeing colors after you hover over the diagram as a default color. Let me know if I got it wrong.
Or if I am correct I can see it working fine with reference to the link provided by you.Regards
Forum: Plugins
In reply to: [Easy Charts] How can I add percentages to pie charts?Hi @bluec1983,
You can add
%sign usingSuffixsettings underLabelconfiguration.
Let me know if this helps you achieving the desired output.Forum: Plugins
In reply to: [Easy Charts] Colours barsHi,
You can achieve this by using following code example.
function easy_charts_get_chart_configurations_callback( $ec_chart_option, $chart_id, $meta_key ){ if( $meta_key == 'graph' ){ $ec_chart_option['custompalette'] = array( '#000000', 'rgba(0,0,0,0.6)', '#dedede', '#0a0a0a', ); } return $ec_chart_option; } add_filter( 'easy_charts_get_chart_configurations', 'easy_charts_get_chart_configurations_callback', 10, 3 );You can put these code snippets in functions.php file of the active theme.
Hope this is will do what you need. Feel free to ask if you need any help with this.
Regards
Forum: Plugins
In reply to: [Easy Charts] A copy function would be welcomeHi @gjwmvg,
Thanks for the kind words.
The feature you requested is really considerable to be implemented. I will definitely think of adding it in upcoming releases. Till then stay updated.Thank you. π
Forum: Plugins
In reply to: [Easy Charts] Legend overlappingHi,
First of all thanks for being with us.
So many users are facing this issue. I am trying to figure out the way to tackle this. I will update once I found a solution.Forum: Plugins
In reply to: [Easy Charts] Any news about custom colors for every chart?Hi @96320-1,
There is no need to choose any options from the dropdown for palette if you are achieving this by placing
phpcode.You have to just follow the example from above reply.
If you need any further help for that, I am happy to help.
Forum: Plugins
In reply to: [Easy Charts] Legend not showing properlyYou might achieve this by placing data inversely in the data table.
Means you have to arrange data such wayLegendsare placed in a position ofColumnsand vice Versa.Forum: Plugins
In reply to: [Easy Charts] ColoursHi @amkwa,
Have a look at this plugin. This might be helpful.
https://ww.wp.xz.cn/plugins/my-custom-functions/Just replace chart ID and colour code in above code snippets.