Lines Matching refs:export

8 This plugin adds export capabilities to all amCharts products - charts and maps.
18 or all export options might not work if the web page is loaded locally (via
28 <script src="amcharts/plugins/export/export.min.js"></script>
29 <link type="text/css" href="amcharts/plugins/export/export.css" rel="stylesheet">
35 <script src="//cdn.amcharts.com/lib/3/plugins/export/export.min.js"></script>
36 <link type="text/css" href="//cdn.amcharts.com/lib/3/plugins/export/export.css" rel="stylesheet">
41 ### 2) Enable `export` with default options:
46 "export": {
57 "export": {
60 "class": "export-main",
68 "class": "export-drawing",
80 The plugin relies on a number of different libraries, to export images, draw
98 displaying your chart on, not the export.js library.
113 fabric.min.js | libs/fabric.js/ | Any export operation
121 ## Complete list of available export settings
126 enabled | true | Enables or disables export functionality
130 …Charts | A file name to use for generated export files (an extension will be appended to it based …
134 pdfMake | {} | Overwrites the default settings for PDF export (pdfMake library)
135 position | top-right | A position of export icon. Possible values: "top-left", "top-right" (default…
136 removeImages | true | If true export checks for and removes "tainted" images that area lodead from …
137 …setting to delay the capturing of the chart ([skip to chapter](#delay-the-capturing-before-export))
138 exportFields | [] | If set, only fields in this array will be exported ( data export only )
139 exportTitles | false | Exchanges the data field names with it's dedicated title ( data export only )
141 exportSelection | false | Exports the current data selection only ( data export only )
142 …to convert date strings to date objects, uses by default charts dataDateFormat ( data export only )
143 dateFormat | YYYY-MM-DD | Formats the category field in given date format ( data export only )
150 ## Configuring export menu
152 Plugin includes a way to completely control what is displayed on export menu.
157 The top-level menu is configured via `menu` property under `export`. It should
164 Simple format codes will assume you need an export to that format.
168 Here's a sample of the simple menu setup that allows export to PNG, JPG and CSV:
171 "export": {
174 "class": "export-main",
180 The above will display a menu out of three options when you hover on export
187 When clicked the plugin will trigger export to a respective format.
208 "export": {
211 "class": "export-main",
236 "export": {
256 "export": {
270 … have an external legend you need to define the position where it should get placed in your export.
274 "export": {
290 "export": {
303 "export": {
356 dateFormat | "dateObject" | "dateObject"\|"string" | Whether to export dates as dates recognisable …
367 "export": {
376 Adding menu item to print the chart or map is as easy as adding export ones. You
380 "export": {
392 "export": {
404 ### Annotating the chart before export
408 By default each menu item triggers some kind of export. You can trigger an
412 "export": {
414 "class": "export-main",
433 "export": {
435 "class": "export-main",
443 "class": "export-drawing",
452 allowing to export the image into either PNG, JPG, SVG or PDF.
459 "export": {
461 "class": "export-main",
469 "class": "export-drawing",
498 "export": {
524 your global configuration, or pass it to the `capture` method if you export
529 "export": {
539 ### Delay the capturing before export
546 "export": {
563 seen on the regular chart but only the generated export. Use it to watermark
567 "export": {
611 format | A format to export chart/map to upon click (see below for a list of available formats)
617 …leName | A file name to use for generated export files (an extension will be appended to it based …
618 extension | File extension for the generated export file (uses format default if not defined)
619 mimeType | Internet media type to generate the export file (usses format default if not defined)
626 …| A numeric value to delay the capturing in seconds ([details](#delay-the-capturing-before-export))
627 exportFields | [] | If set, only fields in this array will be exported ( data export only )
628 exportTitles | Exchanges the data field names with it's dedicated title ( data export only )
629 columnNames | An object of key/value pairs to use as column names when exporting ( data export only…
630 exportSelection | Exports the current data selection only ( data export only )
631 …to convert date strings to date objects, uses by default charts dataDateFormat ( data export only )
632 dateFormat | Formats the category field in given date format ( data export only )
663 Here's an example of such export menu item:
735 ## Styling the export menu
737 The plugin comes with a default CSS file `export.css`. You just need to include
750 export menu items.
758 "export": {
773 state and `toJPG()` method to export the chart to JPEG format.
811 "export": {
820 "export": {
833 The export will also need relatively recent browsers.
855 https://github.com/amcharts/export
887 * Fixed: clipPath issue on SVG export (workaround until fabricJS handles that by themselves)
917 … `exportFields` option which is an array of fields to export in data formats (if you want to expor…
964 * Fixed: Issue with missing `export.css` which showed the canvas
1022 * Added: beforeCapture to be able to indicate the export process in some way
1030 … delay property to delay the capturing of the chart ([details](#delay-the-capturing-before-export))
1036 … Delay feature, which allows to delay the capturing ([details](#delay-the-capturing-before-export))
1052 * Fix: CSV export issue on date based charts
1056 * Fix: Print issue on safari which captured the actual page instead of the export
1064 * Added: IE9 base64 export
1084 * Considering classNamePrefix (dont't forget to adapt export.css)