Skip to content
This repository has been archived by the owner on Aug 7, 2018. It is now read-only.

Commit

Permalink
Alguns ajustes de estilo
Browse files Browse the repository at this point in the history
  • Loading branch information
diraol committed Sep 4, 2016
1 parent bd20f00 commit 8883c12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions radar_parlamentar/static/files/codes/js/plenaria.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Plot = (function ($) {

var svg = d3.select("#graficoplenaria").append("svg")
.attr("width", 550)
.attr("height", 400)
.attr("height", 300)
.append("g")
.attr("transform", "translate(280,270)");

Expand All @@ -71,7 +71,7 @@ Plot = (function ($) {
.data(function(raio){return raio.lista_de_parlamentares})
.enter().append("circle")
.attr("cx", function(parlamentar, i){ return escala(i);})
.attr("r", 8.5) //TODO: Criar uma função para escalar a bolinha proporcionalmente ao número de parlamentares
.attr("r", 5.5) //TODO: Criar uma função para escalar a bolinha proporcionalmente ao número de parlamentares
.attr("fill", function(parlamentar){ return partidos[parlamentar.id_partido].cor; })
.attr("stroke-width", 0)
.attr("id", function(parlamentar){return parlamentar.nome;})
Expand Down

0 comments on commit 8883c12

Please sign in to comment.