Jump to content
Software FX Community

Markershape bug


User (Legacy)

Recommended Posts

Francisco,  here's some code for you.  Thanks in advanced for your help!

private void Page_Load(object sender, System.EventArgs e)

{

// Chart1 Issue the 2nd point should be a triangle

Chart1.MainClient = false;

Chart1.HtmlTag = ".NET";

Chart1.OpenData(COD.Values,1,(int)COD.Unknown);

Chart1.OpenData(COD.XValues,1,(int)COD.Unknown);

Chart1.Value[0,0] = 1;

Chart1.XValue[0,0] = 0;

Chart1.Value[0,1] = 2;

Chart1.XValue[0,1] = 1;

Chart1.Point[0,0].MarkerShape = MarkerShape.Circle;

Chart1.Point[0,1].MarkerShape = MarkerShape.Triangle;

Chart1.CloseData(COD.Values);

Chart1.CloseData(COD.XValues);

// Chart2 Issue the 1st point should be a triangle

Chart2.MainClient = false;

Chart2.HtmlTag = ".NET";

Chart2.OpenData(COD.Values,1,(int)COD.Unknown);

Chart2.OpenData(COD.XValues,1,(int)COD.Unknown);

Chart2.Value[0,0] = 1;

Chart2.XValue[0,0] = 0;

Chart2.Point[0,0].MarkerShape = MarkerShape.Triangle;

Chart2.CloseData(COD.Values);

Chart2.CloseData(COD.XValues);

}

Best regards,

Gabe

"SoftwareFX Support" <noreply@softwarefx.com> wrote in message news:b7Vnqy5nFHA.356@webserver3.softwarefx.com...

> This could be related to a bug we fixed a while ago, without sample code I

> can not be sure but you may want to download the latest Service Pack

> otherwise please post the code to reproduce it and I will take a look at it.

>

> --

> Francisco Padron

> www.chartfx.com

>

>

Attachments.zip

Attachments.zip

Link to comment
Share on other sites

Here's the project as a zip.  

Bet regards,

Gabe

"Gabe A" <u@d.com> wrote in message news:v5jxXD1oFHA.4084@webserver3.softwarefx.com...

Francisco, here's some code for you. Thanks in advanced for your help!

Best regards,

Gabe

"SoftwareFX Support" <noreply@softwarefx.com> wrote in message news:b7Vnqy5nFHA.356@webserver3.softwarefx.com...

> This could be related to a bug we fixed a while ago, without sample code I

> can not be sure but you may want to download the latest Service Pack

> otherwise please post the code to reproduce it and I will take a look at it.

>

> --

> Francisco Padron

> www.chartfx.com

>

>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...