jojo_le_haricot | Salut, J'utilise la librairie d3.js pour générer un graphique multi-ligne à partir d'un fichier csv. Le CSV est en fait un fichier log de températures sous la forme suivante : date,temp1,temp2,temp3 2015-07-08-15h30, 24.2, 23.6, 25.3 2015-07-08-15h30, 24.7, 24.2, 25.6 2015-07-08-15h30, 24.2, 23.6, 25.4 ... Mon graphique fonctionne très bien avec toutes les données du CSV mais je cherche à faire un filtre sur les X dernières données pour pouvoir n'afficher que les données du dernier jour, semaine, mois... Je mets mon code si ça peut aider...
Code :
- <!DOCTYPE html>
- <head>
- <meta charset="utf-8">
- <style>
- body {
- font: 9px sans-serif;
- color: #121401;
- }
- .axis path,
- .axis line {
- fill: none;
- stroke: #121401;
- stroke-width: 2px;
- shape-rendering: crispEdges;
- }
- </style>
- </head>
- <body>
- <h2 style="padding-left:60px;">Historique des températures</h2>
- <script src="d3.js"></script>
- <script src="d3.min.js"></script>
- <script src="jquery.js"></script>
- <button name="button_24h" >24h</button>
- <button name="button_48h">48h</button>
- <button name="button_semaine">Semaine</button>
- <button name="button_mois">Mois</button>
- <p></p>
- <script>
- var margin = {top: 20, right: 55, bottom: 30, left: 40},
- width = 1000 - margin.left - margin.right,
- height = 500 - margin.top - margin.bottom;
- var x = d3.scale.ordinal()
- .rangeRoundBands([0, width], .1);
-
- var y = d3.scale.linear()
- .range([height, 0]);
-
- var xAxis = d3.svg.axis()
- .scale(x)
- .orient("bottom" );
- var yAxis = d3.svg.axis()
- .scale(y)
- .orient("left" );
- var line = d3.svg.line()
- .interpolate("linear" )
- .x(function (d) { return x(d.label) + x.rangeBand() / 2; })
- .y(function (d) { return y(d.value); });
- var color = d3.scale.ordinal()
- .range(["#D31623","#16D316","#F1CC11","#1655D3","#D77E09"]);
- var svg = d3.select("body" ).append("svg" )
- .attr("width", width + margin.left + margin.right)
- .attr("height", height + margin.top + margin.bottom)
- .append("g" )
- .attr("transform", "translate(" + margin.left + "," + margin.top + " )" );
- d3.csv("fichiers/templog.csv", function (error, data) {
- var labelVar = 'date';
- var varNames = d3.keys(data[0]).filter(function (key) { return key !== labelVar;});
- color.domain(varNames);
- var seriesData = varNames.map(function (name) {
- return {
- name: name,
- values: data.map(function (d) {
- return {name: name, label: d[labelVar], value: +d[name]};
- })
- };
- });
- x.domain(data.map(function (d) { return d.date; }));
- //y.domain([0,d3.max(seriesData, function (c) { return d3.max(c.values, function (d) { return d.value; });})]);
- y.domain([0,35]);
- svg.append("g" )
- .attr("class", "x axis" )
- .attr("transform", "translate(0," + height + " )" )
- .call(xAxis);
- svg.append("g" )
- .attr("class", "y axis" )
- .call(yAxis)
- .append("text" )
- .attr("transform", "rotate(-90)" )
- .attr("y", 6)
- .attr("dy", ".71em" )
- .style("text-anchor", "end" )
- .text("(°C)" );
- var series = svg.selectAll(".series" )
- .data(seriesData)
- .enter().append("g" )
- .attr("class", "series" );
- series.append("path" )
- .attr("class", "line" )
- .attr("d", function (d) { return line(d.values); })
- .style("stroke", function (d) { return color(d.name); })
- .style("stroke-width", "4px" )
- .style("fill", "none" )
- series.selectAll(".point" )
- .data(function (d) { return d.values; })
- .enter().append("circle" )
- .attr("class", "point" )
- .attr("cx", function (d) { return x(d.label) + x.rangeBand()/2; })
- .attr("cy", function (d) { return y(d.value); })
- .attr("r", "2px" )
- .style("fill", function (d) { return color(d.name); })
- .style("stroke", "black" )
- .style("stroke-width", "1px" )
- .on("mouseover", function (d) { showPopover.call(this, d); })
- .on("mouseout", function (d) { removePopovers(); })
- var legend = svg.selectAll(".legend" )
- .data(varNames.slice().reverse())
- .enter().append("g" )
- .attr("class", "legend" )
- .attr("transform", function (d, i) { return "translate(55," + i * 20 + " )"; });
- legend.append("rect" )
- .attr("x", width - 10)
- .attr("width", 10)
- .attr("height", 10)
- .style("fill", color)
- .style("stroke", "grey" );
- legend.append("text" )
- .attr("x", width - 12)
- .attr("y", 6)
- .attr("dy", ".35em" )
- .style("text-anchor", "end" )
- .text(function (d) { return d; });
- function removePopovers () {
- $('.popover').each(function() {
- $(this).remove();
- });
- }
- function showPopover (d) {
- $(this).popover({
- title: d.name,
- placement: 'auto top',
- container: 'body',
- trigger: 'manual',
- html : true,
- content: function() {
- return "Date: " + d.label +
- "<br/>Température: " + d3.format("," )(d.value ? d.value: d.y1 - d.y0); }
- });
- $(this).popover('show')
- }
- });
- </script>
- </body>
- </html>
|
Message édité par jojo_le_haricot le 08-07-2015 à 11:45:54 ---------------
|