-
Hello, I am just checking about the progress of this issue. Let me know If you need my further assistance on this issue? Thank you for using Infragistics Components.
-
Hello , For the first issue “change axis labels from default white color” the solution is similar: categoryAxis.setLabelBrush( new SolidColorBrush(Color. RED )); Please let me know if you have any further questions.
-
Hello, Very nice application, I very like it . Chart is designed to display labels for the major lines of the axis, that is why you are seeing labels for “1”, “5” and etc. Thank you for using Infragistics Components.
-
Hello, From MSDN’s online help for the Font class: “…Windows Forms applications support TrueType fonts and have limited support for OpenType fonts. If you attempt to use a font that is not supported, or the font is not installed on the machine that is running the application, the Microsoft Sans Serif font will be substituted.”
-
Hello, I am just checking about the progress of this issue. Let me know If you need my further assistance on this issue? Thank you for using Infragistics Components.
-
Hello, I have tried your scenario, where for data source I’ve used DataTable object. My data table contains a column of type “Priority” (your enum type ), so when I click onto the column header in order to sort its cells , they are sorted correctly (Low-> Medium-> High ). Please see attached sample. So I assume that your column
-
Hello, What you could do in your case is to iterate columns' collection and to sum their width, so when this sum is more that the width of UltraGdid, this meant that the last column involved in this sum is part-visible. So you could use code like: int totalColWidth = 0; int colIndex = 0; while (totalColWidth < ultraGrid1.Width && colIndex
-
Hello, I am just checking about the progress of this issue. Let me know If you need my further assistance on this matter? Thank you for using Infragistics Components.
-
Hello, I am just checking about the progress of this issue. Let me know If you need my further assistance on this issue? Thank you for using Infragistics Components.
-
Hello , I have tested your scenario and LabelFormater works for all labels. Here is my simple implementation of CAtegoryAxix LabelFormater: CategoryXAxis categoryAxis= new CategoryXAxis(); categoryAxis.setDataSource(categories); // tell the axis about the data table categoryAxis.setLabelFormatter( new CategoryAxis.LabelFormatter() { public String format