Responsive, Real-Time Graphs in WordPress: Plugins and Plotting

Share this article

In this part of our series on creating a responsive, real-time graphs within a WordPress site, we’re going to finally get to the good stuff! The last three parts were for getting the newer designers up to speed. If you’re just arriving, skipped ahead too quickly, or got flagrantly confused, go back to the earlier parts and review a bit. Some of the code is fairly specific to this project, such as the Unix Timestamps needed to make our graph library work. I’ve been building a simple pushups tracker form and database table for using with our Flot graphs. Of course, you can use just about any data source to populate the data in your pages. But, for the sake of teaching a newbie how to start working with forms and phpMyAdmin, I wanted to walk through the entire process from scratch. Once you have this system in place within your WordPress site, you can literally create any kind of graphed data. The Flot graph library is extensive and very easy to implement. As I’ll be able to demonstrate, you can rinse and repeat with our pushups tracker and create a powerful system for displaying this data — all in real-time in a responsive website.

Step 1: Get the Flot Library

I’m using Flot for my graphs for lots of reasons, but mostly because it’s easy to implement and I was able to get it to work on every device imaginable. It uses the canvas feature in HTML5 to draw data and is capable of some crazy, amazing stuff. You can use whatever you want. But, for this tutorial we will be using Flot. Specifically, we’re using my plugin (Flot for WordPress) to properly register and run the Flot library in WordPress. I highly recommend using the plugin, but you can implement Flot without it. Flot for WordPress Plugin

Step 2: Make the Pushups Results Post

In WordPress, go to “Post”s > “Add New” and create a post with the title “Pushups Results.” In the body, put the following shortcode:
[pushups_results_sc]
Publish the post and you’re done. Right now, the post content will display the exact text “[pushups_results_sc]” because we haven’t actually created the function for the shortcode yet.

Step 3: Create Our Graph

In part 2 of this series, we created a new table in our WordPress database called pushups. We use it to store the pushups information from our forms. If you’re really comfortable with phpMyAdmin, go to the SQL tab and run this query to create the table we’ll be using: [sourcecode language=”sql”] CREATE TABLE `{Your Database}`.`pushups` ( `pushups_id` INT( 10 ) NOT NULL AUTO_INCREMENT , `pushups_count` INT( 3 ) NOT NULL , `pushups_date` VARCHAR( 15 ) NOT NULL , `pushups_wpuser` VARCHAR( 100 ) NOT NULL , `active` INT( 2 ) NOT NULL DEFAULT ‘1’, INDEX ( `pushups_id` ) ) ENGINE = MYISAM [/sourcecode] Everything up to this point has been about getting the infrastructure in place so that you can start pulling data and displaying it in awesome ways. From here on out, it’s all about the graphs! Create a new PHP file and call it pushups_results.php. You’re going to upload this to your wp-content/plugins/flot-for-wp/flot folder after you’ve pasted the following code: [sourcecode language=”php”] <?php /* Description: This code is meant to be called by a WordPress shortcode It makes a call to the database and displays the data in a Flot chart. Author: @jphornor and @tarahornor License: GPL3 */ // Here’s our function! function pushups_results(){ /* Get the db connection. If you didn’t create a connect_to_db.php file, just add your own database connection info here */ include (“connect_to_db.php”); connect_to_db(); /* This gets us the current logged in user and assigns the username to the variable wpuser, which is used in the main query */ get_currentuserinfo(); $current_user = wp_get_current_user(); $wpuser = $current_user->user_login; // The big test! If a user isn’t logged in, they get NOTHING! if(!is_user_logged_in()) { echo ‘<a href=”‘. wp_login_url() . ‘”>Login</a> to see pushup results! <p><a href=”‘ . home_url() . ‘/wp-register.php”>Register</a> if you have not already.</p>’; } else { // The query $sql = mysql_query(“select * from pushups where `pushups`.`pushups_wpuser` = ‘$wpuser’ and `pushups`.`active`= 1 ORDER BY `pushups`.`pushups_date` ASC “); /* Min and Max queries. It’s generally not necessary to have to produce our own Min and Max figures for Flot, our process below creates a data set that ends with a comma, which Flot interprets as a zero. */ $min = mysql_query(“select pushups_count FROM pushups ORDER BY pushups_count ASC limit 1”); $max = mysql_query(“select pushups_count FROM pushups ORDER BY pushups_count DESC limit 1″); // We need to calculate the min point on the graph while ($row = mysql_fetch_array($min)) { $min_count = $row[‘pushups_count’]; } $min_count = $min_count * .9; // This gives us some breathing room on the chart // Let’s calculate the max point on the graph while ($row = mysql_fetch_array($max)) { $max_count = $row[‘pushups_count’]; } $max_count = $max_count * 1.1; // This also gives us some breathing room on the chart /* Now we generate our JavaScript and HTML onto the page. This isn’t my favorite way to do it, but it gets the job done. */ echo ‘ <div id=”flot-container”>’; //Customize the width and height for your WP install in the layout.css file echo ‘ <h1>Pushup Results for ‘ . $wpuser . ‘</h1>’; echo ‘ <script language=”javascript” type=”text/javascript” src=”‘ . plugins_url( $path ) . ‘/flot-for-wp/flot/jquery.js”></script> <script language=”javascript” type=”text/javascript” src=”‘ . plugins_url( $path ) . ‘/flot-for-wp/flot/jquery.flot.js”></script> <script language=”javascript” type=”text/javascript” src=”‘ . plugins_url( $path ) . ‘/flot-for-wp/flot/jquery.flot.resize.js”></script> <script language=”javascript” type=”text/javascript” src=”‘ . plugins_url( $path ) . ‘/flot-for-wp/flot/excanvas.min.js”></script> <link href=”‘ . plugins_url( $path ) . ‘/flot-for-wp/flot/layout.css” rel=”stylesheet” type=”text/css”> <div id=”placeholder” style=”width:95%; height:85%; max-width:100%; margin:auto;”></div> ‘; echo ‘ <script language=”javascript” type=”text/javascript” id=”source”> jQuery(document).ready(function($){ var d1 = [ { label: “Pushups Tracker for ‘ . $wpuser . ‘”, data: [‘; while ($row = mysql_fetch_array($sql)) { echo ‘[‘ .$row[‘pushups_date’] . ‘,’ .$row[‘pushups_count’] . ‘],’; } echo ‘ ]}]; var placeholder = $(“#placeholder”); var plot = $.plot(placeholder, d1, { xaxis: { mode: “time” }, points: { show: true, symbol: “circle”}, lines: { show: true}, legend: { show: false }, yaxis: { min: ‘ .$min_count . ‘, max: ‘ .$max_count . ‘ } } ); } ); </script></div>’; } } // The shortcode in the Pushups Result post add_shortcode( ‘pushups_results_sc’, ‘pushups_results’ ); mysql_close(); ?> [/sourcecode] I know that’s a ton of information, and I did my best to add comments. Once again, this file called pushups_results.php goes in your wp-content/plugins/flot-for-wp/flot folder. I’m sorry for how compressed the code looks here, but if you download my resource files, you can see the contents in a much more organized format.

Recap

While this is a lot of code, take the time to review the comments. There’s a lot going on and if you don’t track with how Flot interprets data, you’re going to struggle using your own data. In this piece, we tackled some pretty dense processes. I tried to make it easy on you by letting you copy and paste, but don’t get lazy! You cannot just add this plugin and get magically beautiful graphs. So take some time to review this code. As a quick recap, in this part of the series we covered:
  • Grab the Flot plugin (for folks just jumping into the series)
  • Create a post to display results
  • Add the Flot code to the page that pulls our data and displays it properly.
Believe it or not, you’re actually mostly done! If you refresh your pushups results page, you should see a graph! In the next part of this series, I will cover some very detailed discussions of how to work with PHP and MySQL with regards to Flot. In the last part, I discuss how to style your graphs. So, if you’re a developer and got your graphs working right away, you may want to skip to later parts of this series.

Frequently Asked Questions about Responsive Real-Time Graphs in WordPress Plugins and Plotting

How do I choose the best WordPress plugin for creating responsive real-time graphs?

Choosing the best WordPress plugin for creating responsive real-time graphs depends on your specific needs and the features you require. Some factors to consider include the types of graphs and charts the plugin supports, its ease of use, customization options, and whether it supports real-time data updates. You should also consider the plugin’s reviews and ratings, as well as its compatibility with your version of WordPress.

Can I customize the appearance of my graphs and charts with these plugins?

Yes, most WordPress plugins for creating graphs and charts offer a range of customization options. You can typically change the colors, fonts, and sizes of your graphs. Some plugins also allow you to add labels, legends, and tooltips to your graphs for better data representation.

How do I update my graphs with real-time data?

Updating your graphs with real-time data can be achieved through various methods depending on the plugin you are using. Some plugins offer built-in real-time data update features, while others may require you to manually update the data or use additional tools or services. Always refer to the plugin’s documentation or support for specific instructions.

Are there any free WordPress plugins for creating responsive real-time graphs?

Yes, there are several free WordPress plugins available for creating responsive real-time graphs. However, keep in mind that free plugins may have limitations in terms of features and support. If you require advanced features or dedicated support, you may want to consider premium plugins.

How do I add a graph to my WordPress post or page?

Adding a graph to your WordPress post or page is usually straightforward. Most plugins provide a shortcode or a block that you can insert into your post or page. You then configure the graph settings and data within the plugin’s interface.

Can I use these plugins to create graphs from my WordPress post or page data?

Some WordPress plugins allow you to create graphs from your WordPress post or page data. This can be useful for visualizing your site’s analytics, such as page views or visitor demographics. Always check the plugin’s features and documentation to see if this functionality is supported.

Do these plugins support interactive graphs?

Many WordPress plugins for creating graphs support interactivity. This means that users can hover over data points to see more information, zoom in and out, or even click on data points to navigate to other pages. However, the level of interactivity can vary between plugins, so it’s important to check this feature when choosing a plugin.

Can I export or print my graphs with these plugins?

Some WordPress plugins for creating graphs allow you to export or print your graphs. This can be useful if you need to include your graphs in reports or presentations. The export formats can vary, but commonly include PNG, JPEG, PDF, and SVG.

Are these plugins compatible with page builders like Elementor or Gutenberg?

Many WordPress plugins for creating graphs are compatible with popular page builders like Elementor and Gutenberg. This allows you to easily add and customize graphs within your page builder interface. However, compatibility can vary between plugins, so it’s important to check this before choosing a plugin.

Do I need any coding skills to use these plugins?

Most WordPress plugins for creating graphs are designed to be user-friendly and do not require any coding skills. They typically provide a visual interface where you can input your data and customize your graphs. However, some plugins may offer additional features or customization options that require basic HTML or CSS knowledge.

Justyn HornorJustyn Hornor
View Author

When he's not being a complete goofball, “they” drag Justyn into the office where he pretends to be a Senior Editor and Content Engineer at Creative Content Experts — a content marketing firm out of NW Arkansas. He has 10+ years’ experience in technical writing and geek-related fields. He loves WordPress, coffee, and peanut butter a little too much.

flotgraphsWordPress
Share this article
Read Next
Get the freshest news and resources for developers, designers and digital creators in your inbox each week