Jump to content
Software FX Community

Can I set Point Value on Axis on Polar Chart manually?


User (Legacy)

Recommended Posts

I'm using Polar Chart to show score for each subjects.

my query is

"select subjectname, myscore, average from Scoreboard"

I displayed subjectname like [code1] and this is fine.

[code1]

int i = 0;

while(reader.Read())

{

Chart1.AxisX.Label[i] = reader["subjectname"].ToString();

}

And I want to display myscore and average too.

but I couldn't find property(members) for setting the values.

please show me how to do this.

Link to comment
Share on other sites

I am not sure I understand how you want to display this info. Can you post a 

sample result for your query along with an image showing the chart you need

?

--

Regards,

JC

Software FX Support

"Amagrammer" <amagrammer@hotmail.com> wrote in message

news:xujLRB%23vEHA.464@webserver3.softwarefx.com...

> I'm using Polar Chart to show score for each subjects.

>

> my query is

> "select subjectname, myscore, average from Scoreboard"

>

> I displayed subjectname like [code1] and this is fine.

>

> [code1]

> int i = 0;

> while(reader.Read())

> {

> Chart1.AxisX.Label[i] = reader["subjectname"].ToString();

> }

>

> And I want to display myscore and average too.

> but I couldn't find property(members) for setting the values.

>

> please show me how to do this.

>

Link to comment
Share on other sites

Actually, I wanted to display polar chart image by result followed.

But, polar chart didn't work correctly and shows wrong image.

my query is

"select subjectname, myscore, average from scoreboard"

and

the result is

subjectname myscore average

------------- ------- ------------

spelling 100 100.0

vocabulary 100 100.0

conversation 83 83.3

listening 88 75.0

grammer 100 100.0

accorgin to result,

myscore shows that 100 for spelling and 83 for conversation.

But Polar chart on attatched image, 83 for spelling and 100 for

conversation.

It's wrong result image.

In my guess, label goes countclockwise and each score goes clockwise.

THIS IS THE problem I met.

A few days ago, on newsgroup, i received reply that this issue has been

fixed

and downloads service pacek.

And I did but it still doesn't work.

Finally,

I want to manually display label for subjectnames and myscore, average value

for each subjects.

I tried to solve this problem using arrays for each scores.

This codes shows each subjectname label.

>> [code1]

>> int i = 0;

>> while(reader.Read())

>> {

>> Chart1.AxisX.Label[i] = reader["subjectname"].ToString();

>> }

It works.

These labels goes countclockwise as default, I guess.

now,

I want to display score and average same direction as subectname label.

that's countclockwise.

I made array for each myscore and average.

But I couldn't find member(property) for setting value.

I tried

Chart1.Value ....

Chart1.AxisX.PointLabel ....

etc...

But it doesn't work as I want.

It's a little bit hard to show what i want in English.

Anyway, I really need your help.

My client angrys.... ^^

Thanks.

"Software FX Support" <noreply> wrote in message

news:yv0fcbHwEHA.1120@webserver3.softwarefx.com...

>I am not sure I understand how you want to display this info. Can you post

>a

> sample result for your query along with an image showing the chart you

> need

> ?

>

> --

> Regards,

>

> JC

> Software FX Support

> "Amagrammer" <amagrammer@hotmail.com> wrote in message

> news:xujLRB%23vEHA.464@webserver3.softwarefx.com...

>> I'm using Polar Chart to show score for each subjects.

>>

>> my query is

>> "select subjectname, myscore, average from Scoreboard"

>>

>> I displayed subjectname like [code1] and this is fine.

>>

>> [code1]

>> int i = 0;

>> while(reader.Read())

>> {

>> Chart1.AxisX.Label[i] = reader["subjectname"].ToString();

>> }

>>

>> And I want to display myscore and average too.

>> but I couldn't find property(members) for setting the values.

>>

>> please show me how to do this.

>>

>

>

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...