dundas

How to plot TEMA indicator with Microsoft Chart Control

谁都会走 提交于 2019-12-14 02:58:32
问题 I've added two series: Series1 (CandeleStick), Series2 (Line). I've added points and the FinancialFormula: public Form1() { InitializeComponent(); chart1.Series[0].Points.Add(24.00, 25.00, 25.00, 24.875); chart1.Series[0].Points.Add(23.625, 25.125, 24.00, 24.875); chart1.Series[0].Points.Add(26.25, 28.25, 26.75, 27.00); chart1.Series[0].Points.Add(26.50, 27.875, 26.875, 27.25); chart1.Series[0].Points.Add(26.375, 27.50, 27.375, 26.75); chart1.Series[0].Points.Add(25.75, 26.875, 26.75, 26.00);

Grouping geographical shapes

五迷三道 提交于 2019-12-13 11:39:43
问题 I am using Dundas Maps and attempting to draw a map of the world where countries are grouped into regions that are specific to a business implementation. I have shape data (points and segments) for each country in the world. I can combine countries into regions by adding all points and segments for countries within a region to a new region shape. foreach(var region in GetAllRegions()){ var regionShape = new Shape { Name = region.Name }; foreach(var country in GetCountriesInRegion(region.Id)){

Dundas Chart in User Control

狂风中的少年 提交于 2019-12-12 01:33:58
问题 I have a dundas chart with ajax zooming and scrolling enable. It works fine in a webform page. But once I put in a user control and called it from another page I get this error - the target 'ctl00$ContentPlaceHolder1$uc2$chartVisits' for the callback could not be found or did not implement ICallbackEventHandler. -when I try to use the zoom and scroll functionality. What can I do to resolve this problem. Thank You. 回答1: I've seen this error when dynamically adding controls that use AJAX. Make

Styling the asp.net charting controls

倾然丶 夕夏残阳落幕 提交于 2019-12-06 01:52:35
问题 Using the ASP.Net Chart Controls, which are a subset of the Dundas Chart Controls, How can I make charts that look like this: Instead of this: EDIT: I've made some progress, since asking this question. The styling elements that improve the default graph in both Dundas and MSChart are: Round Corners on the chart container Background colours and gradients on chart container Transparency on column colours Alignment of columns in the x axis (bizarely, MSChart defaults to z axis alignment) Area 3D

Styling the asp.net charting controls

我的未来我决定 提交于 2019-12-04 06:56:13
Using the ASP.Net Chart Controls , which are a subset of the Dundas Chart Controls , How can I make charts that look like this: Instead of this: EDIT: I've made some progress , since asking this question. The styling elements that improve the default graph in both Dundas and MSChart are: Round Corners on the chart container Background colours and gradients on chart container Transparency on column colours Alignment of columns in the x axis (bizarely, MSChart defaults to z axis alignment) Area 3D wall width I know it's a bit late, but I was playing with the chart for a project I'm working on.

Grouping geographical shapes

ぃ、小莉子 提交于 2019-12-03 11:54:12
I am using Dundas Maps and attempting to draw a map of the world where countries are grouped into regions that are specific to a business implementation. I have shape data (points and segments) for each country in the world. I can combine countries into regions by adding all points and segments for countries within a region to a new region shape. foreach(var region in GetAllRegions()){ var regionShape = new Shape { Name = region.Name }; foreach(var country in GetCountriesInRegion(region.Id)){ var countryShape = GetCountryShape(country.Id); regionShape.AddSegments(countryShape.ShapeData.Points,