Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

nvd3 chart not loading in IE11 #747

Open
C261193 opened this issue May 22, 2018 · 0 comments
Open

nvd3 chart not loading in IE11 #747

C261193 opened this issue May 22, 2018 · 0 comments

Comments

@C261193
Copy link

C261193 commented May 22, 2018

Working fine in chrome.in Console
capture

this.option2 = {
chart: {
type: 'lineWithFocusChart',
height: 450,
margin : {
top: 20,
right: 20,
bottom: 40,
left: 55
},
x: function(d){ return d.x; },
y: function(d){ return d.y; },
useInteractiveGuideline: true,
dispatch: {
stateChange: function(e){ console.log("stateChange"); },
changeState: function(e){ console.log("changeState"); },
tooltipShow: function(e){ console.log("tooltipShow"); },
tooltipHide: function(e){ console.log("tooltipHide"); }
},
xAxis: {
axisLabel: 'X Axis',
tickFormat: function(d){
return d3.format('f')(d);
},
axisLabelDistance: -10
},
y1Axis: {
axisLabel: 'Y Axis',
tickFormat: function(d){
return d3.format('.2f')(d);
},
axisLabelDistance: -10
},
y2Axis:{
axisLabel: 'Y2 Axis',
tickFormat: function(d){
return d3.format('.2f')(d);
},
axisLabelDistance: -10
},
callback: function(chart){
console.log('end time', new Date());
console.log("!!! lineChart callback !!!");
}
}

<nvd3 [options]="option2" [data]="data1">
<button (click)=saveImage()>Export As Image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant