Effortlessly Load Remote Data for CanvasXpress PNG Images
Remote Graphs in CanvasXpress let users create dynamic visualizations by fetching data from remote sources. Instead of embedding static data, Remote Graphs retrieve data via APIs or external servers, keeping visualizations up-to-date. This is ideal for large datasets or real-time updates, allowing users to integrate external data into their graphs without manual effort.
<html> <head> <!-- Include the CanvasXpress library in your HTML file --> <link rel="stylesheet" href="https://www.canvasxpress.org/dist/canvasXpress.css" type="text/css"/> <script src="https://www.canvasxpress.org/dist/canvasXpress.min.js"></script> </head> <body> <!-- Create a canvas element for the chart with the desired dimensions --> <div> <canvas id="canvasId" width="600" height="600"></canvas> </div> <!-- Create a script to initialize the chart --> <script> // Create the data for the graph var data = "https://www.canvasxpress.org/assets/images/Ex-boxplot-14.png" // Create the configuration for the graph var config = { "remoteTransitionEffect" : "fade" } // Event used to create graph (optional) var events = false // Call the CanvasXpress function to create the graph var cX = new CanvasXpress("canvasId", data, config, events); </script> </body> </html>