|
Query 1: Firstly is it possible to have a diverging bar chart? This means that inside that column one would need to have two values and a bar to visualize the data. |
You can load the bar chart inside the column using CellTemplate property in GridColumn like below code example.
XAML
Please refer the below UG link for more details about that.
| |
|
Query 2. Can one clone a window?
Query 3. Can one clone a column (a combined command of copy and paste)?
|
We cannot understood your requirement clearly, kindly please share your requirement like screenshot or video illustration with more details about your requirement that will be helpful to provide appropriate solution at earliest. We will happy to assist you. | |
|
Query 4. Can one have unbound rows on the bottom and on the top? And can they have a show hide button for each column? This is to create some column based statistical analysis. |
You can place the UnboundRow in SfDataGrid at top and bottom position like below code example.
You can refer the below UG link for more details about UnboundRow
| |
|
Query 5. Can a column have its own busy indicator? |
You can load the busy indicator in column using CellTemplate property like below code example.
XAML
|
The "clone" command would do them both. I think the previous example satisfies my requirements.
The "clone" window is the same principle. A ribbon window with the possibility through a command duplicate itself into an exactly same window thus having two similar windows. I'm imagining that that would be more of a serialization matter right? Serialize the window and run a command to create it like the serialization.
Thank you once again Gnanasownthari,
Kind Regards,
Helder
Thank You very much for your reply.
I will provide the clarification to the general UI.
The requirements for the UI are very similar to the sample you provide with portfolio analyzer.
One Ribbon Control without the backstage button. In the minimized state.
The Ribbon Control will contain general options, no QAT.
ContextTabGroups will provide specific options depending on the column selected from Sfdatagrid.
Minimize/Maximize the ribbon is located in RibbonTabPanel.
The RibbonWindow will also display a status bar with buttons.
Below the area is controlled by Docking Manager.
Two stack Panels.
One with only the AutoPin option.First Panel will contain buttons.
The other has a Sfdatagrid without header (no options whatsoever to close minimize or Hide)from the docking manager.
Please see the attatchment.
Thank you kindly,
Best Regards
|
S No |
Customer Query |
Response | |
|
1. |
One Ribbon Control without the backstage button. In the minimized state.
|
To hide Backstage Button in Ribbon control. In our sample, we have done in loaded , similary you can use the following code exampl as desired.
C#
| |
|
2. |
The Ribbon Control will contain general options, no QAT.
|
In our sample, we have not added the QAT items, but we could not understand what do you mean by the general options. Can you please brief about this requirement. | |
|
3. |
ContextTabGroups will provide specific options depending on the column selected from Sfdatagrid.
|
To open the ContextTabGroup on selecting the desired columns cell, you can use the below code example:
C#
| |
|
4. |
Minimize/Maximize the ribbon is located in RibbonTabPanel.
|
You can add the button in RibbonTab panel to maximize and maximize the ribbon. The same has been demonstrated in the following code example:
C#
| |
|
5. |
The RibbonWindow will also display a status bar with buttons.
|
To display a status bar with buttons in the Ribbon , you can use the following code example.
|
|
S No |
Query |
Response |
|
1. |
One with only the AutoPin option.First Panel will contain buttons. |
To show DockingManger to show autopin option, set the DockingState as Autohide
syncfusion:DockingManager.State="AutoHidden"
|
|
2. |
The other has a Sfdatagrid without header (no options whatsoever to close minimize or Hide)from the docking manager. |
To remove the header for DockingManager content, you can use the following property.
syncfusion:DockingManager.NoHeader="True"
Also to hide header for SfDataGrid, you can use HeaderRowHeight property to Zero.
|