Jump to content
Software FX Community

Adjusting the stroke thickness for line chart of a built in motif


cvarro

Recommended Posts

 What is the best approach to go about changing the StrokeThickness of the line in a line chart when using a built in motif from ChartFX.WPF.Motifs ?

 The overall styles provided are a good fit for us, we simply want to increase the line thickness in a few of the line chart styles. 

 Any suggestions about how to go about doing this?

 Thanks,

-Chris

Link to comment
Share on other sites

Although different motifs might default to different line thicknesses you can override those by using the SeriesAttributes either globally (AllSeries) or on a per-series basis.

  <cfx:Chart.AllSeries>

  <cfx:AllSeriesAttributes StrokeThickness="5"/>

  </cfx:Chart.AllSeries>

Note that this will also affect other gallery types as their templates will typically honor stroke thickness, e.g. bars will have a wider border.

We do not have a way to easily modify the thickness for the lines only. You could alternatively borrow the template for the line, adjust the default line thickness and set it using the template property of the SeriesAttributes class.

Regards,

JuanC

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...