Hi,
Where can I find Office2007Styles we see in the SamplesExplorer Visual Appearance section
Thanks
Sangeetha
Helllo Sangeetha,
Please take a look at the property "ViewStyle". Also you could set using a code:
ultraExplorerBar1.ViewStyle = Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarViewStyle.Office2007;
hi Georgi,
Thank you for your reply. I am looking for the office2007Styles used to style UltraChart. See below
Hello Sangeetha,
You could use the following line of code:
ultraChart1.ColorModel.ModelStyle = Infragistics.UltraChart.Shared.Styles.ColorModels.Office2007Style;
Another approach might be setting it from [Design] of your form:Please right click on the chart control and select the 'Load Preset' option from the opened menu.
Please do not hesitate to contact me if you need any additional assistance.
Thank You Boris, I see the styles I need on Load Preset.
is there anyway I can get a list of these styles?
Hi Sangeetha,
By default with installation of our controls, you recieved different chart`s Preset. The default path where you could find all Preset is:
C:\Users\Public\Documents\Infragistics\NetAdvantage 2012.1\Presets\CLR4x\Win\UltraChart\Standard
You could load Preset using:
1. at design time: please see attached video
2. using a code:
ultraChart1.LoadPreset();
Please let me know if you have any questions.
Regards
Great . Thank You Georgi. That was very helpful.
Thank You