Home Forums Feature Requests & Feedback Export Chart Reply To: Export Chart

#34160

@malvipanchal,

You can customize the text of export / print options by setting culture. Either you can change the text of JPG or PNG option to ‘Save as Image’ & hide the other option with the help of CSS display property. Please find the code-snippet below.

.canvasjs-chart-toolbar div>div:nth-child(2) {
  display: none !important;
}

Please take a look at this JSFiddle for complete code.
Customizing Export Options


Vishwas R
Team CanvasJS