Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
NishPatel
Resolver II
Resolver II

Deneb Dashed Line Chart

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

 

NishPatel_0-1669404243840.png

 

This is what I am looking for

 

NishPatel_1-1669404295543.png

 

1 ACCEPTED SOLUTION
ppm1
Solution Sage
Solution Sage

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

 

Microsoft Employee

View solution in original post

2 REPLIES 2
ppm1
Solution Sage
Solution Sage

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

 

Microsoft Employee

Thank You. It worked.

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

Find out what's new and trending in the Fabric Community.

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.

Top Solution Authors