Skip to main content

Posts

Showing posts with the label graphics in ax

Load data to chart in axapta

If you want to Load data to show as a  chart in axapta then you need to drag chart control to form group or tab then you can store data in to tables. You can use while loop to take data in looping and at the time of loop execution you can call data to graph. This is a simple method which you can call on init method of form to show data initially. void createGraph() { //SalesLine salesline; // graphics graphics,graphics1; int i,k; str month; // date createddate; #macrolib.ChartFx ; graphics1 = Graphics::newGraphicsTitlesLayout(ChartX, 100, 200,'Title', 'X', 'Y', 'z',1 ,1, 1, 1); graphics1.create(); graphics1.parmTitle(""); graphics1.parmTitleXAxis('Year'); graphics1.parmTitleYAxis('Weight(Kg.)'); ChartX.Chart3D(true); ChartX.toolBar(true); //graphics.Gallery(9); ChartX.Gallery(6); ChartX.DataEditor(true); ChartX.grid(1); ChartX.BackColor(16777215); ChartX.ToolBa