Need help with coloring the ButtonBox border (yellow lines).
this.chart
.addUIElement(UIElementBuilders.ButtonBox.setBackground(UIBackgrounds.Rectangle))
.setPosition({ x: 18, y: 99 })
.setOrigin(UIOrigins.RightTop)
.setText("Download PNG Image")
.setPadding({ top: 5, right: 20, bottom: 5, left: 20 })
.setButtonOffSize(0)
.setButtonOnSize(0)
.setDraggingMode(UIDraggingModes.notDraggable)
.onMouseClick((event) => {
this.chart.saveToFile(this.chart.getTitle())
})
}
The color of the
ButtonBox
can be edited by editing the background stroke style of the UI element.