randyjensen
Forum Replies Created
-
Forum: Plugins
In reply to: [RJ Quickcharts] Change width of lines in line charts?Hey Rob,
Glad the plugin is working for you ??
Until I can add the option to increase the line width, you can hack the plugin to work for you.
Open: /shortcode/init.php
Then look for line 136. You should see:
seriesDefaults: {
renderer: r,
……Add one line so it looks like this:
seriesDefaults: {
lineWidth: 5,
renderer: r,
……You can change 5 to whatever you want to increase the boldness of the lines.
Hope that helps!
Forum: Plugins
In reply to: [RJ Quickcharts] Remove or hide data labels / categories on x axisOK, go ahead and undo that then.
In that same file, look for line 74 which should look like this:
$xAxis = “{
label: ”,Go ahead and add this line:
numberTicks: 20,
So it looks like this:
$xAxis = “{
numberTicks: 20,
label: ”,You can change “20” to anything you want. This should limit the number of ticks to something more reasonable.
Let me know if that works for you.
Forum: Plugins
In reply to: [RJ Quickcharts] Remove or hide data labels / categories on x axisHey energynerd,
The ability to disable axis labels is on my list of things to do. If you want to just modify the plugin, you can open shortcode/init.php and go to line 207.
It should say “show: true,”. Just change “true” to “false” (no tick marks).
If that doesn’t work, let me know and I’ll find another solution.
Forum: Plugins
In reply to: [RJ Quickcharts] Google Chart Dependant?I have no idea why I didn’t get a notification for this thread. Apologies for the late reply.
This plugin doesn’t use Google Charts.
Remote data isn’t on the roadmap yet, but it is something I’ve been thinking about. I’m adding it to the list right now and can hopefully get to it soon.
Forum: Reviews
In reply to: [RJ Quickcharts] YayOK. Version 0.5.7 should be showing up in the WordPress Plugin Repo soon with the ability to create screenshots of charts right from the admin chart edit screen.
Forum: Reviews
In reply to: [RJ Quickcharts] YayThanks airbornex!
I’m adding that feature to the to do list. Look for an update soon!
Forum: Plugins
In reply to: [RJ Quickcharts] Pie chart long list doesn't line break.Hi cryptoking,
The legend itself is just build with an HTML table so it can be styled with CSS. You should be able to add some custom CSS to your main stylesheet to handle the line breaks when you need.
I’ve added this to my list of feature requests and will look at trying to find a solution that will fit for everyone.
Thanks!
Forum: Plugins
In reply to: [RJ Quickcharts] RJ Quickharts – Changing values of Y axisNo. The charting library is working properly, this is just an extreme edge case. Sorry.
Forum: Plugins
In reply to: [RJ Quickcharts] RJ Quickharts – Changing values of Y axisAfter going through your data, I see where this is happening.
There is such a range of data, on the high end you have 16,777 and on the very low end you have 2,343. The graphing library always needs to have a lower bar for spacing which is why it’s adding the -5000.
2343 is actually right on the threshold of the algorithm for this. You can see in the first image the -5000 exists (because it increments by 5000 and 2343 is less than 2500)
https://img836.imageshack.us/img836/993/9vs2.png
But in this image, I’ve changed the value to 2500 and the -5000 axis is gone
Forum: Plugins
In reply to: [RJ Quickcharts] legends not showing??
Forum: Plugins
In reply to: [RJ Quickcharts] legends not showingOK. 0.5.5 should be showing up in the next few hours. This should fix the legends not showing when multiple charts are on a single page with certain ones hiding the legend and others not.
If you don’t see the update, try deleting the plugin and re-installing it. This will _not_ delete any of your charts.
And of course, let me know if you have any issues!
Forum: Plugins
In reply to: [RJ Quickcharts] legends not showingOK. I’ve found the issue and will have a new release with a fix soon.
Right now, if you have more than one chart on a page and some of them are showing the legend and others are hiding it, the last chart on the page will override all others.
The last 2 charts on your site have the legends hidden. For now, if you show those legends, all legends on the page will show up properly.
Update coming soon!
Forum: Plugins
In reply to: [RJ Quickcharts] legends not showingHey Justin,
I’m on the road all day today but am hoping to look in to this tonight. I’m not seeing this bug on my site but I have an idea what may be causing it. Look for an update soon!
Forum: Plugins
In reply to: [RJ Quickcharts] RJ Quickharts – Changing values of Y axisIt looks like you haven’t updated to the latest version of the plugin. Instead of updating normally, try actually deleting the plugin and re-installing it. This will _not_ delete any of your charts.
I’m also not sure why you have all that null data. Hopefully the steps above will fix it.
Once you do that, let me know if you are still having issues.
Forum: Plugins
In reply to: [RJ Quickcharts] RJ Quickharts – Changing values of Y axisI would need to see the data you entered from the spreadsheet.
You should also change the height of the chart since your values are so long.