Microsoft Chart control converts \n in file names to newline characters.
Posted
by xpda
on Stack Overflow
See other posts from Stack Overflow
or by xpda
Published on 2010-03-30T17:05:21Z
Indexed on
2010/03/30
17:23 UTC
Read the original article
Hit count: 438
I am using a Microsoft Chart control (system.windows.forms.datavisualization.charting.chart) in a Windows forms application, vb.net 2008. I use folder paths for the x values in a pie chart. Chart control converts a name like c:\newfolder
into c:[newline]ewfolder
. I tried adding a slash, making it c:\\newfolder
, but this only changes it to c:\[newline]ewfolder
. Is there a workaround for this behavior?
© Stack Overflow or respective owner