{
embed.vega.timeFormatLocale(locale);
embed.vega.formatLocale(locale);
return vl.markCircle()
.config({padding: {"left": 5, "top": 5, "right": 50, "bottom": 50}})
.data(
vl.csv().values('a,b,c\n20394.4,234878,334983\n43387.2,3425,689373.2')
)
.encode(
vl.x().fieldQ('a'),
vl.y().fieldQ('b').axis({tickMinStep: 1}),
vl.size().fieldQ('c').legend({titleAnchor: 'middle'}),
vl.tooltip(['a', 'b'])
)
.render()
}