how to remove the blue part?
import altair as alt
from vega_datasets import data
iris = data.iris()
alt.Chart(iris).mark_point().encode(
x='petalWidth',
y='petalLength',
color='species'
).configure_axis(
grid=False
).configure_view(
strokeWidth=0
)
I have spent a whole afternoon to find a proper syntax for removing it, there are too many parameters and I am totally confused. Thanks.


