Line width in charts

mebcs

Member
Licensed User
Longtime User
Can the line width in the charts be made more visible. See the attached image.
 

Attachments

  • afdi002.jpg
    afdi002.jpg
    30 KB · Views: 194

Mahares

Expert
Licensed User
Longtime User
Yes. Go to the Charts code module and change this line. Read my comment:
B4X:
LD.Canvas.DrawLine(G.GI.originX + G.GI.intervalX * (i - 1), calcPointToPixel(py2(a), G), G.GI.originX + G.GI.intervalX * i, calcPointToPixel(point.YArray(a), G), LD.LinesColors.Get(a), 3dip) 'Mahares changed line width from 2dip to 3 dip to make line thicker
 
Upvote 0
Top