Author |
Topic  |
|
Sumin-Park
21 Posts |
Posted - 05 Feb 2009 : 21:16:32
|
good morning, today......
I use "chartLabel3.TextRotation = 90" but ...I dont Change the ChartText.. What is the problom?
I use WindowsMobile 6.0 . is this a problem?
Font theMarkerFont = new Font("Microsoft Sans Serif", 8, FontStyle.Bold); ChartAttribute markAttrib1 = new ChartAttribute(Color.Yellow, 1, DashStyle.Solid, Color.Yellow); Marker amarker1 = new Marker(pTransform1, ChartObj.MARKER_VLINE, x1[20], yAxis.AxisMin, yAxis.AxisMax, ChartObj.PHYSICAL_COORDINATES); markAttrib1 = new ChartAttribute(Color.Yellow, 1, DashStyle.Solid, Color.Yellow); amarker1.SetColor(Color.Gold); amarker1.SetChartObjAttributes(markAttrib1); this.AddChartObject(amarker1);
ChartText chartLabel3 = new ChartText(pTransform1, theMarkerFont, "Co57", y2[10], ( yAxis.AxisMin+yAxis.AxisMax) / 2, ChartObj.PHYS_POS);
chartLabel3.SetColor(Color.Yellow); //chartLabel3.SetYJust(ChartObj.AXIS_CENTER); chartLabel3.TextRotation = 90; //chartLabel3.SetTextRotation(180); chartVu.AddChartObject(chartLabel3);
f |
|
quinncurtis
1164 Posts |
Posted - 05 Feb 2009 : 23:39:26
|
You cannot rotate text under .Net CF. This is a limitation of .Net CF, not our software. This is stated many times in the manual. Rotated text is only supported under regular .Net. |
 |
|
Sumin-Park
21 Posts |
Posted - 05 Feb 2009 : 23:55:56
|
quote: Originally posted by quinncurtis
You cannot rotate text under .Net CF. This is a limitation of .Net CF, not our software. This is stated many times in the manual. Rotated text is only supported under regular .Net.
thank you
f |
 |
|
|
Topic  |
|
|
|