VChart
VChart copied to clipboard
[Bug] invalidType not working in line chart
Version
1.2.4
Link to Minimal Reproduction
1.2.4
Steps to Reproduce
2, 8 未连接;
const spec = {
type: 'line',
invalidType: 'link',
data: {
values: [
{
time: '1:00',
value: null
},
{
time: '2:00',
value: 8
},
{
time: '4:00',
value: null
},
{
time: '6:00',
value: null
},
{
time: '8:00',
value: 14
},
{
time: '10:00',
value: null
},
{
time: '12:00',
value: 17
},
{
time: '14:00',
value: null
},
{
time: '16:00',
value: 16
},
{
time: '18:00',
value: null
}
]
},
xField: 'time',
yField: 'value'
};
const vchart = new VChart(spec, { dom: CONTAINER_ID });
vchart.renderSync();
// Just for the convenience of console debugging, DO NOT COPY!
window['vchart'] = vchart;
Current Behavior
n
Expected Behavior
n
Environment
- OS:
- Browser:
- Framework:
Any additional comments?
No response
vrender 底层渲染有问题
duplicated with #3436