如何将表盘指针自定义为融合图表中的箭头?
How to customize dial pointer to an arrow in fusion charts?
我正在 angular 仪表盘中搜索融合图表表盘指针的定制。我已经浏览了他们文档中提供的所有选项,但其中 none 用于自定义拨号指针。我不确定直接通过选项是否可行。
Please refer below image i.e. what I want to achieve.
我想我需要修改库代码,这会很困难。
如果有任何替代方案,请提出建议。
有意思。试试这个 hack。
"dials": {
"dial": [{
"radius": "70",
"baseWidth": "40",
"baseRadius": "25",
"topWidth": "1",
"rearExtension": "0",
"value": "67"
},
{
"radius": "48",
"bgColor": "ffffff",
"borderAlpha": "0",
"baseWidth": "45",
"baseRadius": "25",
"topWidth": "40",
"rearExtension": "2",
"value": "67",
"showValue": "0"
}]
}
对于这种动态定制,您还应该探索他们的注释 API。
我正在 angular 仪表盘中搜索融合图表表盘指针的定制。我已经浏览了他们文档中提供的所有选项,但其中 none 用于自定义拨号指针。我不确定直接通过选项是否可行。
Please refer below image i.e. what I want to achieve.
我想我需要修改库代码,这会很困难。
如果有任何替代方案,请提出建议。
有意思。试试这个 hack。
"dials": {
"dial": [{
"radius": "70",
"baseWidth": "40",
"baseRadius": "25",
"topWidth": "1",
"rearExtension": "0",
"value": "67"
},
{
"radius": "48",
"bgColor": "ffffff",
"borderAlpha": "0",
"baseWidth": "45",
"baseRadius": "25",
"topWidth": "40",
"rearExtension": "2",
"value": "67",
"showValue": "0"
}]
}
对于这种动态定制,您还应该探索他们的注释 API。