As previously announced via banners and our newsletters, support is no longer available through this platform.
For easier navigation, you can still click on "Submit a Ticket" here, choose the appropriate category, and you'll be redirected to the correct support channel for your plugin.
You can still access your previous tickets and browse public tickets, but please note that responding to tickets is no longer possible.
Paid customers: Please log in to your store account for support.
Pre-purchase questions: Use the support widget in the bottom-right corner of our websites:
https://wpamelia.com
https://wpdatatables.com
https://wpreportbuilder.com
Hello! I was wondering how can I set my google scatter chart to have equal X axis and Y axis numeric limits. For example, set both axis limits to the highest observed value of the input data.
Hello John
Thank you for your purchase.
With plugin's built-in features, something like this is not possible, so you will need to use wpDataCharts callbacks.
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables
Thanks for the quick response! Indeed the answer could be found in the documentation. Sorry for bringing it to your attention unnecessarily. I post the code I used here for future reference:
The code should be placed just above the code calling the google chart (in my case google chart is constructed by wpdatatables plugin). So, the complete content area looks like this:
<script type="text/javascript">
jQuery(window).on('load',function(){
if( typeof wpDataChartsCallbacks == 'undefined' ){ wpDataChartsCallbacks = {}; }
wpDataChartsCallbacks[90] = function(obj){
obj.options.hAxis.maxValue = 300;
obj.options.vAxis.maxValue = 300;
}
});
</script>
[wpdatachart id=90]
Where [wpdatachart id=90] calls the chart to be placed into the specific area of the page.
Again, many thank!
That's it, John!
I'm glad you were able to find the answers you needed.
If you have any further questions or issues, please feel free to open a new ticket, and we'll gladly help.
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables