mfc >> How to give x axis titles dynamically in a mschart---bar char
by Harish » Thu, 27 Nov 2003 21:18:21 GMT
Hi,
I need to know how to give x axis title dynamically in a barchart.
now i give that one at design time...problem is that when the user minimize
the window the alignment with the titles and corresponding bar is not proper
thanks,
Harish
Similar Threads
1. MSChart reverse Y-axis
Does anybody know how to reverse the Y-axis in the MSChart object?
Regards,
Michiel
2. MSChart Bar Type
3. Dynamically changing the WizardSheet title
Hi,
I want to change the title of WizardSheet dynamically.
Means I want to display some variable value as a wizard title.
I tried to do it by
SetWindowText but it don't work.
My propertysheet class is derived from CPropertySheetEx.
CPropertySheetEx. has one variable
PROPSHEETHEADER m_psh;
I tried to set m_psh.pszCaption = "my caption";
but it doesn't work :(
Can u pls help me out to solve this ?
-Manjiri
4. forcing parent window's title bar to remain active - CSharp/C#
5. Title Bar Double Clicking
Double clicking the title bar to toggle a form between full screen
size and the previous size is a great feature.
Can someone please explain how to programmatically double click the
title bar?
The form I am working with does not show any of the sizing, minimize,
or close buttons in the title bar. This clean appearance is preferred
for this specific application ... so hopefully the solution is
specific to the title bar only and not the sizing button. If you can
programmatically call the functionality of the sizing button without
it being shown ... that may be a good approach?
Hopefully the above can be done within C# without usage of MFC. If MFC
is required ... any favorite texts for teaching that topic would be
appreciated greatly.
More specifically, I want to only programmatically double click the
title bar if the form is currently sized to full screen; however, I am
hopeful that I can implement the screen size testing once I learn how
to programmatically double click the title bar.
Thank you in advance.
I have Googled for some clues on how to perform the above. If you can
easily find this information through a search procedure ... please
also explain your search methodology. That will be hugely helpful too!
Have a great day. :)
-- Tom
6. Moving a Form without Title bar. - CSharp/C#
7. Title bar on DataGrid in WPF
I am doing a simple datagrid that is autogenerated and it works fine except
the column titles are scewed.
This seems to be because there is a little rectangle with a down arrow that
is about an inch and a half wide that causes all the other columns pushed to
the right and not over the correct columns.
In my xaml, I have:
<WrapPanel Grid.Row="4">
<my:DataGrid Height="200" Name="grdData" Width="469"
ItemsSource="{Binding}" />
</WrapPanel>
And my c# code is:
private void CollectionSample()
{
ProductManager mgr = new ProductManager();
try
{
grdData.ItemsSource = mgr.BuildCollection();
}
catch (Exception exc)
{
}
}
Where the mgr.BuildCollection() returns a collection.
It displays fine except for the column headers.
Thanks,
Tom
8. hide caption/title bar - CSharp/C#