User (Legacy) Posted April 14, 2005 Report Share Posted April 14, 2005 See the attached. I've turned off the Markers with .MarkerShape = MarkerShape.None; But they still show in the legend? How do I turn them off in the legend? Link to comment Share on other sites More sharing options...
Software FX Posted April 15, 2005 Report Share Posted April 15, 2005 Can you check the version of ChartFX.Internet.Dll in your web application's bin folder? I tried both setting the MarkerShape on a global basis and a per-series basis and I got the right chart (no markers in legend window). Also can you try to duplicate this issue in a simple page? The page I wrote (it does not need to be a webform) was something like <%@ Page Language="C#" %> <%@ Import Namespace="SoftwareFX.ChartFX" %> <%@ Import Namespace="SoftwareFX.ChartFX.Internet.Server" %> <html> <body> <% Chart chart1 = new Chart(this); chart1.SerLeg[0] = "ABC"; chart1.SerLeg[1] = "DEF"; chart1.SerLegBox = true; chart1.MarkerShape = MarkerShape.None; chart1.Gallery = Gallery.Lines; %> <%= chart1.GetHtmlTag("400","400","png") %> </body> </html> "Jeff Lundgren" <jlundgren@retreon.com.spamremove> wrote in message news:p0P8EfTQFHA.1584@webserver3.softwarefx.com... > See the attached. > > I've turned off the Markers with > .MarkerShape = MarkerShape.None; > > But they still show in the legend? How do I turn them off in the legend? > > > Attachments.zip Attachments.zip Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.