Home Forums Feature Requests & Feedback Export Chart

Export Chart

Viewing 8 posts - 1 through 8 (of 8 total)
  • #13259

    Is there any option to use the custom button of export Chart.

    #13267

    @Suryanand,

    Are you looking for this?

    #13268

    Not exactly. Actually my need is, how to change the button?, which we are using to export the chart.

    #13271

    Suryanand,

    Please take a look at this fiddle.

    #13272

    Got it. Thanks a lot guys. @Bivek Singh & @Vishwas R

    #13821

    Suryanand,

    We have just released v1.9.6 Beta with Methods & Properties, which allows you to programmatically access internally calculated values, export chart as image, print chart, etc. Please refer to the release blog for more information

    Using exportChart() method you can achieve this.


    Vishwas R
    Team CanvasJS

    #34131

    Hello,

    can we customize export chart menus and their methods ?

    For example, I only want “Save as Image” in export menus. so can that be possible ?

    #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

Viewing 8 posts - 1 through 8 (of 8 total)

You must be logged in to reply to this topic.