silsha
Forum Replies Created
-
Forum: Plugins
In reply to: [TablePress Extension: Chartist] Filter and display specific columnsHi,
unfortunately, neither is possible. I can imagine that 1. would not be particularly difficult to integrate. Unfortunately, I don’t have the time at the moment. But I am always happy about pull requests on Github.
2. is beyond the scope of the plugin, I think, as the generated charts currently only show static data.
Sorry I can’t give you better news at the moment.
Hello, a simple workaround seems to be to trigger a window resize after switching to the other tab:
window.dispatchEvent(new Event('resize'));This will force the chart to rerender.
Forum: Plugins
In reply to: [TablePress Extension: Chartist] empty tableI see two issues with your data:
1. You use comma as decimal separator. Please write the numbers like this:
1.48.2. It looks like you are trying to represent three dimensions: Country, fuel and the value. If I’m not mistaken, that doesn’t work.
You should see an output when you solve point 1. However, the country will not be displayed.
Forum: Plugins
In reply to: [TablePress Extension: Chartist] empty tableSorry, I did not see the screenshot.
Can you send me an export of your TablePress data and the shortcode you used?
Forum: Plugins
In reply to: [TablePress Extension: Chartist] empty tableThis plugin doesn’t display tables, so I guess you used the shortcode from TablePress.
Please make sure you have read the plugin description to understand which shortcode parameters are available: https://ww.wp.xz.cn/plugins/charts-for-tablepress-chartist/#description
@pit24 The changes made by onefiniteplanet were added to this plugin. The current version should work as intended.
See also here: https://ww.wp.xz.cn/support/topic/patched-version-of-chartist/
Forum: Plugins
In reply to: [TablePress Extension: Chartist] patched version of chartistI just released the update. Worked fine when testing it locally.
Let me know if you still notice any errors.
Forum: Plugins
In reply to: [TablePress Extension: Chartist] patched version of chartistHi there,
for some reason I never got a notification about new topics in this support forum and since I don’t use this plugin myself anymore, I didn’t notice it broke years ago.
I’ll apply the mentioned patches and release an updated version.
Also, pull requests are always welcome on GitHub: https://github.com/silsha/tablepress_chartist
Forum: Plugins
In reply to: [TablePress Extension: Chartist] Fatal error: HTTP ERROR 500Hi,
sorry for my late reply.
If you have other plugins installed, can you make a separate installation on the same server, only installing TablePress and the Chartist Extension?
There might be a problem in combination with one of your other plugins.
Forum: Plugins
In reply to: [TablePress Extension: Chartist] Tooltip in chartistHi,
since tooltips are added by a separate chartist.js plugin, they are currently not supported by this TablePress extension.
I will consider the integration for a later version but can’t give you a definite date.
Forum: Plugins
In reply to: [TablePress Extension: Chartist] Fatal error: HTTP ERROR 500Hi,
that’s strange, the function
tablepress_get_tableis provided by TablePress itself and not by the plugin. Can you confirm using the latest version of TablePress?Also, could you try installing the previous version of the TablePress Chartist plugin? You can download it over here: https://github.com/silsha/tablepress_chartist/archive/0.8.zip
- This reply was modified 8 years, 8 months ago by silsha.
Forum: Plugins
In reply to: [TablePress Extension: Chartist] Fantastic Plugin – Bug with WoocommerceHi,
thank you for your feedback. I’ll look into it. 🙂
Forum: Plugins
In reply to: [TablePress Extension: Chartist] Using data footer line for PiepercentHi Eric,
So I understand this correctly: You want to you the first row of your table as label and the last row as value for your chart?
This is currently not possible, but I understand why that would be useful. I’ll try to implement this soon. I’ve opened an issue at github: https://github.com/silsha/tablepress_chartist/issues/10
Forum: Plugins
In reply to: [TablePress Extension: Chartist] Chart div appears, with nothing insideHi benspr,
can you send me a link to the page? I would like to take a look at this.
Also, would you try using the previous version 0.8? Just uninstall the current TablePress Chartist version and upload this one: https://github.com/silsha/tablepress_chartist/archive/0.8.zip
Forum: Plugins
In reply to: [TablePress Extension: Chartist] Disable diplay for 0% valuesHi Eric,
you are right, there are only 15 colours defined by chartist.js
You can set additional colours by adding this snippet in your custom CSS:.ct-series-p .ct-slice-pie { fill: #a748ca; }The
pinct-series-pis the index for the 16th colour – just follow the alphabet to add more. (next one would bect-series-q,ct-series-r, …As for the 0% values: there is currently no way to hide them. I just opened an issue and might look into it soon.
- This reply was modified 8 years, 10 months ago by silsha.