Getting the flot-rails gem to play nicely with IE8

How to go about getting this Gem working nicely with IE8

Flot is a really useful graphing tool built on top of jQuery, and someone has very kindly created a rails gem called flot-rails which allows you to easily include the relevant JavaScript files in your rails project.

An issue I found recently that was to allow flot to play nicely with IE8 you should have excanvas.js present, this gives canvas support to older versions of Internet Explorer (which is something that flot relies on).

What the README file of the rails-flot gem doesn’t explain well is that packaged up in the gem are all the JavaScript files you could need for flot, include excanvas.js

The fix then, if you are using rails-flot along with a need to support Internet Explorer 8 is to include the following in your manifest file;

//= require excanvas.js

Before you require anything relating to flot.


Recent posts View all

Web Dev

Updating payment method email addresses in Stripe

You can't update the email address associated with a payment method in Stripe via their dashboard, you need to use the Stripe CLI

Ruby

Irreversible Rails Migrations

What are irreversible migrations and how might we use them to our advantage?