Changeset 745302
- Timestamp:
- 07/24/2013 12:20:46 AM (13 years ago)
- Location:
- rj-quickcharts/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (3 diffs)
-
rj_charts.php (modified) (2 diffs)
-
shortcode/init.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
rj-quickcharts/trunk/README.txt
r743298 r745302 7 7 Requires at least: 3.0 8 8 Tested up to: 3.5.2 9 Stable tag: 0.5. 49 Stable tag: 0.5.5 10 10 11 11 Build Complex, Powerful HTML5 Bar Charts, Line Charts and Pie Charts in Just Minutes. No Programming Knowledge Required! … … 20 20 21 21 1. Selecting a chart type (Line Chart, Bar Chart or Pie Chart) 22 2. Choosing a few options 22 2. Choosing a few options 23 23 3. Add your data! 24 24 … … 75 75 == Changelog == 76 76 77 = 0.5.5 = 78 * Bug fix in the way the legends and tooltips are handled 79 77 80 = 0.5.4 = 78 81 * Updated readme with feature list -
rj-quickcharts/trunk/rj_charts.php
r743298 r745302 4 4 Plugin URI: http://www.randyjensen.com 5 5 Description: Easily create charts for your WordPress site. Line charts, bar charts and pie charts currently supported. 6 Version: 0.5. 46 Version: 0.5.5 7 7 Author: Randy Jensen 8 8 Author URI: http://www.randyjensen.com … … 15 15 global $table_name; 16 16 17 $rjqc_db_version = '0.5. 4';17 $rjqc_db_version = '0.5.5'; 18 18 $table_name = $wpdb->prefix . 'rj_quickcharts'; 19 19 -
rj-quickcharts/trunk/shortcode/init.php
r741285 r745302 216 216 // Handle legend hiding on the client 217 217 if($legend === false) { 218 jQuery(' .jqplot-table-legend').hide();218 jQuery('#rjqc_container_$id .jqplot-table-legend').hide(); 219 219 } else { 220 jQuery(' .jqplot-table-legend').show();220 jQuery('#rjqc_container_$id .jqplot-table-legend').show(); 221 221 } 222 222 223 223 jQuery('#rjqc_container_$id').bind('jqplotDataMouseOver', function (ev, seriesIndex, pointIndex, data) { 224 jQuery(' .jqplot-highlighter-tooltip').html('' + data[1] + '$tooltipSuffix');224 jQuery('#rjqc_container_$id .jqplot-highlighter-tooltip').html('' + data[1] + '$tooltipSuffix'); 225 225 }); 226 226 $(window).resize(function() {
Note: See TracChangeset
for help on using the changeset viewer.