I'm beginner in asp.net and i want use devexpress web chart control in my project,in this link:
THIS
but up link dont write any code or tutorial to how to use that chart in project,how can I write simple code to use up chart in my project?
You can add a ChartControl to your ASP.NET project as any other controls. Just add a WebForm to your project and drag-drop a WebChartControl from Toolbox onto the WebForm. To add panes to a chart, add several panes to your Diagram:
<dxcharts:XYDiagram>
...
<Panes>
<dxcharts:XYDiagramPane PaneID="0" Name="Pane 1"></dxcharts:XYDiagramPane>
<dxcharts:XYDiagramPane PaneID="1" Weight="1.5" Name="Pane 2"></dxcharts:XYDiagramPane>
</Panes>
</dxcharts:XYDiagram>
See the Adding Panes help topic.
In addition, check out the ASPChartsChartElementsVerticalPanes video that illustrates how to create a chart with several panes from scratch.
Related
I have different controls in my XAML page which consists of charts in Xamarin.Forms. The functionality that I want to achieve is to make a long press on each chart, then drag and drop the chart to another place.
I am taking this as an example : https://canbilgin.wordpress.com/2018/03/17/re-order-listview-items-with-drag-drop-ii/
But I dont have a listview in my XAML page.
How can I achieve this in XF ?
You can set a Draggable View, and put inside your Images / Graphs or whatever.
A good tutorial can be followed here
I have two aspx.cs forms that I'm trying to work on. My goal would be to have two aspx.cs forms open, allowing me to basically copy off one into the other - having both of them open at the same time. Is something like that possible? or do I need to have two screens, even in that case, how would I be able to do that.
I know it's possible for me to take one of the forms and just drag it to the side so it's seperate from all the other forms. I'm workign in TFS (btw)
Try going to Window on the menu and select New Vertical Tab Group. This will open up an additional tab group that you can move tabs in and out of within the same Visual Studio instance.
I m having situation whhere i need to add text box in grid control cell just like we add button in the cell but the text box should open a small window when click .User should be able to fill enteries in that window.
This is possible in extjs but can anyone please tell how to achieve this with devexpress controls.Please find the screenshot of the same.
DevExpress provides a workaround for WPF platform: PopupContainerEdit for WPF, whats the status?
This solution is valid for WinForms platform only
DevExpress has the PopupContainerEdit editor that supports in-place mode. This editor is very handy to implement the functionality you described.
To make it work properly in in-place mode, handle these two events:
PopupContainerEdit.QueryResultValue Event
RepositoryItemPopupContainerEdit.QueryDisplayText Event
The result value will be passed to the cell where the editor is located. It is a bad practice to modify data manually after closing the pop-up window.
Kendo UI makes it very easy to use MVVM when using a grid to add or edit records by automating much of the window usage.
This is great as long as you have the grid on your screen, but what if I want to add or edit a record on a page where the grid is not available? How would I call the same edit window and get all the same error checking, binding, etc?
Your question is more about general MVC development. Take a look here.
Im using Visual Studio 2008, on an ASP.NET C# website. Overall what I want to accomplish is that when an item from a list of items is clicked, a video will display on the same page. I want this done all in one aspx page, I dont want to create a new page for each video file. The video files are hosted for me on www.screencast.com.
What I have done is created data-bounded radio list, and a datagrid which is binded to whatever is selected from my radio list. So when an item from that radio list is clicked, the video will diplay on the page, along with a description of the video and other important info.
What i have dome so far does not display my videos. Thats why I am here. I need to know how I can replace one of the fields from my data grid with an embedded web object.
What path do you guys recommend I take to acomplish my goal?
EDIT
With JoeRage's suggestion to use Shadowbox.js, Im going to have on my datagrid a simple link that when clicked, a video will display. My problem is how do I make my hyperlinks get formatted with the following info:
<a rel="shadowbox;width=800;height=600" title="Basic Pricebook Training" href="VideoContent/pricebookMgtBasic.swf"><img src="VideoContent/PricebookMgtBasic.gif" alt="" class="border"></a>
I know that on a datagrid, i can add a hypertextFeild. Problem is that even if I use the DataTextDormatString?
Check ShawdowBox.js.
Edit: You can use a TemplateColumn to build the desire output.