Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
I am trying to create a dashed line chart but the lines remain solid in the plot area. Legend looks good. Any help would be appreciated. I am using sample stocks data here.
Below is my code
{
"config": {"view": {"continuousWidth": 400, "continuousHeight": 300}},
"data": {"name": "dataset"},
"mark": "line",
"encoding": {
"color": {"field": "symbol", "type": "nominal"},
"strokeDash": {"field": "symbol", "type": "nominal"},
"x": {"field": "date", "type": "temporal"},
"y": {"field": "price", "type": "quantitative"}
}
}
And below is what I am getting
This is what I am looking for
Solved! Go to Solution.
There is a setting in the Config that is providing a different default for the "line" mark. Delete this from the Config in the Deneb editor.
"line": {
"strokeWidth": 3,
"strokeCap": "round",
"strokeJoin": "round"
},
Pat
There is a setting in the Config that is providing a different default for the "line" mark. Delete this from the Config in the Deneb editor.
"line": {
"strokeWidth": 3,
"strokeCap": "round",
"strokeJoin": "round"
},
Pat
Thank You. It worked.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.