mirror of
https://github.com/janickiy/yii2-nomer
synced 2025-03-09 15:39:59 +00:00
add files to project
This commit is contained in:
commit
5cac498444
3729 changed files with 836998 additions and 0 deletions
|
@ -0,0 +1,84 @@
|
|||
/**
|
||||
* This is a sample chart export config file. It is provided as a reference on
|
||||
* how miscelaneous items in export menu can be used and set up.
|
||||
*
|
||||
* You do not need to use this file. It contains default export menu options
|
||||
* that will be shown if you do not provide any "menu" in your export config.
|
||||
*
|
||||
* Please refer to README.md for more information.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* PDF-specfic configuration
|
||||
*/
|
||||
AmCharts.exportPDF = {
|
||||
"format": "PDF",
|
||||
"content": [ "Saved from:", window.location.href, {
|
||||
"image": "reference",
|
||||
"fit": [ 523.28, 769.89 ] // fit image to A4
|
||||
} ]
|
||||
};
|
||||
|
||||
/**
|
||||
* Print-specfic configuration
|
||||
*/
|
||||
AmCharts.exportPrint = {
|
||||
"format": "PRINT",
|
||||
"label": "Print"
|
||||
};
|
||||
|
||||
/**
|
||||
* Define main universal config
|
||||
*/
|
||||
AmCharts.exportCFG = {
|
||||
"enabled": true,
|
||||
"menu": [ {
|
||||
"class": "export-main",
|
||||
"label": "Export",
|
||||
"menu": [ {
|
||||
"label": "Download as ...",
|
||||
"menu": [ "PNG", "JPG", "SVG", AmCharts.exportPDF ]
|
||||
}, {
|
||||
"label": "Save data ...",
|
||||
"menu": [ "CSV", "XLSX", "JSON" ]
|
||||
}, {
|
||||
"label": "Annotate",
|
||||
"action": "draw"
|
||||
}, AmCharts.exportPrint ]
|
||||
} ],
|
||||
|
||||
"drawing": {
|
||||
"menu": [ {
|
||||
"class": "export-drawing",
|
||||
"menu": [ {
|
||||
"label": "Add ...",
|
||||
"menu": [ {
|
||||
"label": "Shape ...",
|
||||
"action": "draw.shapes"
|
||||
}, {
|
||||
"label": "Text",
|
||||
"action": "text"
|
||||
} ]
|
||||
}, {
|
||||
"label": "Change ...",
|
||||
"menu": [ {
|
||||
"label": "Mode ...",
|
||||
"action": "draw.modes"
|
||||
}, {
|
||||
"label": "Color ...",
|
||||
"action": "draw.colors"
|
||||
}, {
|
||||
"label": "Size ...",
|
||||
"action": "draw.widths"
|
||||
}, {
|
||||
"label": "Opactiy ...",
|
||||
"action": "draw.opacities"
|
||||
}, "UNDO", "REDO" ]
|
||||
}, {
|
||||
"label": "Download as...",
|
||||
"menu": [ "PNG", "JPG", "SVG", "PDF" ]
|
||||
}, "PRINT", "CANCEL" ]
|
||||
} ]
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue