Changeset 122789
- Timestamp:
- 06/04/2009 12:43:12 AM (17 years ago)
- Location:
- google-chart-generator
- Files:
-
- 4 edited
-
tags/1.0.3/google-chart-generator.php (modified) (10 diffs)
-
tags/1.0.3/readme.txt (modified) (4 diffs)
-
trunk/google-chart-generator.php (modified) (9 diffs)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
google-chart-generator/tags/1.0.3/google-chart-generator.php
r122755 r122789 37 37 add_action('admin_menu', 'gcg_menu'); 38 38 add_action('admin_head', 'gcg_head'); 39 add_action('wp_head', 'gcg_head'); 39 40 40 41 function gcg_menu() { … … 74 75 chart_height = document.forms[0].gcg_height.value; 75 76 77 // Chart Background 78 chart_bg = document.forms[0].gcg_bgcolor.value; 79 if (chart_bg != "") 80 { 81 chart_bg = "&chf=bg,s," + chart_bg; 82 } 83 76 84 // Chart Data 77 85 chartdata=document.forms[0].gcg_chartdata; … … 88 96 } 89 97 } 90 91 // Chart Background 92 chart_bg = document.forms[0].gcg_bgcolor.value; 93 if (chart_bg != "") 94 { 95 chart_bg = "&chf=bg,s," + chart_bg; 96 } 97 98 99 // Chart Data Colors 100 chartdata_colors=document.forms[0].gcg_data_color; 101 chart_colors=""; 102 for (i=0;i<chartdata_colors.length;i++) 103 { 104 if (chartdata_colors[i].value) 105 { 106 chart_colors=chart_colors + chartdata_colors[i].value; 107 if (chartdata_colors[i+1].value) 108 { 109 chart_colors=chart_colors + "|"; 110 } 111 } 112 } 98 113 99 114 // Chart Labels … … 104 119 if (chartlabels[i].value) 105 120 { 106 labels=labels + chartlabels[i].value; 107 if (chartlabels[i+1].value) 121 labels=labels + chartlabels[i].value + "|"; 122 123 } 124 else 108 125 { 109 126 labels=labels + "|"; 110 127 } 111 } 112 } 128 129 } 130 113 131 // Chart Title 114 132 chart_title_line_1 = document.forms[0].gcg_title_line1.value; … … 159 177 160 178 161 document.getElementById("chart_link").value="http://chart.apis.google.com/chart?" + charttype + "&chs=" + chart_width + "x" + chart_height + chart_bg + "&chd=t:" + data + "&ch l=" + labels + title + title_font;179 document.getElementById("chart_link").value="http://chart.apis.google.com/chart?" + charttype + "&chs=" + chart_width + "x" + chart_height + chart_bg + "&chd=t:" + data + "&chco=" + chart_colors + "&chl=" + labels + title + title_font; 162 180 document.getElementById("chart").src=document.getElementById("chart_link").value; 163 181 } … … 189 207 <div id="gcg_sidebar" class="postbox"> 190 208 <h3 class="hndle"> 191 <span>Version Notes: 1.0. 2</span>209 <span>Version Notes: 1.0.3</span> 192 210 </h3> 193 211 <div class="inside"> 194 212 <ul> 195 <li>This plugin was accidentally released before development was complete. So this is the beta version. :-) Some known issues:<br/> 213 <li>Chart Titles and colors rock! Have you <a href="http://wordpress.org/extend/plugins/google-chart-generator/">rated this plugin</a> yet?<br/> 214 <br /> 215 Ideas & Known Issues:<br /><br /> 196 216 1. Doesn't actually support 8 data sets.<br /> 197 217 2. There are so many more Google Charts. More to come.<br /> 198 3. Changing the color and adding labels is in the works.<br /><br /> 218 3. I plan to customize the input depending on what type of chart you are using. This will give much better results.<br /> 219 4. Once I get static data input pretty polished, I'll move on to link this into the WordPress database so you can see dynamic charts for things like "Today's Visitors were from these continents". Pretty dan shlick.<br /> 220 5. Add button on the write post screen. (for write/edit and posts/pages)<br /> 221 6. Save charts to a table so that you can insert "favorite charts"<br /> 222 7. IE looks really crappy. I know. I'll work on that tomorrow. <br /><br /> 223 199 224 If you like the direction this plugin is headed, please <a href="http://brockangelo.com/wordpress/plugins/google-chart-generator/">leave feedback</a> and <a href="http://wordpress.org/extend/plugins/google-chart-generator/">give me five stars</a>.</li><br /> 200 225 </ul> … … 214 239 <br /> 215 240 <br /> 216 <input type="text" id="chart_link" size=" 90" value="copy this code"><br /><br />241 <input type="text" id="chart_link" size="50" value="copy this code"><br /><br /> 217 242 <input type="button" class="button-primary" onclick="gcg_create_link()" value="Update Chart"> 218 243 <input type="button" class="button" value="select" onclick="selText()"> … … 223 248 <h3 id="chart_type_box_hndle" class="hndle">Chart Type</h3> 224 249 <div id="chart_type_box_inside" class="inside"> 225 <input type="radio" name="gcg_charttype" value="b vs">Bar Chart<br />250 <input type="radio" name="gcg_charttype" value="bhs">Bar Chart<br /> 226 251 <input type="radio" name="gcg_charttype" value="lc">Line Chart<br /> 227 252 <input type="radio" name="gcg_charttype" value="p3">Pie Chart<br /> … … 234 259 <input type="text" size="4" name="gcg_width" value="400"> Width<br /> 235 260 <input type="text" size="4" name="gcg_height" value="200"> Height<br /> 236 <input type="text" size="6" name="gcg_bgcolor" value=" "> Background Color<br />261 <input type="text" size="6" name="gcg_bgcolor" value="E7E7E7"> Background Color<br /> 237 262 </div> 238 263 </div> … … 277 302 <input type="text" size="6" name="gcg_data_color" value="FF3900"> Color 278 303 <input type="text" size="10" name="gcg_labels" value="Wednesday"> Label<br /> 279 </tr><tr> 304 </tr> 305 <tr> 280 306 <input type="text" size="4" name="gcg_chartdata" value=""> Data5 307 <input type="text" size="6" name="gcg_data_color" value=""> Color 281 308 <input type="text" size="10" name="gcg_labels" value=""> Label<br /> 282 309 </tr> 283 310 <tr> 284 311 <input type="text" size="4" name="gcg_chartdata" value=""> Data6 312 <input type="text" size="6" name="gcg_data_color" value=""> Color 285 313 <input type="text" size="10" name="gcg_labels" value=""> Label<br /> 286 </tr><tr> 314 </tr> 315 <tr> 287 316 <input type="text" size="4" name="gcg_chartdata" value=""> Data7 317 <input type="text" size="6" name="gcg_data_color" value=""> Color 288 318 <input type="text" size="10" name="gcg_labels" value=""> Label<br /> 289 319 </tr> 290 320 <tr> 291 321 <input type="text" size="4" name="gcg_chartdata" value=""> Data8 322 <input type="text" size="6" name="gcg_data_color" value=""> Color 292 323 <input type="text" size="10" name="gcg_labels" value=""> Label<br /> 293 324 </tr> -
google-chart-generator/tags/1.0.3/readme.txt
r122314 r122789 6 6 Requires at least: 2.1.0 7 7 Tested up to: 2.7.1 8 Stable tag: 1.0. 28 Stable tag: 1.0.3 9 9 10 10 … … 29 29 No! :) 30 30 31 = Do I need to register with Google and create something like a Deveoplor API Key or something else I don't understand? = 31 = Do I need to register with Google and create something like a Deveoplor API Key or something else I 32 33 don't understand? = 32 34 33 35 No! :) … … 37 39 Yes! :) 38 40 41 = What do I do after installing it? = 42 43 Simply click the buttons and create the chart you like. Version 1.0.3 allows you to insert titles, 44 45 labels, and customize the colors to your liking. After you get the chart looking the way you want it, 46 47 select the link, copy, and paste into a widget, post, page, e-mail, etc. 48 39 49 40 50 == Screenshots == 41 51 42 52 Check out a live demo at the <a href="http://brockangelo.com/wordpress/plugins/google-chart-generator/">plugin homepage</a>. 53 54 1. The top of the options page shows you a sample graph. 55 1. Insert the data you'd like to graph... 56 1. See the results of your hard labor. :-) 43 57 44 58 … … 47 61 Planned Features: 48 62 63 1. I plan to customize the input depending on what type of chart you are using. This will give much better results. 64 1. Once I get static data input pretty polished, I'll move on to link this into the WordPress database so you can see dynamic charts for things like "Today's Visitors were from these continents". Pretty dang shlick. 49 65 1. Add button on the write post screen. (for write/edit and posts/pages) 50 66 1. Save charts to a table so that you can insert "favorite charts" 51 67 68 * Version 1.0.3: Added chart title, background color, labels, data color. IE does not look good. I promise I'll work on that. Try Firefox for best results. 52 69 * Version 1.0.2: General scrambling associated with an unplanned beta release. 53 70 * Version 1.0.1: I accidentally release this to the public before it was ready, so I decided to go ahead and release what I have now. I'm actively developing this, so please leave <a href="http://brockangelo.com/wordpress/plugins/google-chart-generator/">feedback</a>. 54 * Version 1.0: Very basic version. My goal is to get this thing off the ground as soon as possible. 71 * Version 1.0: Very basic version. My goal is to get this thing off the ground as soon as possible. -
google-chart-generator/trunk/google-chart-generator.php
r122314 r122789 4 4 Plugin URI: http://brockangelo.com/wordpress/plugins/google-chart-generator/ 5 5 Description: Allows the user to create and insert a Google Chart in posts and pages. 6 Version: 1.0. 26 Version: 1.0.3 7 7 Author: Brock Angelo 8 8 Author URI: http://brockangelo.com … … 37 37 add_action('admin_menu', 'gcg_menu'); 38 38 add_action('admin_head', 'gcg_head'); 39 add_action('wp_head', 'gcg_head'); 39 40 40 41 function gcg_menu() { … … 64 65 for (i=0;i<type.length;++ i) 65 66 { 66 if (type[i].checked) 67 { 68 charttype="cht=" + type[i].value; 69 } 70 } 67 if (type[i].checked) 68 { 69 charttype="cht=" + type[i].value; 70 } 71 } 72 71 73 // Chart Size 72 74 chart_width = document.forms[0].gcg_width.value; 73 75 chart_height = document.forms[0].gcg_height.value; 76 77 // Chart Background 78 chart_bg = document.forms[0].gcg_bgcolor.value; 79 if (chart_bg != "") 80 { 81 chart_bg = "&chf=bg,s," + chart_bg; 82 } 83 74 84 // Chart Data 75 85 chartdata=document.forms[0].gcg_chartdata; … … 86 96 } 87 97 } 88 document.getElementById("chart_link").value="http://chart.apis.google.com/chart?" + charttype + "&chs=" + chart_width + "x" + chart_height + "&chd=t:" + data; 98 99 // Chart Data Colors 100 chartdata_colors=document.forms[0].gcg_data_color; 101 chart_colors=""; 102 for (i=0;i<chartdata_colors.length;i++) 103 { 104 if (chartdata_colors[i].value) 105 { 106 chart_colors=chart_colors + chartdata_colors[i].value; 107 if (chartdata_colors[i+1].value) 108 { 109 chart_colors=chart_colors + "|"; 110 } 111 } 112 } 113 114 // Chart Labels 115 chartlabels=document.forms[0].gcg_labels; 116 labels=""; 117 for (i=0;i<chartlabels.length;i++) 118 { 119 if (chartlabels[i].value) 120 { 121 labels=labels + chartlabels[i].value + "|"; 122 123 } 124 else 125 { 126 labels=labels + "|"; 127 } 128 129 } 130 131 // Chart Title 132 chart_title_line_1 = document.forms[0].gcg_title_line1.value; 133 if (chart_title_line_1 !="") { 134 chart_title_line_1 = chart_title_line_1.replace(" ", "+"); 135 title="&chtt=" + chart_title_line_1; 136 chart_title_line_2 = document.forms[0].gcg_title_line2.value; 137 if (chart_title_line_2 !="") { 138 chart_title_line_2 = chart_title_line_2.replace(" ", "+"); 139 title=title + "|" + chart_title_line_2; 140 } 141 } 142 else { 143 chart_title_line_2 = document.forms[0].gcg_title_line2.value; 144 if (chart_title_line_2 !="") { 145 alert("Chart Title Line 1 is empty."); 146 } 147 title=""; 148 } 149 150 if (title !=""){ 151 chart_title_font_color = document.forms[0].gcg_title_font_color.value; 152 chart_title_font_size = document.forms[0].gcg_title_font_size.value; 153 if (chart_title_font_color != "") 154 { 155 if (chart_title_font_size != "") 156 { 157 title_font="&chts=" + chart_title_font_color + "," + chart_title_font_size; 158 } 159 else 160 { 161 title_font="&chts=" + chart_title_font_color; 162 } 163 } 164 else 165 { 166 title_font=""; 167 if (chart_title_font_size != "") 168 { 169 alert("Chart Tile must have a color if size is specified."); 170 } 171 } 172 } 173 174 175 176 177 178 179 document.getElementById("chart_link").value="http://chart.apis.google.com/chart?" + charttype + "&chs=" + chart_width + "x" + chart_height + chart_bg + "&chd=t:" + data + "&chco=" + chart_colors + "&chl=" + labels + title + title_font; 89 180 document.getElementById("chart").src=document.getElementById("chart_link").value; 90 181 } … … 116 207 <div id="gcg_sidebar" class="postbox"> 117 208 <h3 class="hndle"> 118 <span>Version Notes: 1.0. 2</span>209 <span>Version Notes: 1.0.3</span> 119 210 </h3> 120 211 <div class="inside"> 121 212 <ul> 122 <li>This plugin was accidentally released before development was complete. So this is the beta version. :-) Some known issues:<br/> 213 <li>Chart Titles and colors rock! Have you <a href="http://wordpress.org/extend/plugins/google-chart-generator/">rated this plugin</a> yet?<br/> 214 <br /> 215 Ideas & Known Issues:<br /><br /> 123 216 1. Doesn't actually support 8 data sets.<br /> 124 217 2. There are so many more Google Charts. More to come.<br /> 125 3. Changing the color and adding labels is in the works.<br /><br /> 218 3. I plan to customize the input depending on what type of chart you are using. This will give much better results.<br /> 219 4. Once I get static data input pretty polished, I'll move on to link this into the WordPress database so you can see dynamic charts for things like "Today's Visitors were from these continents". Pretty dan shlick.<br /> 220 5. Add button on the write post screen. (for write/edit and posts/pages)<br /> 221 6. Save charts to a table so that you can insert "favorite charts"<br /> 222 7. IE looks really crappy. I know. I'll work on that tomorrow. <br /><br /> 223 126 224 If you like the direction this plugin is headed, please <a href="http://brockangelo.com/wordpress/plugins/google-chart-generator/">leave feedback</a> and <a href="http://wordpress.org/extend/plugins/google-chart-generator/">give me five stars</a>.</li><br /> 127 225 </ul> … … 138 236 <h3 id="chart_box_hndle" class="hndle">Google Chart</h3> 139 237 <div id="chart_box_inside" class="inside"> 140 <img id="chart" src="http://chart.apis.google.com/chart?cht=p3&ch d=s:Uf9a&chs=250x100&chl=January|February|March|April" style="border: 1px solid #D8D1BE" />238 <img id="chart" src="http://chart.apis.google.com/chart?cht=p3&chs=400x200&chf=bg,s,E7E7E7&chd=t:75,17,12,19,14,35,80&chl=Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday&chtt=Average+Visitors|by+Day&chts=000000,14" style="border: 1px solid #D8D1BE" /> 141 239 <br /> 142 240 <br /> … … 150 248 <h3 id="chart_type_box_hndle" class="hndle">Chart Type</h3> 151 249 <div id="chart_type_box_inside" class="inside"> 152 <input type="radio" name="gcg_charttype" value="b vs">Bar Chart<br />250 <input type="radio" name="gcg_charttype" value="bhs">Bar Chart<br /> 153 251 <input type="radio" name="gcg_charttype" value="lc">Line Chart<br /> 154 252 <input type="radio" name="gcg_charttype" value="p3">Pie Chart<br /> … … 157 255 158 256 <div id="chart_size_box" class="postbox"> 159 <h3 id="chart_size_box_hndle" class="hndle">Chart Size</h3>257 <h3 id="chart_size_box_hndle" class="hndle">Chart Image</h3> 160 258 <div id="chart_size_box_inside" class="inside"> 161 <input type="text" size="4" name="gcg_width" value="250">Width<br /> 162 <input type="text" size="4" name="gcg_height" value="100">Height<br /></div> 259 <input type="text" size="4" name="gcg_width" value="400"> Width<br /> 260 <input type="text" size="4" name="gcg_height" value="200"> Height<br /> 261 <input type="text" size="6" name="gcg_bgcolor" value="E7E7E7"> Background Color<br /> 262 </div> 263 </div> 264 265 <div id="chart_title_box" class="postbox"> 266 <h3 id="chart_title_box_hndle" class="hndle">Chart Title</h3> 267 <div id="chart_title_box_inside" class="inside"> 268 <table cellspacing="10"> 269 <td> 270 <input type="text" size="2" name="gcg_title_font_size" value="12"> Font Size<br /> 271 <input type="text" size="6" name="gcg_title_font_color" value="000000"> Font Color<br /> 272 </td> 273 <td> 274 <input type="text" size="20" id="gcg_title_line1" value="Average Visitors"> Line 1<br /> 275 <input type="text" size="20" id="gcg_title_line2" value="by Day"> Line 2<br /> 276 </td> 277 </table> 278 </div> 163 279 </div> 164 280 … … 166 282 <h3 id="data_points_box_hndle" class="hndle">Data Points</h3> 167 283 <div id="data_points_box_inside" class="inside"> 168 <input type="text" size="4" name="gcg_chartdata" value="15">Data1<br /> 169 <input type="text" size="4" name="gcg_chartdata" value="45">Data2<br /> 170 <input type="text" size="4" name="gcg_chartdata" value="30">Data3<br /> 171 <input type="text" size="4" name="gcg_chartdata" value="85">Data4<br /> 172 <input type="text" size="4" name="gcg_chartdata" value="">Data5<br /> 173 <input type="text" size="4" name="gcg_chartdata" value="">Data6<br /> 174 <input type="text" size="4" name="gcg_chartdata" value="">Data7<br /> 175 <input type="text" size="4" name="gcg_chartdata" value="">Data8<br /></div> 176 </div> 177 284 <table cellspacing="10"> 285 <tr> 286 <input type="text" size="4" name="gcg_chartdata" value="15"> Data1 287 <input type="text" size="6" name="gcg_data_color" value="00B454"> Color 288 <input type="text" size="10" name="gcg_labels" value="Sunday"> Label<br /> 289 </tr> 290 <tr> 291 <input type="text" size="4" name="gcg_chartdata" value="65"> Data2 292 <input type="text" size="6" name="gcg_data_color" value="104BA9"> Color 293 <input type="text" size="10" name="gcg_labels" value="Monday"> Label<br /> 294 </tr> 295 <tr> 296 <input type="text" size="4" name="gcg_chartdata" value="35"> Data3 297 <input type="text" size="6" name="gcg_data_color" value="FFA200"> Color 298 <input type="text" size="10" name="gcg_labels" value="Tuesday"> Label<br /> 299 </tr> 300 <tr> 301 <input type="text" size="4" name="gcg_chartdata" value="95"> Data4 302 <input type="text" size="6" name="gcg_data_color" value="FF3900"> Color 303 <input type="text" size="10" name="gcg_labels" value="Wednesday"> Label<br /> 304 </tr> 305 <tr> 306 <input type="text" size="4" name="gcg_chartdata" value=""> Data5 307 <input type="text" size="6" name="gcg_data_color" value=""> Color 308 <input type="text" size="10" name="gcg_labels" value=""> Label<br /> 309 </tr> 310 <tr> 311 <input type="text" size="4" name="gcg_chartdata" value=""> Data6 312 <input type="text" size="6" name="gcg_data_color" value=""> Color 313 <input type="text" size="10" name="gcg_labels" value=""> Label<br /> 314 </tr> 315 <tr> 316 <input type="text" size="4" name="gcg_chartdata" value=""> Data7 317 <input type="text" size="6" name="gcg_data_color" value=""> Color 318 <input type="text" size="10" name="gcg_labels" value=""> Label<br /> 319 </tr> 320 <tr> 321 <input type="text" size="4" name="gcg_chartdata" value=""> Data8 322 <input type="text" size="6" name="gcg_data_color" value=""> Color 323 <input type="text" size="10" name="gcg_labels" value=""> Label<br /> 324 </tr> 325 326 </table> 327 </div> 328 </div> 329 178 330 179 331 </form> -
google-chart-generator/trunk/readme.txt
r122314 r122789 6 6 Requires at least: 2.1.0 7 7 Tested up to: 2.7.1 8 Stable tag: 1.0. 28 Stable tag: 1.0.3 9 9 10 10 … … 29 29 No! :) 30 30 31 = Do I need to register with Google and create something like a Deveoplor API Key or something else I don't understand? = 31 = Do I need to register with Google and create something like a Deveoplor API Key or something else I 32 33 don't understand? = 32 34 33 35 No! :) … … 37 39 Yes! :) 38 40 41 = What do I do after installing it? = 42 43 Simply click the buttons and create the chart you like. Version 1.0.3 allows you to insert titles, 44 45 labels, and customize the colors to your liking. After you get the chart looking the way you want it, 46 47 select the link, copy, and paste into a widget, post, page, e-mail, etc. 48 39 49 40 50 == Screenshots == 41 51 42 52 Check out a live demo at the <a href="http://brockangelo.com/wordpress/plugins/google-chart-generator/">plugin homepage</a>. 53 54 1. The top of the options page shows you a sample graph. 55 1. Insert the data you'd like to graph... 56 1. See the results of your hard labor. :-) 43 57 44 58 … … 47 61 Planned Features: 48 62 63 1. I plan to customize the input depending on what type of chart you are using. This will give much better results. 64 1. Once I get static data input pretty polished, I'll move on to link this into the WordPress database so you can see dynamic charts for things like "Today's Visitors were from these continents". Pretty dang shlick. 49 65 1. Add button on the write post screen. (for write/edit and posts/pages) 50 66 1. Save charts to a table so that you can insert "favorite charts" 51 67 68 * Version 1.0.3: Added chart title, background color, labels, data color. IE does not look good. I promise I'll work on that. Try Firefox for best results. 52 69 * Version 1.0.2: General scrambling associated with an unplanned beta release. 53 70 * Version 1.0.1: I accidentally release this to the public before it was ready, so I decided to go ahead and release what I have now. I'm actively developing this, so please leave <a href="http://brockangelo.com/wordpress/plugins/google-chart-generator/">feedback</a>. 54 * Version 1.0: Very basic version. My goal is to get this thing off the ground as soon as possible. 71 * Version 1.0: Very basic version. My goal is to get this thing off the ground as soon as possible.
Note: See TracChangeset
for help on using the changeset viewer.