How to add ColumnChartWithIndicator custom widget in a dashboard?
Follow the below steps to publish the custom widget into the Bold BI application and use it.
- Download the ColumnChartWithIndicator custom widget.
- Publish the custom widget to the Bold BI application by following the steps mentioned in the help link.
- Once
you publish the custom widget, the ColumnChartWithIndicator
custom widget will appear under
the Miscellaneous section of the designer panel as in the following image.
- Drag and drop the widget and configure the data. The ColumnChartWithIndicator custom widget will render as in the following image.
Improvement in the ColumnChartWithIndicator Custom Widget
Add new improvements such as improving the UI of the ColumnChartWithIndicator Custom widget by making changes in the sourcefile.js file.
To debug and make changes in the custom widget, follow these steps:
Unpack the ColumnChartWithIndicator custom widget (ColumnChartWithIndicator .bicw) by following the steps in the mentioned link.
Add the debugger to the sourcefile.js file's init() method. Also, add the needed changes in the sourcefile.js file.
Publish the custom widget by following the steps in this link.
Now, open the new dashboard in the Bold BI designer.
Open the Developer Tools in the Browser.
Drag and drop the ColumnChartWithIndicator Custom Widget in the Designer.
Now, the debugger will trigger.
Also, the ColumnChartWithIndicator Custom Widget is developed using the syncfusion Chart component. For any new options, check the available API in the UG link.
Methods and use cases in the ColumnChartWithIndicator source file.
Methods
|
Use case
|
init()
|
This method will trigger when the ColumnChartWithIndicator
custom widget is dragged and dropped in the designer or initialized in the
viewer.
|
update()
|
This method will trigger when the widget is resized, data is
configured in the widget, and when the changes are made in the property
panel.
|