Why is pan (and zoom) not working on my Chart.js graph?Hover event in graph Chart.jszooming/blowup and panning option in chart.js on category scalesChart.js max legend heightpan on chart.js also zoom on line chartszoom and pan on charts in angularChart.js Dynamic data,graph plot MVCreset the zoom to the initial in chart.js?Can someone experienced with chartjs point out why is this bug happening?Display Only Part of the Data using Chart.js
Ex-contractor published company source code and secrets online
Is Calculus necessary for computer science student?
Generating function of ordered partitions
How to mark beverage cans in a cooler for a blind person?
Replace value with variable length between double quotes
Visa National - No Exit Stamp From France on Return to the UK
changing number of arguments to a function in secondary evaluation
Should you play baroque pieces a semitone lower?
Was the 2019 Lion King film made through motion capture?
What skills in 5e give trap knowledge (i.e. the equivalent of Dungeoneering in 4e)?
Interpretation of 21 cm intensity mapping
What does "sardine box" mean?
Can you castle with a "ghost" rook?
Withdrew when Jimmy met up with Heath
(11 of 11: Meta) What is Pyramid Cult's All-Time Favorite?
Generate Brainfuck for the numbers 1–255
How can you evade tax by getting employment income just in equity, then using this equity as collateral to take out loan?
Carbs Vs Fat - Which is better for weight loss
As a 16 year old, how can I keep my money safe from my mother?
Dropdowns & Chevrons for Right to Left languages
During the Space Shuttle Columbia Disaster of 2003, Why Did The Flight Director Say, "Lock the doors."?
What is my malfunctioning AI harvesting from humans?
The cat ate your input again!
Is it okay for a ticket seller to grab a tip in the USA?
Why is pan (and zoom) not working on my Chart.js graph?
Hover event in graph Chart.jszooming/blowup and panning option in chart.js on category scalesChart.js max legend heightpan on chart.js also zoom on line chartszoom and pan on charts in angularChart.js Dynamic data,graph plot MVCreset the zoom to the initial in chart.js?Can someone experienced with chartjs point out why is this bug happening?Display Only Part of the Data using Chart.js
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm making a linear graph and the pan and zoom functionality are not working.
I'm using:
"chart.js": "Chart-js#v2.5.0",
"chartjs-plugin-zoom": "Chart.Zoom.js#v0.7.0",
"hammerjs": "v2.0.8"
and added them in this orden in the html:
<script src="~/lib/hammerjs/hammer.min.js"></script>
<script src="~/lib/chart.js/dist/Chart.min.js"></script>
<script src="~/lib/chartjs-plugin-zoom/dist/chartjs-plugin-zoom.min.js"></script>
I'm using chart.js 2.5.0 because i needed it to work on IE11 and read somewhere that it was better to use that version, but I'm not sure about that.
I copied a working code from snippets online, but it's still now working.
<canvas id="canvas" height="180"></canvas>
<script>
var ctx = document.getElementById("canvas").getContext('2d');
var myChart = new Chart(ctx,
type: 'bar',
data:
labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sept'],
datasets: [
label: '# of Votes',
data: [12, 19, 3, 5, 0, 5, 9, 4, 11]
]
,
options:
pan:
enabled: true,
mode: 'x',
,
zoom:
enabled: true,
mode: 'x',
);
</script>
The graph shows but I'm not getting the functionalities and in the console there are no errors.
Thanks in advance.
chart.js hammer.js
add a comment |
I'm making a linear graph and the pan and zoom functionality are not working.
I'm using:
"chart.js": "Chart-js#v2.5.0",
"chartjs-plugin-zoom": "Chart.Zoom.js#v0.7.0",
"hammerjs": "v2.0.8"
and added them in this orden in the html:
<script src="~/lib/hammerjs/hammer.min.js"></script>
<script src="~/lib/chart.js/dist/Chart.min.js"></script>
<script src="~/lib/chartjs-plugin-zoom/dist/chartjs-plugin-zoom.min.js"></script>
I'm using chart.js 2.5.0 because i needed it to work on IE11 and read somewhere that it was better to use that version, but I'm not sure about that.
I copied a working code from snippets online, but it's still now working.
<canvas id="canvas" height="180"></canvas>
<script>
var ctx = document.getElementById("canvas").getContext('2d');
var myChart = new Chart(ctx,
type: 'bar',
data:
labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sept'],
datasets: [
label: '# of Votes',
data: [12, 19, 3, 5, 0, 5, 9, 4, 11]
]
,
options:
pan:
enabled: true,
mode: 'x',
,
zoom:
enabled: true,
mode: 'x',
);
</script>
The graph shows but I'm not getting the functionalities and in the console there are no errors.
Thanks in advance.
chart.js hammer.js
I created a fiddle from your code and see the zoom is working correctly. jsfiddle.net/b3yvamed
– Kunal Khivensara
Mar 27 at 9:13
yeah... but it's not working on my ASP.NET MVC project @kunal-khivensara
– Miguel Cordero
Mar 27 at 9:25
See if you have any error in the console.
– Kunal Khivensara
Mar 27 at 9:50
No, I don't... @KunalKhivensara
– Miguel Cordero
Mar 27 at 10:25
add a comment |
I'm making a linear graph and the pan and zoom functionality are not working.
I'm using:
"chart.js": "Chart-js#v2.5.0",
"chartjs-plugin-zoom": "Chart.Zoom.js#v0.7.0",
"hammerjs": "v2.0.8"
and added them in this orden in the html:
<script src="~/lib/hammerjs/hammer.min.js"></script>
<script src="~/lib/chart.js/dist/Chart.min.js"></script>
<script src="~/lib/chartjs-plugin-zoom/dist/chartjs-plugin-zoom.min.js"></script>
I'm using chart.js 2.5.0 because i needed it to work on IE11 and read somewhere that it was better to use that version, but I'm not sure about that.
I copied a working code from snippets online, but it's still now working.
<canvas id="canvas" height="180"></canvas>
<script>
var ctx = document.getElementById("canvas").getContext('2d');
var myChart = new Chart(ctx,
type: 'bar',
data:
labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sept'],
datasets: [
label: '# of Votes',
data: [12, 19, 3, 5, 0, 5, 9, 4, 11]
]
,
options:
pan:
enabled: true,
mode: 'x',
,
zoom:
enabled: true,
mode: 'x',
);
</script>
The graph shows but I'm not getting the functionalities and in the console there are no errors.
Thanks in advance.
chart.js hammer.js
I'm making a linear graph and the pan and zoom functionality are not working.
I'm using:
"chart.js": "Chart-js#v2.5.0",
"chartjs-plugin-zoom": "Chart.Zoom.js#v0.7.0",
"hammerjs": "v2.0.8"
and added them in this orden in the html:
<script src="~/lib/hammerjs/hammer.min.js"></script>
<script src="~/lib/chart.js/dist/Chart.min.js"></script>
<script src="~/lib/chartjs-plugin-zoom/dist/chartjs-plugin-zoom.min.js"></script>
I'm using chart.js 2.5.0 because i needed it to work on IE11 and read somewhere that it was better to use that version, but I'm not sure about that.
I copied a working code from snippets online, but it's still now working.
<canvas id="canvas" height="180"></canvas>
<script>
var ctx = document.getElementById("canvas").getContext('2d');
var myChart = new Chart(ctx,
type: 'bar',
data:
labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sept'],
datasets: [
label: '# of Votes',
data: [12, 19, 3, 5, 0, 5, 9, 4, 11]
]
,
options:
pan:
enabled: true,
mode: 'x',
,
zoom:
enabled: true,
mode: 'x',
);
</script>
The graph shows but I'm not getting the functionalities and in the console there are no errors.
Thanks in advance.
chart.js hammer.js
chart.js hammer.js
asked Mar 27 at 8:22
Miguel CorderoMiguel Cordero
717 bronze badges
717 bronze badges
I created a fiddle from your code and see the zoom is working correctly. jsfiddle.net/b3yvamed
– Kunal Khivensara
Mar 27 at 9:13
yeah... but it's not working on my ASP.NET MVC project @kunal-khivensara
– Miguel Cordero
Mar 27 at 9:25
See if you have any error in the console.
– Kunal Khivensara
Mar 27 at 9:50
No, I don't... @KunalKhivensara
– Miguel Cordero
Mar 27 at 10:25
add a comment |
I created a fiddle from your code and see the zoom is working correctly. jsfiddle.net/b3yvamed
– Kunal Khivensara
Mar 27 at 9:13
yeah... but it's not working on my ASP.NET MVC project @kunal-khivensara
– Miguel Cordero
Mar 27 at 9:25
See if you have any error in the console.
– Kunal Khivensara
Mar 27 at 9:50
No, I don't... @KunalKhivensara
– Miguel Cordero
Mar 27 at 10:25
I created a fiddle from your code and see the zoom is working correctly. jsfiddle.net/b3yvamed
– Kunal Khivensara
Mar 27 at 9:13
I created a fiddle from your code and see the zoom is working correctly. jsfiddle.net/b3yvamed
– Kunal Khivensara
Mar 27 at 9:13
yeah... but it's not working on my ASP.NET MVC project @kunal-khivensara
– Miguel Cordero
Mar 27 at 9:25
yeah... but it's not working on my ASP.NET MVC project @kunal-khivensara
– Miguel Cordero
Mar 27 at 9:25
See if you have any error in the console.
– Kunal Khivensara
Mar 27 at 9:50
See if you have any error in the console.
– Kunal Khivensara
Mar 27 at 9:50
No, I don't... @KunalKhivensara
– Miguel Cordero
Mar 27 at 10:25
No, I don't... @KunalKhivensara
– Miguel Cordero
Mar 27 at 10:25
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55372618%2fwhy-is-pan-and-zoom-not-working-on-my-chart-js-graph%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55372618%2fwhy-is-pan-and-zoom-not-working-on-my-chart-js-graph%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I created a fiddle from your code and see the zoom is working correctly. jsfiddle.net/b3yvamed
– Kunal Khivensara
Mar 27 at 9:13
yeah... but it's not working on my ASP.NET MVC project @kunal-khivensara
– Miguel Cordero
Mar 27 at 9:25
See if you have any error in the console.
– Kunal Khivensara
Mar 27 at 9:50
No, I don't... @KunalKhivensara
– Miguel Cordero
Mar 27 at 10:25