methnen
Forum Replies Created
-
Forum: Plugins
In reply to: [M Chart] Create new chartNo follow up from the OP so I’m closing this one.
Forum: Plugins
In reply to: [M Chart] Shortcode from other plugin in table cellMarking as resolved.
Forum: Plugins
In reply to: [M Chart] Type of chartI don’t currently support that chart type. And probably won’t add that one any time soon honestly.
There’s many, much better methods for doing word clouds honestly and some extremely simple CSS is gonna do a better job of it than Highcharts ever would.
Forum: Plugins
In reply to: [M Chart] Shortcode from other plugin in table cellAre you asking if you could use another plugin’s shortcode as a chart value?
That would be a no.
Forum: Plugins
In reply to: [M Chart] Create new chartProvided the data is formatted in a way that the plugin can understand the preview should just happen below the spreadsheet.
Happy to take a look at the data for you if you want:
jamie AT methnen.com
- This reply was modified 6 years, 4 months ago by methnen.
Forum: Plugins
In reply to: [M Chart] yAxis Currency SymbolClosing since there’s been no response from the OP.
Forum: Plugins
In reply to: [M Chart] yAxis Currency SymbolHey @kiaraaliano have you tried simply putting the dollar signs into the data?
There’s some built in prefix/suffix handling that will automatically filter out things like dollar signs and then reinsert them on the tooltip end so they don’t mess up the data but are still visible to the user.
If that’s not sufficient then you could implement this as a theme with something like this:
<?php /** * Theme Name: Dollar Sign Y Axis */ return array( 'yAxis' => array( 'labels' => array( 'format' => '${value}', ), ), );Generally speaking you just convert the Javascript style object to a PHP Array and it’ll work (with some rare exceptions).
Forum: Plugins
In reply to: [M Chart] Set a yAxis maximumYep, already done. 🙂
Forum: Plugins
In reply to: [M Chart] Set a yAxis maximumAlso I see you got that code snippet from the wiki. So the mistake is all my fault. I’ve fixed it on the wiki as well.
Forum: Plugins
In reply to: [M Chart] Set a yAxis maximumAh, well looking at the code again I see the problem.
function m_chart_chart_argsShould be:
function filter_m_chart_chart_argsThe second argument of the filter call should be the full name of the function that should be called.
So either changes he name of the function match or change the filter call to match the name of the function.
- This reply was modified 6 years, 5 months ago by methnen.
Forum: Plugins
In reply to: [M Chart] Set a yAxis maximumHey,
First question, are you using Highcharts or Chart.js?
Forum: Plugins
In reply to: [M Chart] create chart on on page tableMarking as resolved since there’s been no follow up from the original poster.
Forum: Plugins
In reply to: [M Chart] Set Vertical Axis Minimum to 0 Without HighchartsGlad it worked out for you. Just as an actual answer the answer is yes. But you’d need to do it via a filter hook:
https://github.com/methnen/m-chart/wiki/Action-and-filter-hooks#m_chart_chart_args
Forum: Plugins
In reply to: [M Chart] create chart on on page tableIf I’m understanding you correctly you are trying to make the chart take data input from a source other than a chart post?
That’s not currently supported.
I believe there are other plugins that might do what you’re looking for though.
Forum: Plugins
In reply to: [M Chart] Charts is not cross browser compatibleClosing as there has been no followup with the original poster.