=== Wp Custom Field Chart === Contributors: showi Donate link: Tags: custom field, chart, javascript Requires at least: 3.9.1 Tested up to: 3.9.1 Stable tag: 0.0.2 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Make chart from *custom field* using *Chart.js* library == Description == This plugin collect data attached to post/article via *custom field* and make chart of it. This plugin use *Chart.js* for chart drawing [ChartJs](http://www.chartjs.org/) Data are collected by looking for specific *custom field* attached to your post/page. You can change aggregation method and intervall, chart multiple field in one chart... == Installation == 1. Upload the entire `wp-custom-field-chart` folder to the `/wp-content/plugins/` directory 2. Activate the plugin through the 'Plugins' menu in WordPress 3. include [custom_field_chart] tag in your post/page (See Other Notes) == Frequently Asked Questions == No FAQ :-) == Screenshots == 1. One field for each chart 2. Combined field in one chart 3. Bar char with different period == Changelog == = 0.0.2 = * Uploading some screenshots * Improved readme.txt = 0.0.1 = * Beta Release == Usage == Edit your post/page in text mode and put some Javascript and a Wordpress tag ` [custom_field_chart width="1000" height="300" kind="line" method="track" interval="day" interval_count="31" fields="humidity,temperature" js_data="mydata" js_options="myopts"] ` = Notes = 1. js_data and js_options must reflect name given to your javascript variable. 2. Look as http://chartjs.org/ for documentation 3. You don't need to supply labels and data (like in chartjs.org example) :) = Tag options = 1. fields: Custom field separate by comma 1. method: Aggregate method (track, delta, cumulative) 1. js_data: Name of javascript variable holding chart datasets 1. js_options: Name of javascript variable holding chart options 1. kind: Chart type (line or bar) 1. width: Chart width 1. height: Chart Height == Note == Beta software... Interface may change.