Jump to content
Software FX Community

DataEditor Table Format Transposes When changing from Bottom to Right


User (Legacy)

Recommended Posts

My DataEditor transposes when I move the Docked position from Bottom to Right. Is there a way to maintain the format?

I have a chart that displays the following data:

Year Category Amount

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

2001 Sales $1000

2001 Cost $500

2001 Gross $500

2002 Sales $2000

2002 Cost $700

2002 Profit $1300

2003 Sales $3000

2003 Cost $2000

2003 Profit $1000

The years fall on the X Axis, Amount on the Y Axis, and Category is the Series.

When I position the DataEditor with dataEditor.Docked = SoftwareFX.ChartFX.Docked.Bottom; the data table appears below the chart as (note: this is what I want):

(Sample: Table 1)

2001 2002 2003

Sales $1000 $2000 $3000

Cost $500 $700 $2000

Profit $500 $1300 $2000

As soon as I position the DataEditor with dataEditor.Docked = SoftwareFX.ChartFX.Docked.Right; the data table is transposed and appears right of the chart as:

(Sample: Table 2)

Sales Cost Profit

Sales $1000 $500 $500

Cost $2000 $700 $1300

Profit $3000 $2000 $2000

Is there a way to have Table 1 display to the right of the chart?

Thanks,

Kent

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...