我一直在尝试自定义 Shinobicharts 中的工具提示,但它无法正常工作。我猜这是我添加造成问题的十字准线样式的方式。我最终只是想自定义工具提示的标签,因为一旦我添加了自定义十字线样式,它就变成了全黑。
无论如何,我的代码如下所示:
let crossHairStyle = SChartCrosshairStyle()
crossHairStyle.lineColor = UIColor.whiteColor()
let chart = ShinobiChart(frame: view.bounds)
chart.licenseKey = ""
chart.datasource = self
chart.delegate = self
chart.gestureDoubleTapResetsZoom = true
chart.frame = CGRectMake(0, 0,width,0.9 * height)
chart.crosshair.style = crossHairStyle
chart.crosshair.tooltip.backgroundColor = UIColor.whiteColor()
chart.crosshair.tooltip.label.backgroundColor = UIColor.whiteColor()
chart.applyTheme(customTheme)
正如我所说,我无法设置标签的背景色,我不知道如何进行。
任何建议,将不胜感激。