Skip to content
visualizer-charts-and-graphs

Tired of re-uploading CSVs? Sync with Google Sheets, unlock 10+ Pro charts, and get priority support when you need it.

See Pro Plans →

Adding logo / image into charts

This guide is made for the purpose of teaching one to insert a logo or an image into the charts created with Visualizer. Also, make sure you're using the latest version of the plugin available. Please follow the steps below:

1 Before doing anything else, we strongly recommend backing up your files first.

2 Once the backup is complete, please navigate to ->  wp-content/plugins/visualizer/js and you should see a file called  customization.js. Copy the customization.js file and paste it inside ->  wp-content/uploads/visualizer/. If the visualizer folder does not exist, you would need to create it first.

3 Paste the code below inside the customization.js file:

setTimeout(function(){
    jQuery('.visualizer-front').prepend(jQuery('<div class="vim"><img src="URL to your image"></div>')).css('position','relative');
    }, 1000);

You may replace the link inside <img src="your_logo_URL"> with the path or link of your desired logo.

Save the changes and reload the page. That's all!