Updated Gruntfile and rerun

master
John Kiernander 2013-09-12 10:45:02 +01:00
parent 3a834db496
commit 9919fa4e78
63 changed files with 4345 additions and 6 deletions

View File

@ -84,7 +84,10 @@ module.exports = function(grunt) {
options: {
dest: 'examples/',
tag: '{version}',
version: 'v<%= pkg.version %>'
version: 'v<%= pkg.version %>',
header: "<!--------------------------------------------------------------------->\n" +
"<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT {sourcefile} INSTEAD -->\n" +
"<!--------------------------------------------------------------------->\n"
}
}
});
@ -101,8 +104,11 @@ module.exports = function(grunt) {
var options = this.options(),
outPath = options.dest,
tag = options.tag,
version = options.version;
// Iterate over all src-dest file pairs.
version = options.version,
header = options.header;
grunt.log.writeln("");
grunt.log.writeln("Replacing " + tag + " with " + version);
grunt.log.writeln("------------------------------------------------------");
this.files.forEach(function(f) {
f.src.filter(function(filepath) {
var result = true;
@ -113,11 +119,13 @@ module.exports = function(grunt) {
return result;
}).map(function(filepath) {
// Read file source.
var src = grunt.file.read(filepath);
var src = grunt.file.read(filepath),
head = header.split("{sourcefile}").join(filepath);
// Replace the version
src = src.replace(tag, version);
src = src.split(tag).join(version);
// Write the new file
grunt.file.write(outPath + filepath.substring(filepath.lastIndexOf("/") + 1), src);
grunt.log.writeln(filepath + " -> " + outPath + filepath.substring(filepath.lastIndexOf("/") + 1));
grunt.file.write(outPath + filepath.substring(filepath.lastIndexOf("/") + 1), head + src);
});
});
});

4149
dist/dimple.v1.1.0.js vendored Normal file

File diff suppressed because it is too large Load Diff

2
dist/dimple.v1.1.0.min.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/advanced_bar_labels.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/advanced_bullet.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/advanced_dynamic_line_color.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/advanced_grouped_mekko.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/advanced_interactive_legends.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/advanced_lollipop_with_hover.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/advanced_matrix.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/advanced_pong.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/advanced_price_range_lollipop.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/advanced_storyboard_control.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/advanced_time_axis.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/advanced_trellis_bar.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/advanced_waterfall.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/areas_horizontal.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/areas_horizontal_grouped.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/areas_horizontal_grouped_100pct.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/areas_horizontal_grouped_stacked.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/areas_horizontal_stacked.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/areas_horizontal_stacked_100pct.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/areas_vertical.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/areas_vertical_grouped.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/areas_vertical_grouped_100pct.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/areas_vertical_grouped_stacked.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/areas_vertical_stacked.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/areas_vertical_stacked_100pct.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/bars_horizontal.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/bars_horizontal_grouped.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/bars_horizontal_grouped_stacked.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/bars_horizontal_grouped_stacked_100pct.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/bars_horizontal_mekko.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/bars_horizontal_stacked.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/bars_horizontal_stacked_100pct.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/bars_matrix.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/bars_vertical.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/bars_vertical_grouped.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/bars_vertical_grouped_stacked.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/bars_vertical_grouped_stacked_100pct.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/bars_vertical_mekko.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/bars_vertical_stacked.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/bars_vertical_stacked_100pct.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/bubbles_horizontal_grouped.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/bubbles_horizontal_lollipop.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/bubbles_matrix.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/bubbles_standard.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/bubbles_vertical_grouped.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/bubbles_vertical_lollipop.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/lines_horizontal.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/lines_horizontal_grouped.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/lines_horizontal_grouped_stacked.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/lines_horizontal_stacked.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/lines_vertical.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/lines_vertical_grouped.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/lines_vertical_grouped_stacked.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/lines_vertical_stacked.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/scatter_horizontal_grouped.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/scatter_horizontal_lollipop.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/scatter_matrix.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/scatter_standard.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/scatter_vertical_grouped.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>

View File

@ -1,3 +1,6 @@
<!--------------------------------------------------------------------->
<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT examples/templates/scatter_vertical_lollipop.html INSTEAD -->
<!--------------------------------------------------------------------->
<div id="chartContainer">
<script src="/lib/d3.v3.min.js"></script>
<script src="/dist/dimple.v1.1.0.js"></script>