Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

.net - How do I offset the labels in a System.Windows.Forms.DataVisualization.Charting.Chart? -


i'm trying display results of fft 128 bins, when following add new data:

datavisualization::charting::series^ series = m_chart->series[0]; series->points->databindy(m_databuffer); m_chart->refresh(); 

...it labels spectra 1 128. need labels read 0 127. what's easiest way achieve this?

just in case else wants along these lines, can can using custom labels:

system::windows::forms::datavisualization::charting::chartarea^ chartarea1 = this->m_chart->chartareas[0]; for( int = 0; < 128; += 16 ) {     system::windows::forms::datavisualization::charting::customlabel^  customlabel1 = (gcnew system::windows::forms::datavisualization::charting::customlabel());     customlabel1->fromposition = i-1.5;     customlabel1->text = (i).tostring();     customlabel1->toposition = i+1.5;     chartarea1->axisx->customlabels->add(customlabel1); } 

Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -