我有一个具有外部 JSON 样式文件的 ZingChart(通过 cfchart)。如何在不单独设置的情况下为图表中的所有文本设置字体属性,例如字体系列、字体粗细、字体大小?
到目前为止我的 JSON 文件:
{
"graphset":[
{
"background-color":"white",
"font-family":"Courier New",
"scale-x":{
"label":{
"text":"Date"
}
},
"scale-y":{
"label":{
"text":"Score"
},
"markers":[
{
"type":"line",
"range":[75,76],
"line-color":"red"
},
{
"type":"line",
"range":[50,51],
"line-color":"yellow"
}
]
},
"tooltip" : {
"text" : "Score of %v on %k",
"background-color" : "#ff9900"
},
"plot":{
"marker":{
"type":"square"
}
}
}
]
}
我知道我可以为所有 scale-x "item"s 单独添加它:
"scale-x":{
"label":{
"text":"Date"
},
"item":{
"font-angle":320,
"font-family":"Arial",
"font-weight":"bold",
"font-size":13
}
}
但我想为图表中的所有文本添加它。