I am using jqplot charting library to draw the chart in my ASP.NET MVC application.Inside the div element, rendering the chart.I am trying to convert the div element as image, export to pdf document. For IE 9 and later, jqplotToImageElem() method [support canvas browsers only] is working fine and able to export. For IE 7 & 8 it is not working as expected, since it is using excanvas.js to render the chart. Is there any workaround to implement this for IE 7 & 8 browsers?
Convert Div element as image, ii should support in IE 7 & 8
464 views Asked by user2238971 At
1
There are 1 answers
Related Questions in ASP.NET-MVC
- I have a problem outputing the roles on the page ListRoles.cshtml
- Dropdown list showing SQLServer2005SQLBrowserUser$DONSERVER instead of Active Directory group name in ASP.NET MVC C#
- Hosting ASP.NET MVC application on IIS web server using Windows 2019 server
- How to display only department fields associated with a selected department in student automation system?
- How to send select input data for form submission?
- Multi level project reference using dll
- How to upload file to Onedrive using ASP.NET MVC?
- ASP.NET MVC web app looping between fields only on some devices
- Is there any automatic job to load AD-groups?
- How to restrict admin js files to download
- Download PDF in ASP.NET MVC application
- How to add bootstrap theme/example into ASP.NET MVC 5?
- Web API works with Windows authentication enabled when consumed via Swagger but throws an unauthorized issue when accessed through web app
- ASP.Net Core 7.0 Web App (Model-View-Controller) ErrorViewModel OnGet OnPost do not get called or executed
- OAuth 2.0 keep getting Authorization has been denied for this request
Related Questions in HTML
- How to store a date/time in sqlite (or something similar to a date)
- How to use custom font during html to pdf conversion?
- Storing the preferred font-size in localStorage
- mp4 embedded videos within github pages website not loading
- Scrimba tutorial was working, suddenly stopped even trying the default
- Is there any way to glow this bulb image like a real light bulb
- With non-graphical maps in Leaflet, zoomDelta doesn't work
- What can I do to improve my coding on both html and css
- Uncaught TypeError: google.maps.LatLng is not a constructor at init (script.js:7:13)
- Bootstrap modal not showing at the desired position on a web page when the screen size is smaller
- Displaying a Movie List on a Website Using Jinja2 and Bootstrap
- How to redirect to thank you page after submitting a Google form embedded into a Google Site?
- Storing selected language in localStorage
- Fences (parenthesis, braces) in HTML and MathML
- Understanding Scroll Anchoring Behavoir
Related Questions in HTML5-CANVAS
- Can I pre-scale and cache Images?
- SigmaJS: Create a snapshot of "sigma-containter"
- MediaPipe segmentation mask for Pose Detection Web
- Canvas element having padding + scrollbar
- openfl canvas toDataUrl() return blank image
- CSS animation is not reaching to last element
- Using HTML Canvas, how can I maintain the border-image width of the left and right border to be the same as the top and bottom?
- Resize nodes bug
- How to make layer of different color mask on a image or a div element
- How to relate canvas drawing objects with canvas controller objects in flutter (in SOLID correspondence)?
- Making canvas background transparent
- Where is the bug in this Canvas implementation of Conway's Game of Life?
- How to fix Document is not defined when creating a canvas in Angular
- Tried to create a class for a button creating, but didn't get it with Canvas Context
- finding a point and its angle on a cubic Bezier curve in JavaScript
Related Questions in JQPLOT
- jQplot marker color based on value
- how can i change the font colors inside a jqplot? actualy is black, wanna change to white
- Is there anyway to know the value of the meter gauge when clicked?
- jqPlot highlighter stay open after mouseout until next mouseover on other bar/point?
- jqPlot: Define labels for a bar chart with multiple series
- How do I get the data from a jplot graph on a website
- How to change the number separator of a LineChartSeries with spaces?
- Customize PointLabels in PrimeFaces chart
- chart.js display even intervals between two dates and adding label to y axes
- qplot | ggplot | R data Visualization | group by
- Jqplot - click a point to remove it from database
- jqplot number of events per hour
- jqplot line chart display yaxis 0 at top
- Different colors for one series bar in p:chart
- Jqplot - How to dinamically change the tooltipLocation according to the point position on the grid?
Related Questions in EXCANVAS
- VML non-zero winding
- peity jquery plugin not working on IE 8 with excanvas
- excanvas refusing to work in IE8 despite executing in load event
- Internet Explorer canvas issues with excanvas on multiple drawings?
- Drawing arc in excanvas IE8 to 2Pi does not draw arc
- Appending canvas to a div in IE8
- Flotcharts, Excanvas and IE8: 'fillStyle' is null or not an object
- How to set styles to html5 canvas?
- how to use excanvas in jquery
- excanvas.js ie8 attachEvent
- how to call methods of excanvas?
- excanvas.js not working on IE with dynamic load script
- IE8 doesn`t get canvas element
- excanvas G_vmlCanvasManager is undefined
- Convert Div element as image, ii should support in IE 7 & 8
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
For IE<9 users you have multiple possibilities:
Use node.js on the server to generate your jqplot image and then let them download that image off the server.
Require that they install Google Chrome Frame which will works within IE<9 to give it modern capabilities like canvas. See: https://developers.google.com/chrome/chrome-frame/
Since jqPlot evidently works but doesn't print in IE<9, just have those users print using a screen capture program.
Microsoft recently realized that their non-modern IE's were a liability to the web and has begun auto-updating older IE users to modern versions of IE (See: http://www.paulirish.com/2012/the-skinny-on-ies-update-policy/). So as @amhed suggests, you could require that your users "get with the program" and update to at least IE9. Alternatively, update to Chrome, Firefox, any-modern-browser.
There would be very few clients you couldn't service with #1-4 (but we're looking at you "certain banking institutions" who run on XP and for security reasons & disallow browser upgrades). But for those few clients, you might have to use a GDI-based charting program rather that jqplot.