Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1730
thin series lines
posted

Hi,

I am rendering multiple series ScatterLine chart. On rendering some of the series lines appear very thin and some thick.

Here is the screenshot for reference https://www.dropbox.com/s/f6v8wyptua0y8na/ThinLines.png 

Parents
No Data
Reply
  • 1775
    posted

    Hi, sanjaysutar

    I was not able to replicate this behavior. Namely, configuring multiple scatter line series with identical settings and having the chart to produce lines with different thickness.

    I configured a chart with a code like this:

    1. .Series(series =>
    2. {
    3.     series
    4.         .ScatterLine("series1")
    5.         .XAxis("xAxis").YAxis("yAxis")
    6.         .XMemberPath(item => item.Index)
    7.         .YMemberPath(item => item.Value1);
    8.             
    9.     series
    10.         .ScatterLine("series2")
    11.         .XAxis("xAxis").YAxis("yAxis")
    12.         .XMemberPath(item => item.Index)
    13.         .YMemberPath(item => item.Value2);
    14.             
    15.     series
    16.         .ScatterLine("series3")
    17.         .XAxis("xAxis").YAxis("yAxis")
    18.         .XMemberPath(item => item.Index)
    19.         .YMemberPath(item => item.Value3);
    20.             
    21.     series
    22.         .ScatterLine("series4")
    23.         .XAxis("xAxis").YAxis("yAxis")
    24.         .XMemberPath(item => item.Index)
    25.         .YMemberPath(item => item.Value4);
    26.             
    27.     series
    28.         .ScatterLine("series5")
    29.         .XAxis("xAxis").YAxis("yAxis")
    30.         .XMemberPath(item => item.Index)
    31.         .YMemberPath(item => item.Value5);
    32. })

    and the result was the chart that you can see below.

    Please, provide the code you are using to configure chart series if possible.

    Cheers, Lazar

Children