Changeset 723904
- Timestamp:
- 06/07/2013 09:44:04 AM (13 years ago)
- Location:
- ipu-chart
- Files:
-
- 6 edited
- 1 copied
-
tags/0.7.2 (copied) (copied from ipu-chart/trunk)
-
tags/0.7.2/ipu-chart.php (modified) (1 diff)
-
tags/0.7.2/js/ipu-chart.js (modified) (1 diff)
-
tags/0.7.2/readme.txt (modified) (6 diffs)
-
trunk/ipu-chart.php (modified) (1 diff)
-
trunk/js/ipu-chart.js (modified) (1 diff)
-
trunk/readme.txt (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ipu-chart/tags/0.7.2/ipu-chart.php
r723546 r723904 5 5 Description: Creates D3/SVG based charts out of your csv, tsv or jason data. Currently supports bar, pie, donut, line, scatter, bubble and world map charts. 6 6 Author: Thomas Müller Flury, ipublia 7 Version: 0.7. 17 Version: 0.7.2 8 8 Author URI: https://www.ipublia.com/author/thmufl/ 9 9 Text Domain: ipuchart -
ipu-chart/tags/0.7.2/js/ipu-chart.js
r723546 r723904 533 533 .style("stroke", "lightgray") 534 534 .style("fill", function(d, i) { return i == 0 ? "black" : "lightgray"}) 535 .style("cursor", "pointer") 535 536 .on("click", changeSerie); 536 537 -
ipu-chart/tags/0.7.2/readme.txt
r723546 r723904 4 4 Requires at least: 3.0.1 5 5 Tested up to: 3.5.1 6 Stable tag: 0.7. 16 Stable tag: 0.7.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 14 14 IPU-Chart is an easy to use shortcode that creates SVG based bar, pie, donut, line, scatter, bubble and world map charts out of your csv (comma separated), tsv (tab separated) or json data. 15 15 16 ** Now with json support!**16 **Multi series extensions are available now** 17 17 18 18 The plugin allows you to load the data to display as a chart from a remote service that delivers json, csv or tsv formatted data. You can also export you data from favorite spreadsheet application (Excel, Numbers, Open Office) and display it as a chart in your blog or page. … … 22 22 IPU-Chart is based on [SVG](http://www.w3.org/TR/SVG/) and [D3](http://d3js.org/). It works perfectly on large computer screens as well as on tablets and smaller mobile screens. For browsers that do not support SVG an alternative image can be set. 23 23 24 The styling of all chart types can be done precisely and easily with css.24 With [IPU-Chart Multi Series](https://www.ipublia.com/products) we add support for interactive multi series chart types. 25 25 26 26 = Features = … … 30 30 * Load the json, csv or tsv data from a remote location 31 31 * [IPU-Chart Editor Online](https://www.ipublia.com/support/ipu-chart-editor-online/) to easily define the shortcodes. 32 * Create multiple views of the data33 32 * Style the charts with css 34 * Tooltip for chart details (see screenshots)35 33 * Animated multi-series bubble charts 36 34 * Animated world map and bar charts 37 * Define colors and number formats of the chart 38 * Create an additional table view of the data 35 * Multi series extension 39 36 40 37 = Usage = … … 185 182 * Support for multi-series extension added. 186 183 184 = 0.7.2 = 185 * Minor bug fixes and name changes. 186 187 187 == Upgrade Notice == 188 188 … … 236 236 This version adds support for negative values for horizontal bar charts. A second shortcode set with the prefix 'ipu-' was added for interoperability with some plugins and themes. 237 237 238 238 = 0.7.2 = 239 * Minor bug fixes and name changes. 240 241 -
ipu-chart/trunk/ipu-chart.php
r723546 r723904 5 5 Description: Creates D3/SVG based charts out of your csv, tsv or jason data. Currently supports bar, pie, donut, line, scatter, bubble and world map charts. 6 6 Author: Thomas Müller Flury, ipublia 7 Version: 0.7. 17 Version: 0.7.2 8 8 Author URI: https://www.ipublia.com/author/thmufl/ 9 9 Text Domain: ipuchart -
ipu-chart/trunk/js/ipu-chart.js
r723546 r723904 533 533 .style("stroke", "lightgray") 534 534 .style("fill", function(d, i) { return i == 0 ? "black" : "lightgray"}) 535 .style("cursor", "pointer") 535 536 .on("click", changeSerie); 536 537 -
ipu-chart/trunk/readme.txt
r723546 r723904 4 4 Requires at least: 3.0.1 5 5 Tested up to: 3.5.1 6 Stable tag: 0.7. 16 Stable tag: 0.7.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 14 14 IPU-Chart is an easy to use shortcode that creates SVG based bar, pie, donut, line, scatter, bubble and world map charts out of your csv (comma separated), tsv (tab separated) or json data. 15 15 16 ** Now with json support!**16 **Multi series extensions are available now** 17 17 18 18 The plugin allows you to load the data to display as a chart from a remote service that delivers json, csv or tsv formatted data. You can also export you data from favorite spreadsheet application (Excel, Numbers, Open Office) and display it as a chart in your blog or page. … … 22 22 IPU-Chart is based on [SVG](http://www.w3.org/TR/SVG/) and [D3](http://d3js.org/). It works perfectly on large computer screens as well as on tablets and smaller mobile screens. For browsers that do not support SVG an alternative image can be set. 23 23 24 The styling of all chart types can be done precisely and easily with css.24 With [IPU-Chart Multi Series](https://www.ipublia.com/products) we add support for interactive multi series chart types. 25 25 26 26 = Features = … … 30 30 * Load the json, csv or tsv data from a remote location 31 31 * [IPU-Chart Editor Online](https://www.ipublia.com/support/ipu-chart-editor-online/) to easily define the shortcodes. 32 * Create multiple views of the data33 32 * Style the charts with css 34 * Tooltip for chart details (see screenshots)35 33 * Animated multi-series bubble charts 36 34 * Animated world map and bar charts 37 * Define colors and number formats of the chart 38 * Create an additional table view of the data 35 * Multi series extension 39 36 40 37 = Usage = … … 185 182 * Support for multi-series extension added. 186 183 184 = 0.7.2 = 185 * Minor bug fixes and name changes. 186 187 187 == Upgrade Notice == 188 188 … … 236 236 This version adds support for negative values for horizontal bar charts. A second shortcode set with the prefix 'ipu-' was added for interoperability with some plugins and themes. 237 237 238 238 = 0.7.2 = 239 * Minor bug fixes and name changes. 240 241
Note: See TracChangeset
for help on using the changeset viewer.