Advanced Forum Search Results
-
Hi Community,
I am trying to achieve a hierarchical axis description/labels in a chart.
For example if iwould like to display sales volume of certain produts.
Product PC | Photo | DVD ...
-
Hi Jonathan,
would it be possible to provide a quick example?
Thanks & Best Regards,
Andreas
-
Hi Community,
is it possible to design a chart legend that has multiple columns?
If yes - is it also possible to automatically distribute the legend entries between the columns?
Thanks & Best Regards,
Andreas
-
Hi Amanda,
that was suggested by Dan already but it does not work for me (returns 0) as the CurrentCellChanged event does not fire (only once when the DataGrid is fully loaded). I assume this is because I have only TextBlocks in my DataGrid that are generally not changeable (compared to e.g. TextBoxes).
Regards, Andreas
-
Strange - the CurrentCellChanged event on the DataGrid is only raised once the DataGrid is loaded - not when it is clicked. Maybe this is because I do not use TextBoxes (or other "interactive" controls) but simple TextBlocks?
Thanks also for the hover concept. I will probably not use it - but it is an inspiring concept giving each ...
-
Hi Dan, Gunjan,
thanks for your quick replies. The problem is that I do not modify the cell - so I cannot use the CurrentCellChanged event. I want to identify the cell (which is just used for displaying data) either on mouseclick - or even on "hover". This does not seem to work with the column - only with the row.
For now, I calculate ...
-
Hi All,
I want to identify a cell by its row (as int) and column (also as int) when I click in the DataGrid. So far, I managed to identify the row with
int selRow = this.dataGridControl.SelectedIndex;
but how can I identify the column number?
Thanks & Best Regards,
Andreas
-
Thanks Mark,
it works perfectly fine as a standalone XAML - but it does not seem to work in our framework. Very strange, but thanks for the answer - I'll use this as a basis for the new stuff I'm trying. The trick was replacing the StackPanel with a Grid and then defining two columns - one with width "Auto" the other one with ...
-
Hi All,
I want to create a page that fills the whole available browser window. On top there should be a toolbar below the toolbar an area with the content itself on the left side and a collapseable navigation on the right. The content should always use most of the available space on the screen. Unfortunately my XAML doesn't work. Experimented ...
-
Hi,
Figured it out in the meantime - so in case someone has similar problems here is my solution:
I save the original layout for each column + the original width of the datagrid + the sum of all columnwidths.
Thanks to http://jvdveen.blogspot.com/2008/12/storing-silverlight-datagrid-settings.html for the idea.
The difference between the sum ...