- Added examples for 40+ additional components including: - Accordion, ChartBar, Camera, Cols, Conform - Countdown, TimePassed, DOCXviewer, EXCELviewer, PDFviewer - DynamicColumn, IconBar, IconTextBar, FloatIconBar, FloatIconTextBar - GlbViewer, ChartHeatmap, Html, IconbarPage, NewWindow, Iframe, Icon - ChartKLine, ChartLine, ChartMap, MdWidget, Menu, Message, Error - MultipleStateImage, ChartPie, ProgressBar, QRCodeScan, ChartRadar - SysCamera, WidgetRecorder, SysAudioRecorder, SysVideoRecorder, Running - ChartScatter, VScrollPanel, HScrollPanel, Splitter, Svg, Tabular - DeletableLabel, Title1-6, Title15, Wterm - All examples use valid widgettype names registered with bricks.Factory.register - Each example demonstrates proper configuration and usage patterns
16 lines
284 B
XML
16 lines
284 B
XML
{
|
|
"widgettype": "ChartLine",
|
|
"options": {
|
|
"data": {
|
|
"labels": ["1月", "2月", "3月", "4月"],
|
|
"datasets": [
|
|
{
|
|
"label": "用户增长",
|
|
"data": [10, 25, 30, 45]
|
|
}
|
|
]
|
|
},
|
|
"width": "400px",
|
|
"height": "300px"
|
|
}
|
|
} |