Problem Description
I used a dark theme and hope to make the page flipper style more prominent. How should I configure it?
Solution
Legend pager corresponds to the configuration of pager
.
- The pager text color can be configured through
pager.textStyle.fill
. - The page flipper button color can be configured through
pager.handler.style
. - The style of the page turning button in the unavailable state needs to be configured through
pager.handler.state.disable.fill
.
legends: {
visible: true,
pager:{
textStyle:{
fill:"rgb(170,170,170)"
},
handler:{
style:{
fill:'rgb(170,170,170)'
},
state:{
disable:{
fill:'rgb(47,69,84)'
}
}
}
}
},
Code Example
🔔 The following code can be copied and pasted into the editor to see the effect.
const spec = {
type: 'pie',
theme:"dark",
width: 300,
height: 300,
data: [
{
id: 'id0',
values: [
{ type: 'oxygen', value: '46.60' },
{ type: 'silicon', value: '27.72' },
{ type: 'aluminum', value: '8.13' },
{ type: 'iron', value: '5' },
{ type: 'calcium', value: '3.63' },
{ type: 'sodium', value: '2.83' },
{ type: 'potassium', value: '2.59' },
{ type: 'others', value: '3.5' }
]
}
],
outerRadius: 0.8,
innerRadius: 0.5,
padAngle: 0.6,
valueField: 'value',
categoryField: 'type',
legends: {
visible: true,
pager:{
textStyle:{
fill:"rgb(170,170,170)"
},
handler:{
style:{
fill:'rgb(170,170,170)'
},
state:{
disable:{
fill:'rgb(47,69,84)'
}
}
}
}
},
}
const vchart = new VChart((spec), { dom: CONTAINER_ID });
vchart.renderSync();
vchart.getCanvas().style.outline = '1px solid orange';
Results
Quote
- Related configuration: https://visactor.io/vchart/option/barChart-legends-discrete#pager
- github:https://github.com/VisActor/VChart
Top comments (0)