diff --git a/.project b/.project
new file mode 100644
index 0000000..a4942e3
--- /dev/null
+++ b/.project
@@ -0,0 +1,46 @@
+
+
+ i3Geo 6.0
+
+
+
+
+
+ org.eclipse.wst.jsdt.core.javascriptValidator
+
+
+
+
+
+ org.eclipse.wst.jsdt.core.jsNature
+
+
+
+ 1411411719209
+
+ 30
+
+ org.eclipse.ui.ide.multiFilter
+ 1.0-name-matches-false-false-*compact*
+
+
+
+ 1411411719212
+
+ 26
+
+ org.eclipse.ui.ide.multiFilter
+ 1.0-name-matches-false-false-pacotes
+
+
+
+ 1411411719214
+
+ 10
+
+ org.eclipse.ui.ide.multiFilter
+ 1.0-name-matches-false-false-documentacao
+
+
+
+
diff --git a/.settings/.jsdtscope b/.settings/.jsdtscope
new file mode 100644
index 0000000..74fb49d
--- /dev/null
+++ b/.settings/.jsdtscope
@@ -0,0 +1,321 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/.settings/org.eclipse.wst.jsdt.ui.superType.container b/.settings/org.eclipse.wst.jsdt.ui.superType.container
new file mode 100644
index 0000000..49c8cd4
--- /dev/null
+++ b/.settings/org.eclipse.wst.jsdt.ui.superType.container
@@ -0,0 +1 @@
+org.eclipse.wst.jsdt.launching.JRE_CONTAINER
\ No newline at end of file
diff --git a/.settings/org.eclipse.wst.jsdt.ui.superType.name b/.settings/org.eclipse.wst.jsdt.ui.superType.name
new file mode 100644
index 0000000..11006e2
--- /dev/null
+++ b/.settings/org.eclipse.wst.jsdt.ui.superType.name
@@ -0,0 +1 @@
+Global
\ No newline at end of file
diff --git a/ferramentas/graficointerativo1/index.js b/ferramentas/graficointerativo1/index.js
index 091edd1..2f948fc 100755
--- a/ferramentas/graficointerativo1/index.js
+++ b/ferramentas/graficointerativo1/index.js
@@ -1245,13 +1245,11 @@ i3GEOF.graficointerativo1 =
baseAxisTitleFont : '9px sans-serif',
yAxisTickFormatter : function(valor) {
valor = valor + "";
- valor = format("#.###,", valor);
- return valor;
+ return format("#.###,", valor);
},
valueFormat : function(valor) {
valor = valor + "";
- valor = format("#.###,", valor);
- return valor;
+ return format("#.###,", valor);
},
valuesAnchor : 'top',
valuesVisible : false,
@@ -1438,13 +1436,11 @@ i3GEOF.graficointerativo1 =
baseAxisTitle : legendaX,
yAxisTickFormatter : function(valor) {
valor = valor + "";
- valor = format("#.###,", valor);
- return valor;
+ return format("#.###,", valor);
},
valueFormat : function(valor) {
valor = valor + "";
- valor = format("#.###,", valor);
- return valor;
+ return format("#.###,", valor);
},
tooltipFormat : function(scene) {
var cat = this.scene.datum.atoms['category'].value, val = this.scene.datum.atoms['value'].value;
--
libgit2 0.21.2