PortaleOrdiniGruppo/PortalStudio/propertiesDescriptions.js
2025-03-24 15:28:26 +01:00

34 lines
569 B
JavaScript

var descriptionList = [];
descriptionList["portlet"] = [];
descriptionList["portlet"]["chart"] = [];
descriptionList["portlet"]["chart"] = {
data_order: {
desc: "",
link: ""
},
downloadlist: {
desc: "The property allows the user to export the inset.",
link: ""
},
chart_type: {
desc: "Set category chart type",
link: "prova"
}
}
/* exported getPropertyDescriptionObj */
function getPropertyDescriptionObj(tool,obj,prop){
return descriptionList[tool][obj][prop];
}
/* exported getDescList */
function getDescList(){
return descriptionList;
}