Plugin Directory

Changeset 122789


Ignore:
Timestamp:
06/04/2009 12:43:12 AM (17 years ago)
Author:
brockangelo
Message:

Public release of 1.0.3.
Added background color, title, labels, etc.

Location:
google-chart-generator
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • google-chart-generator/tags/1.0.3/google-chart-generator.php

    r122755 r122789  
    3737add_action('admin_menu', 'gcg_menu');
    3838add_action('admin_head', 'gcg_head');
     39add_action('wp_head', 'gcg_head');
    3940
    4041function gcg_menu() {
     
    7475    chart_height = document.forms[0].gcg_height.value;
    7576   
     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   
    7684    // Chart Data
    7785    chartdata=document.forms[0].gcg_chartdata;
     
    8896      }
    8997    }
    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    }
    98113   
    99114    // Chart Labels
     
    104119      if (chartlabels[i].value)
    105120      {
    106         labels=labels + chartlabels[i].value;
    107         if (chartlabels[i+1].value)
     121        labels=labels + chartlabels[i].value + "|";
     122       
     123      }
     124      else
    108125        {
    109126        labels=labels + "|";
    110127        }
    111       }
    112     }
     128   
     129    }
     130   
    113131    // Chart Title
    114132    chart_title_line_1 = document.forms[0].gcg_title_line1.value;
     
    159177
    160178
    161     document.getElementById("chart_link").value="http://chart.apis.google.com/chart?" + charttype + "&chs=" + chart_width + "x" + chart_height + chart_bg + "&chd=t:" + data + "&chl=" + 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;
    162180    document.getElementById("chart").src=document.getElementById("chart_link").value;
    163181    }
     
    189207        <div id="gcg_sidebar" class="postbox">
    190208        <h3 class="hndle">
    191         <span>Version Notes: 1.0.2</span>
     209        <span>Version Notes: 1.0.3</span>
    192210        </h3>
    193211        <div class="inside">
    194212        <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 />
    196216        1. Doesn't actually support 8 data sets.<br />
    197217        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
    199224        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 />
    200225        </ul>
     
    214239        <br />
    215240        <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 />
    217242        <input type="button" class="button-primary" onclick="gcg_create_link()" value="Update Chart">
    218243        <input type="button" class="button" value="select" onclick="selText()">
     
    223248        <h3 id="chart_type_box_hndle" class="hndle">Chart Type</h3>
    224249        <div id="chart_type_box_inside" class="inside">
    225         <input type="radio" name="gcg_charttype" value="bvs">Bar Chart<br />
     250        <input type="radio" name="gcg_charttype" value="bhs">Bar Chart<br />
    226251        <input type="radio" name="gcg_charttype" value="lc">Line Chart<br />
    227252        <input type="radio" name="gcg_charttype" value="p3">Pie Chart<br />
     
    234259        <input type="text" size="4" name="gcg_width" value="400"> Width<br />
    235260        <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 />
    237262        </div>
    238263        </div>
     
    277302        <input type="text" size="6" name="gcg_data_color" value="FF3900"> Color
    278303        <input type="text" size="10" name="gcg_labels" value="Wednesday"> Label<br />
    279         </tr><tr>
     304        </tr>
     305        <tr>
    280306        <input type="text" size="4" name="gcg_chartdata" value=""> Data5 
     307        <input type="text" size="6" name="gcg_data_color" value=""> Color   
    281308        <input type="text" size="10" name="gcg_labels" value=""> Label<br />
    282309        </tr>
    283310        <tr>
    284311        <input type="text" size="4" name="gcg_chartdata" value=""> Data6 
     312        <input type="text" size="6" name="gcg_data_color" value=""> Color   
    285313        <input type="text" size="10" name="gcg_labels" value=""> Label<br />
    286         </tr><tr>
     314        </tr>
     315        <tr>
    287316        <input type="text" size="4" name="gcg_chartdata" value=""> Data7 
     317        <input type="text" size="6" name="gcg_data_color" value=""> Color   
    288318        <input type="text" size="10" name="gcg_labels" value=""> Label<br />
    289319        </tr>
    290320        <tr>
    291321        <input type="text" size="4" name="gcg_chartdata" value=""> Data8   
     322        <input type="text" size="6" name="gcg_data_color" value=""> Color   
    292323        <input type="text" size="10" name="gcg_labels" value=""> Label<br />
    293324        </tr>
  • google-chart-generator/tags/1.0.3/readme.txt

    r122314 r122789  
    66Requires at least: 2.1.0
    77Tested up to: 2.7.1
    8 Stable tag: 1.0.2
     8Stable tag: 1.0.3
    99
    1010
     
    2929No!  :)
    3030
    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
     33don't understand? =
    3234
    3335No!  :)
     
    3739Yes!  :)
    3840
     41= What do I do after installing it? =
     42
     43Simply click the buttons and create the chart you like. Version 1.0.3 allows you to insert titles,
     44
     45labels, and customize the colors to your liking. After you get the chart looking the way you want it,
     46
     47select the link, copy, and paste into a widget, post, page, e-mail, etc.
     48
    3949
    4050== Screenshots ==
    4151
    4252Check out a live demo at the <a href="http://brockangelo.com/wordpress/plugins/google-chart-generator/">plugin homepage</a>.
     53
     541. The top of the options page shows you a sample graph.
     551. Insert the data you'd like to graph...
     561. See the results of your hard labor.  :-)
    4357
    4458
     
    4761Planned Features:
    4862
     631. I plan to customize the input depending on what type of chart you are using. This will give much better results.
     641. 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.
    49651. Add button on the write post screen. (for write/edit and posts/pages)
    50661. Save charts to a table so that you can insert "favorite charts"
    5167
     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.
    5269* Version 1.0.2: General scrambling associated with an unplanned beta release.
    5370* 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  
    44Plugin URI: http://brockangelo.com/wordpress/plugins/google-chart-generator/
    55Description: Allows the user to create and insert a Google Chart in posts and pages.
    6 Version: 1.0.2
     6Version: 1.0.3
    77Author: Brock Angelo
    88Author URI: http://brockangelo.com
     
    3737add_action('admin_menu', 'gcg_menu');
    3838add_action('admin_head', 'gcg_head');
     39add_action('wp_head', 'gcg_head');
    3940
    4041function gcg_menu() {
     
    6465    for (i=0;i<type.length;++ i)
    6566    {
    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       
    7173    // Chart Size
    7274    chart_width = document.forms[0].gcg_width.value;
    7375    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   
    7484    // Chart Data
    7585    chartdata=document.forms[0].gcg_chartdata;
     
    8696      }
    8797    }
    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;
    89180    document.getElementById("chart").src=document.getElementById("chart_link").value;
    90181    }
     
    116207        <div id="gcg_sidebar" class="postbox">
    117208        <h3 class="hndle">
    118         <span>Version Notes: 1.0.2</span>
     209        <span>Version Notes: 1.0.3</span>
    119210        </h3>
    120211        <div class="inside">
    121212        <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 />
    123216        1. Doesn't actually support 8 data sets.<br />
    124217        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
    126224        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 />
    127225        </ul>
     
    138236        <h3 id="chart_box_hndle" class="hndle">Google Chart</h3>
    139237        <div id="chart_box_inside" class="inside">
    140         <img id="chart" src="http://chart.apis.google.com/chart?cht=p3&chd=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" />
    141239        <br />
    142240        <br />
     
    150248        <h3 id="chart_type_box_hndle" class="hndle">Chart Type</h3>
    151249        <div id="chart_type_box_inside" class="inside">
    152         <input type="radio" name="gcg_charttype" value="bvs">Bar Chart<br />
     250        <input type="radio" name="gcg_charttype" value="bhs">Bar Chart<br />
    153251        <input type="radio" name="gcg_charttype" value="lc">Line Chart<br />
    154252        <input type="radio" name="gcg_charttype" value="p3">Pie Chart<br />
     
    157255       
    158256        <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>
    160258        <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>
    163279        </div>
    164280       
     
    166282        <h3 id="data_points_box_hndle" class="hndle">Data Points</h3>
    167283        <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       
    178330       
    179331</form>
  • google-chart-generator/trunk/readme.txt

    r122314 r122789  
    66Requires at least: 2.1.0
    77Tested up to: 2.7.1
    8 Stable tag: 1.0.2
     8Stable tag: 1.0.3
    99
    1010
     
    2929No!  :)
    3030
    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
     33don't understand? =
    3234
    3335No!  :)
     
    3739Yes!  :)
    3840
     41= What do I do after installing it? =
     42
     43Simply click the buttons and create the chart you like. Version 1.0.3 allows you to insert titles,
     44
     45labels, and customize the colors to your liking. After you get the chart looking the way you want it,
     46
     47select the link, copy, and paste into a widget, post, page, e-mail, etc.
     48
    3949
    4050== Screenshots ==
    4151
    4252Check out a live demo at the <a href="http://brockangelo.com/wordpress/plugins/google-chart-generator/">plugin homepage</a>.
     53
     541. The top of the options page shows you a sample graph.
     551. Insert the data you'd like to graph...
     561. See the results of your hard labor.  :-)
    4357
    4458
     
    4761Planned Features:
    4862
     631. I plan to customize the input depending on what type of chart you are using. This will give much better results.
     641. 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.
    49651. Add button on the write post screen. (for write/edit and posts/pages)
    50661. Save charts to a table so that you can insert "favorite charts"
    5167
     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.
    5269* Version 1.0.2: General scrambling associated with an unplanned beta release.
    5370* 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.