Changeset 737222
- Timestamp:
- 07/07/2013 03:40:18 AM (13 years ago)
- Location:
- rj-quickcharts/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
admin/rjqc-admin-new.php (modified) (3 diffs)
-
rj_charts.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rj-quickcharts/trunk/README.txt
r737219 r737222 7 7 Requires at least: 3.0 8 8 Tested up to: 3.5.2 9 Stable tag: 0. 4.39 Stable tag: 0.5.0 10 10 11 11 Create incredible HTML5/JavaScript charts right inside WordPress with a few clicks. … … 40 40 == Changelog == 41 41 42 = 0.5.0 = 43 * Ability to set custom colors for bar charts, line charts and pie charts 44 42 45 = 0.4.3 = 43 46 * Ability to set the chart height -
rj-quickcharts/trunk/admin/rjqc-admin-new.php
r737219 r737222 26 26 $opts = json_decode($chart[0]->opts); 27 27 $chart_height = $opts->height; 28 $series_colors = $opts->seriesColors; 28 if ($opts->seriesColors) { 29 $series_colors = $opts->seriesColors; 30 } 29 31 30 32 echo '<input id="rjqc-chart-id" type="hidden" value="'.$id.'" />'; … … 72 74 </label> 73 75 <div class="cf"></div> 74 < !--<p id="change-chart-colors">Change Chart Colors?</p>76 <p id="change-chart-colors">Change Chart Colors?</p> 75 77 <div id="change-chart-colors-area"> 76 78 <label>1. <input type="text" class="chart-color" id="chart-color-1" data-color="1" value="'.$series_colors[0].'" /></label> … … 84 86 <label>9. <input type="text" class="chart-color" id="chart-color-9" data-color="9" value="'.$series_colors[8].'" /></label> 85 87 <label>10. <input type="text" class="chart-color" id="chart-color-10" data-color="10" value="'.$series_colors[9].'" /></label> 86 </div> -->88 </div> 87 89 </form> 88 90 <div class="cf"></div> -
rj-quickcharts/trunk/rj_charts.php
r737219 r737222 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. 4.36 Version: 0.5.0 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. 4.3';17 $rjqc_db_version = '0.5.0'; 18 18 $table_name = $wpdb->prefix . 'rj_quickcharts'; 19 19
Note: See TracChangeset
for help on using the changeset viewer.