From f6675ccdd7a5997def3c4656f0e2c5dbbbed1fc8 Mon Sep 17 00:00:00 2001 From: Ebus-at-dockstar Date: Fri, 25 Jul 2014 22:13:55 +0200 Subject: embed xexpr-path --- datastore-leveldb/wwwroot_ebus/src/d3.plot.js | 99 --------------------------- 1 file changed, 99 deletions(-) delete mode 100644 datastore-leveldb/wwwroot_ebus/src/d3.plot.js (limited to 'datastore-leveldb/wwwroot_ebus/src/d3.plot.js') diff --git a/datastore-leveldb/wwwroot_ebus/src/d3.plot.js b/datastore-leveldb/wwwroot_ebus/src/d3.plot.js deleted file mode 100644 index d9a7d04..0000000 --- a/datastore-leveldb/wwwroot_ebus/src/d3.plot.js +++ /dev/null @@ -1,99 +0,0 @@ -(function(){ - -function d3_plot(container) { - this.opt = { - w:550, h:200, margin:30 - }; - this.element = container.append("svg:g") - .classed("d3.plot_plot",true) - .attr("width", this.opt.w) - .attr("height", this.opt.h); - - this.element.append("svg:rect") - .attr("width", this.opt.w) - .attr("height", this.opt.h) - .style("fill", "white"); - - this.element.append("svg:text") - .classed("d3-plot_wait", true) - .attr("x", this.opt.w/2) - .attr("y", this.opt.h/2) - .attr("text-anchor", "center") - .text("Bitte warten"); -}; - -d3_plot.prototype = { - draw: function(data) { - var x_min = d3.min(data, function(d){return d[0];}), - x_max = d3.max(data, function(d){return d[0];}), - y_min = d3.min(data, function(d){return d[1];}), - y_max = d3.max(data, function(d){return d[1];}); - - var x = d3.time.scale() - .domain([x_min, x_max]) - .range([0+this.opt.margin, this.opt.w-this.opt.margin]); - - var y = d3.scale.linear() - .domain([y_min, y_max]) - .range([0+this.opt.margin, this.opt.h-(this.opt.margin/2)]); - - - var g = this.element.append("svg:g") - .attr("transform", "translate(0, "+this.opt.h+")"); - - var line = d3.svg.line() - .x(function(d,i){ return x(d[0]); }) - .y(function(d) {return -1*y(d[1]);}); - - g.append("svg:path") - .attr("d", line(data)); - - // Axes X-Line - g.append("svg:line") - .attr("x1", 0) - .attr("y1", -1*y(y_min)) - .attr("x2", x(x_max)) - .attr("y2", -1 * y(y_min)); - - - // Tick Labels - var tick_format = d3.time.format("%d.%m"); - g.selectAll(".xlabel") - .data(x.ticks(5)).enter() - .append("svg:text") - .text(function(d){return tick_format(d);}) - .attr("x", function(d) {return x(d);}) - .attr("y", -5) - .attr("text-anchor", "center"); - - g.selectAll(".ylabel") - .data(y.ticks(5)).enter() - .append("svg:text") - .text(String) - .attr("x", 0) - .attr("y", function(d) {return -1*y(d);}) - .attr("text-anchor", "right"); - - // X-Lines - g.selectAll(".xlines") - .data(x.ticks(5)).enter() - .append("svg:line") - .style("fill", "none") - .style("stroke", "#000000") - .style("stroke-width", 0.5) - .style("stroke-dasharray", "6,1") - .attr("x1", function(d){return x(d);}) - .attr("y1", -1*y(y_min)+(this.opt.margin/3)) - .attr("x2", function(d){return x(d);}) - .attr("y2", -1*y(y_max)); - - // - this.element.select(".d3-plot_wait").style("display","none"); - } -}; - -d3.plot = function(container) { - return new d3_plot(container); -}; - -})(); \ No newline at end of file -- cgit v1.2.1