mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
parent
367d4a5f14
commit
8681911998
92 changed files with 7793 additions and 2 deletions
75
api-generator/components/chart.js
Normal file
75
api-generator/components/chart.js
Normal file
|
@ -0,0 +1,75 @@
|
|||
const ChartProps = [
|
||||
{
|
||||
name: "type",
|
||||
type: "string",
|
||||
default: "null",
|
||||
description: "Type of the chart."
|
||||
},
|
||||
{
|
||||
name: "data",
|
||||
type: "any",
|
||||
default: "null",
|
||||
description: "Data to display."
|
||||
},
|
||||
{
|
||||
name: "options",
|
||||
type: "any",
|
||||
default: "null",
|
||||
description: "Options to customize the chart."
|
||||
},
|
||||
{
|
||||
name: "width",
|
||||
type: "number",
|
||||
default: "300",
|
||||
description: "Width of the chart in non-responsive mode."
|
||||
},
|
||||
{
|
||||
name: "height",
|
||||
type: "number",
|
||||
default: "150",
|
||||
description: "Height of the chart in non-responsive mode."
|
||||
}
|
||||
];
|
||||
|
||||
const ChartEvents = [
|
||||
{
|
||||
name: "select",
|
||||
description: "Callback to invoke when a tab gets expanded.",
|
||||
arguments: [
|
||||
{
|
||||
name: "originalEvent",
|
||||
type: "object",
|
||||
description: "Browser event"
|
||||
},
|
||||
{
|
||||
name: "dataset",
|
||||
type: "object",
|
||||
description: "Selected dataset"
|
||||
},
|
||||
{
|
||||
name: "element",
|
||||
type: "object",
|
||||
description: "Selected element"
|
||||
},
|
||||
{
|
||||
name: "element._datasetIndex",
|
||||
type: "number",
|
||||
description: "Index of the dataset in data"
|
||||
},
|
||||
{
|
||||
name: "element._index",
|
||||
type: "number",
|
||||
description: "Index of the data in dataset"
|
||||
}
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
module.exports = {
|
||||
chart: {
|
||||
name: "Chart",
|
||||
description: "Chart components are based on Charts.js, an open source HTML5 based charting library.",
|
||||
props: ChartProps,
|
||||
events: ChartEvents
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue