Disable Zoom Events in plotly.js
How to disable zoom events in JavaScript charts.
function makeplot() {
Plotly.d3.csv("https://raw.githubusercontent.com/plotly/datasets/master/2014_apple_stock.csv", function(data){ processData(data) } );
};
function processData(allRows) {
console.log(allRows);
var x = [], y = [], standard_deviation = [];
for (var i=0; i<allRows.length; i++) {
row = allRows[i];
x.push( row['AAPL_x'] );
y.push( row['AAPL_y'] );
}
console.log( 'X',x, 'Y',y, 'SD',standard_deviation );
makePlotly( x, y, standard_deviation );
}
function makePlotly( x, y, standard_deviation ){
var plotDiv = document.getElementById("plot");
var traces = [{
x: x,
y: y
}];
var layout = { xaxis:
{
fixedrange: true
}
};
Plotly.newPlot('myDiv', traces, layout,
{title: 'Plotting CSV data from AJAX call'});
};
makeplot();
function makeplot() {
Plotly.d3.csv("https://raw.githubusercontent.com/plotly/datasets/master/2014_apple_stock.csv", function(data){ processData(data) } );
};
function processData(allRows) {
console.log(allRows);
var x = [], y = [], standard_deviation = [];
for (var i=0; i<allRows.length; i++) {
row = allRows[i];
x.push( row['AAPL_x'] );
y.push( row['AAPL_y'] );
}
console.log( 'X',x, 'Y',y, 'SD',standard_deviation );
makePlotly( x, y, standard_deviation );
}
function makePlotly( x, y, standard_deviation ){
var plotDiv = document.getElementById("plot");
var traces = [{
x: x,
y: y
}];
var layout = {
yaxis: {
fixedrange: true
},
xaxis : {
fixedrange: true
}
};
Plotly.newPlot('myDiv', traces, layout,
{title: 'Plotting CSV data from AJAX call'});
};
makeplot();