How to draw thicker lines in mschart


little thunder

I have a line connecting different points. I have dynamically generated the row. I want to be a line thinker. My code is as follows:

  //now lets plot lines between tow points.
 Series newLineSeries = new Series("LineSeries" + index);

 //--If the series already present lets remove from the chart 

 if(chart1.Series.IndexOf(newLineSeries.Name) != -1)
  {
  chart1.Series.RemoveAt(chart1.Series.IndexOf(newLineSeries.Name));
  } 
  newLineSeries.ChartType = SeriesChartType.Line;
   newLineSeries.MarkerBorderWidth.Equals(15);
  newLineSeries.MarkerSize.Equals(35);

 newLineSeries.Color = menuStripNodeInfoValues[index].colorValue;  
 newLineSeries.ToolTip = tooltipString;//tooltipString is cal. dynamically

newLineSeries.Points.Add(new DataPoint(valueX1,valueY1)); //valueX1,valueY1 are some dynamically calculated values
newLineSeries.Points.Add(new DataPoint(valueX2,valueY2));//These are also also dynamically calculated
chart1.Series.Add(newLineSeries);

This successfully generates a line, but even if I change the MarkerSize property, the size of the line does not change.

Roman

have you tried chart1.Series[i].BorderWidth = 5it? If the thickness is expressed by size

Related


How to draw thicker lines in mschart

little thunder I have a line connecting different points. I have dynamically generated the row. I want to be a line thinker. My code is as follows: //now lets plot lines between tow points. Series newLineSeries = new Series("LineSeries" + index); //--If t

How to make two lines thicker in Chart JS

Stijn Westerhof: As you can see in the fiddle , I have used Chart JS to make the chart . There are three lines in this chart. I'm going to make the orange and yellow lines thicker than they are. The green dotted line is good. I searched everywhere and tried a

How to make two lines thicker in Chart JS

Stijn Westerhof: As you can see in the fiddle , I have used Chart JS to make the chart . There are three lines in this chart. I'm going to make the orange and yellow lines thicker than they are. The green dotted line is good. I searched everywhere and tried a

How to make thicker stem lines in Matplolib

Yanping Island Crab I want to make thicker stemming in python when using plt.stem. this is my code import matplotlib.pyplot as plt import numpy as np N = 20 n = np.arange(0, 2*N, 1) x = np.exp(-n/N)*np.exp(1j * 2*np.pi/N*n) plt.stem(n,x.real) plt.show()

How to make two lines thicker in Chart JS

Stijn Westerhof As you can see in my fiddle , I have made the chart using Chart JS . There are three lines in this chart. I'm going to make the orange and yellow lines thicker than they are. The green dotted line means it is correct. I searched everywhere and

How to make two lines thicker in Chart JS

Stijn Westerhof: As you can see in the fiddle , I have used Chart JS to make the chart . There are three lines in this chart. I'm going to make the orange and yellow lines thicker than they are. The green dotted line is good. I searched everywhere and tried a

How to make thicker stem lines in Matplolib

Yanping Island Crab I want to make thicker stemming in python when using plt.stem. this is my code import matplotlib.pyplot as plt import numpy as np N = 20 n = np.arange(0, 2*N, 1) x = np.exp(-n/N)*np.exp(1j * 2*np.pi/N*n) plt.stem(n,x.real) plt.show()

How to draw stripline diagonally using MSChart?

username Adjust MS charts. I have successfully drawn a dynamic chart but need to draw a line (yellow) on the chart. How would I draw the (yellow) line. I have X and Y values. Chariot Here is an example you can use: // we create a general LineAnnotation, ie not

How to draw stripline diagonally using MSChart?

username Adjust MS charts. I have successfully drawn a dynamic chart but need to draw a line (yellow) on the chart. How would I draw the (yellow) line. I have X and Y values. Chariot Here is an example you can use: // we create a general LineAnnotation, ie not

Thicker lines and colors in androidplot

Shlomo Absak I'm using androidplot in a wind application and I want the lines at (eg, because they change depending on the wind) 1,3,5,7 to make the horizontal lines different colors (all 4 lines of the same color) and thicker. For the series I use: dynamicPlo

Sublime Text: How To Make Vertical Leader Lines Thicker

Santosh Yedidi I am using sublime text. I use the following in my settings to show indented lines: "indent_guide_options": [ "draw_normal", "draw_active" ], and changed the colors with the following in the color theme file: <key>guide<

Sublime Text: How To Make Vertical Leader Lines Thicker

Santosh Yedidi I am using sublime text. I use the following in my settings to show indented lines: "indent_guide_options": [ "draw_normal", "draw_active" ], and changed the colors with the following in the color theme file: <key>guide<

How to draw lines in Java

Karoline Brynildsen: I was wondering if there is a function in Java to draw a line from coordinates (x1,x2) to (y1,y2)? What I want to do is something like this: drawLine(x1, x2, x3, x4); And I'd like to be able to do this at any point in the code so that mul

How to draw lines on plots?

Bubisi I'm trying to draw a line on a line, but the plot doesn't even show. I have checked the values of xPoints and yPoints and they exist. what is the reason? import matplotlib.pyplot as plt import numpy as np def calculateFuncFor(x): ePower = np.e**np.

How to draw lines in Java

Karoline Brynildsen: I was wondering if there is a function in Java to draw a line from coordinates (x1,x2) to (y1,y2)? What I want to do is something like this: drawLine(x1, x2, x3, x4); And I'd like to be able to do this at any point in the code so that mul

How to draw lines on plots?

Bubisi I'm trying to draw a line on a line, but the plot doesn't even show. I have checked the values of xPoints and yPoints and they exist. what is the reason? import matplotlib.pyplot as plt import numpy as np def calculateFuncFor(x): ePower = np.e**np.

How to draw "curved" lines?

Daniel The problem is simple, as the title says. Tizen's documentation is really unreliable on this topic (among others). For example, as they describe here : Draw SVG paths. You can use the api in efl_gfx_utils.h to construct the path ... efl_gfx_path_append_

How to draw lines on canvas

Arun Kumar I want to draw some lines inside a circle on canvas in the following way. I don't know how to draw lines like below. But I have basic knowledge of drawing lines and arcs on canvas. how to proceed? username You could use a bezier curve with control p

How to draw lines on canvas?

monkey 334 I've read some tutorials on the internet but I can't seem to find any way to show me the lines Can someone help? i try to do p = Canvas(height = 600, width = 800).place(x=0,y=0) p.create_rectangle(50, 25, 150, 75, fill="blue") Unfortunately, it did

How to draw lines in Java

Karoline Brynildsen: I was wondering if there is a function in Java to draw a line from coordinates (x1,x2) to (y1,y2)? What I want to do is something like this: drawLine(x1, x2, x3, x4); And I'd like to be able to do this at any point in the code so that mul

How to draw lines on plots?

Bubisi I'm trying to draw a line on a line, but the plot doesn't even show. I have checked the values of xPoints and yPoints and they exist. what is the reason? import matplotlib.pyplot as plt import numpy as np def calculateFuncFor(x): ePower = np.e**np.

How to draw "curved" lines?

Daniel The problem is simple, as the title says. Tizen's documentation is really unreliable on this topic (among others). For example, as they describe here : Draw SVG paths. You can use the api in efl_gfx_utils.h to construct the path ... efl_gfx_path_append_

How to get thicker underline?

Vader I have some bold text and would like to have it also bold where underlined. HTML <p>Home Page</p> CSS p { text-decoration: underline; } jsFiddle I've tried several things, but it doesn't work well. Tony Barnes You can use border-bottomsome padding:

How to get thicker underline?

Vader I have some bold text and would like to have it also bold where underlined. HTML <p>Home Page</p> CSS p { text-decoration: underline; } jsFiddle I've tried several things, but it doesn't work well. Tony Barnes You can use border-bottomsome padding:

CSS: How to draw vertical lines with tabbed lines

Judas I have CSS homework. My job is to draw bus routes. Here is my html: <div class="city-group"> <div class="city-name-wrapper"> <div class="city-name-line"> <div class="city-name">City 1</div> </div> </div> <div class="stop-list"> <

CSS: How to draw vertical lines with tabbed lines

Judas I have CSS homework. My job is to draw bus routes. Here is my html: <div class="city-group"> <div class="city-name-wrapper"> <div class="city-name-line"> <div class="city-name">City 1</div> </div> </div> <div class="stop-list"> <

CSS: How to draw vertical lines with tabbed lines

Judas I have CSS homework. My job is to draw bus routes. Here is my html: <div class="city-group"> <div class="city-name-wrapper"> <div class="city-name-line"> <div class="city-name">City 1</div> </div> </div> <div class="stop-list"> <

How to draw lines on an image in OpenCV?

Rahul: If I have polar coordinates of a line, how can I draw it on an image in OpenCV and python? LineThe function takes 2 points, but only draws line segments. I want to draw a line from one edge of an image to the other. Robert Caspary: Just count 2 points.