Skip to content
Snippets Groups Projects
Commit c424d7cb authored by Diego Rey's avatar Diego Rey
Browse files

Fixed bounding on 2d plots

parent 4dc37e1e
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,6 @@ import 'codemirror/mode/markdown/markdown';
import 'codemirror/lib/codemirror';
import 'codemirror/addon/search/search';
import 'codemirror/addon/dialog/dialog';
import 'codemirror/addon/search/search';
import 'codemirror/addon/search/matchesonscrollbar';
......@@ -561,7 +560,6 @@ export class MateFunComponent {
});
}
buildTreeFromList (archivos){
......@@ -585,7 +583,6 @@ export class MateFunComponent {
this.sessionService.setArchivosTree(tree);
}
buildTree(archivos, root){
root.archivos = this.getArchivos(root.id,archivos);
for(var a in root.archivos){
......@@ -605,6 +602,4 @@ export class MateFunComponent {
});
}
}
......@@ -171,8 +171,10 @@ export class Graph2DComponent {
target: '#graph2D-container',
width: bounding.width,
height: bounding.height,
tip: { color: 'green' },
xAxis: { label: 'x - axis',
tip: {
color: 'green'
},
xAxis: {
scale: 'linear',
domain: { initial: [-4, 4],
type: 'discrete' },
......@@ -198,7 +200,6 @@ export class Graph2DComponent {
height: bounding.height,
grid: true,
xAxis: {
label: 'x - axis',
scale: 'linear',
domain: {
initial: [-10, 10],
......@@ -242,7 +243,6 @@ export class Graph2DComponent {
height: bounding.height,
grid: true,
xAxis: {
label: 'x - axis',
scale: 'linear',
domain: {
initial: [-10, 10],
......@@ -282,7 +282,11 @@ export class Graph2DComponent {
* @desc get the measures of the container of the graph
*/
private getBounding = function() {
const {width, height} = this.graph2DRef.nativeElement.getBoundingClientRect();
var {width, height} = this.graph2DRef.nativeElement.getBoundingClientRect();
if (width === 0) {
width = document.getElementById('graph2D-container').querySelector('svg').width.baseVal.value;
height = document.getElementById('graph2D-container').querySelector('svg').height.baseVal.value;
}
return {width, height}
}
......
......@@ -302,7 +302,7 @@ export class GHCIService {
this.messages.next(json_server_message);
} else if (json_server_message.tipo == 'canvas3D' ||
json_server_message.tipo == 'animacion3D') {
document.getElementById("FigurasBtn3D").click()
document.getElementById("FigurasBtn3D").click()
this.focusConsole();
this.messages.next(json_server_message);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment