Skip to content

Commit 2e6861b

Browse files
committed
ZDepthRealCalc sample added.
1 parent 0994833 commit 2e6861b

File tree

8 files changed

+556
-2
lines changed

8 files changed

+556
-2
lines changed

sample/ChartSamples/ChartFeatures/ChartArea/ChartArea3D ZDepthRealCalc/ChartArea3DZRC.Designer.cs

+338
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
using System;
2+
using System.Collections;
3+
using System.ComponentModel;
4+
using System.Drawing;
5+
using System.Data;
6+
using System.Windows.Forms;
7+
using System.Windows.Forms.DataVisualization.Charting;
8+
using System.Windows.Forms.DataVisualization.Charting.Utilities;
9+
using System.Globalization;
10+
11+
namespace ChartSamples
12+
{
13+
public partial class ChartArea3DZRC : System.Windows.Forms.UserControl
14+
{
15+
private Point _prevPount;
16+
17+
public ChartArea3DZRC()
18+
{
19+
InitializeComponent();
20+
}
21+
22+
private void chart1_MouseMove(object sender, MouseEventArgs e)
23+
{
24+
if (e.Button != MouseButtons.Left)
25+
return;
26+
27+
var yDiff = -_prevPount.Y + e.Y;
28+
var xDiff = _prevPount.X - e.X;
29+
30+
if (yDiff != 0)
31+
{
32+
var newDiff = (int)(yDiff * 360 / chart1.Height + Math.Sign(yDiff) * 0.5);
33+
if (newDiff == 0)
34+
yDiff = Math.Sign(yDiff);
35+
36+
if (yDiff != 0)
37+
{
38+
yDiff += chart1.ChartAreas[0].Area3DStyle.Inclination;
39+
if (yDiff > 90)
40+
yDiff = 90;
41+
else if (yDiff < -90)
42+
yDiff = -90;
43+
44+
chart1.ChartAreas[0].Area3DStyle.Inclination = yDiff;
45+
}
46+
}
47+
48+
if (xDiff != 0)
49+
{
50+
var newDiff = (int)(xDiff * 720 / chart1.Width + Math.Sign(xDiff) * 0.5);
51+
if (newDiff == 0)
52+
xDiff = Math.Sign(xDiff);
53+
54+
xDiff += chart1.ChartAreas[0].Area3DStyle.Rotation;
55+
if (xDiff > 180)
56+
xDiff = -180 + xDiff - 180;
57+
else if (xDiff < -180)
58+
xDiff = 180 + xDiff + 180;
59+
60+
chart1.ChartAreas[0].Area3DStyle.Rotation = xDiff;
61+
}
62+
63+
_prevPount = e.Location;
64+
}
65+
66+
private void chart1_MouseDown(object sender, MouseEventArgs e)
67+
{
68+
_prevPount = e.Location;
69+
}
70+
71+
private void chart1_MouseClick(object sender, MouseEventArgs e)
72+
{
73+
if (e.Button == MouseButtons.Right)
74+
{
75+
var r = Convert.ToSingle(chart1.Series[0][CustomPropertyName.ZValue], NumberFormatInfo.InvariantInfo);
76+
if (r + 10 > 100)
77+
r = 0;
78+
79+
chart1.Series[0][CustomPropertyName.ZValue] = (r + 10).ToString(NumberFormatInfo.InvariantInfo);
80+
chart1.ChartAreas[0].RecalculateAxesScale();
81+
}
82+
}
83+
}
84+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<root>
2+
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
3+
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
4+
<xsd:element name="root" msdata:IsDataSet="true">
5+
<xsd:complexType>
6+
<xsd:choice maxOccurs="unbounded">
7+
<xsd:element name="metadata">
8+
<xsd:complexType>
9+
<xsd:sequence>
10+
<xsd:element name="value" type="xsd:string" minOccurs="0" />
11+
</xsd:sequence>
12+
<xsd:attribute name="name" use="required" type="xsd:string" />
13+
<xsd:attribute name="type" type="xsd:string" />
14+
<xsd:attribute name="mimetype" type="xsd:string" />
15+
<xsd:attribute ref="xml:space" />
16+
</xsd:complexType>
17+
</xsd:element>
18+
<xsd:element name="assembly">
19+
<xsd:complexType>
20+
<xsd:attribute name="alias" type="xsd:string" />
21+
<xsd:attribute name="name" type="xsd:string" />
22+
</xsd:complexType>
23+
</xsd:element>
24+
<xsd:element name="data">
25+
<xsd:complexType>
26+
<xsd:sequence>
27+
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
28+
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
29+
</xsd:sequence>
30+
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
31+
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
32+
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
33+
<xsd:attribute ref="xml:space" />
34+
</xsd:complexType>
35+
</xsd:element>
36+
<xsd:element name="resheader">
37+
<xsd:complexType>
38+
<xsd:sequence>
39+
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
40+
</xsd:sequence>
41+
<xsd:attribute name="name" type="xsd:string" use="required" />
42+
</xsd:complexType>
43+
</xsd:element>
44+
</xsd:choice>
45+
</xsd:complexType>
46+
</xsd:element>
47+
</xsd:schema>
48+
<resheader name="resmimetype">
49+
<value>text/microsoft-resx</value>
50+
</resheader>
51+
<resheader name="version">
52+
<value>2.0</value>
53+
</resheader>
54+
<resheader name="reader">
55+
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
56+
</resheader>
57+
<resheader name="writer">
58+
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
59+
</resheader>
60+
</root>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
using System.Windows.Forms.DataVisualization.Charting;
2+
using System.Windows.Forms.DataVisualization.Charting.Utilities;
3+
using System.Globalization;
4+
...
5+
6+
// show the chart in 3D
7+
chart1.ChartAreas["Default"].Area3DStyle.Enable3D = true;
8+
9+
// enable ZDepthRealCalc mode
10+
chart1.ChartAreas["Default"].Area3DStyle.ZDepthRealCalc = true;
11+
12+
// recommended
13+
chart1.ChartAreas["Default"].Area3DStyle.IsRightAngleAxes = false;
14+
15+
// set first series ZValue to 54% (example value)
16+
chart1.Series[0][CustomPropertyName.ZValue] = 54.ToString(NumberFormatInfo.InvariantInfo);
17+
18+
...
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<?xml version="1.0" ?>
2+
<SampleConfigs>
3+
4+
<SampleConfig ParentNodeID = "LineCharts">
5+
<Title>3D ZDepthRealCalc mode</Title>
6+
<Thumbnail>thumbnail.jpg</Thumbnail>
7+
<ShortBlurb>3D ZDepthRealCalc mode</ShortBlurb>
8+
<SampleControl>ChartArea3DZRC</SampleControl>
9+
<InfoPages>
10+
<InfoPage Title="C# Source">cscode.txt</InfoPage>
11+
</InfoPages>
12+
13+
<Keywords>
14+
<Keyword>Chart area, 3D ZDepthRealCalc</Keyword>
15+
<Keyword>3D, ZDepthRealCalc</Keyword>
16+
</Keywords>
17+
</SampleConfig>
18+
19+
<SampleConfig ParentNodeID = "PointCharts">
20+
<Title>3D ZDepthRealCalc mode</Title>
21+
<Thumbnail>thumbnail.jpg</Thumbnail>
22+
<ShortBlurb>3D ZDepthRealCalc mode</ShortBlurb>
23+
<SampleControl>ChartArea3DZRC</SampleControl>
24+
<InfoPages>
25+
<InfoPage Title="C# Source">cscode.txt</InfoPage>
26+
</InfoPages>
27+
28+
<Keywords>
29+
<Keyword>Chart area, 3D ZDepthRealCalc</Keyword>
30+
<Keyword>3D, ZDepthRealCalc</Keyword>
31+
</Keywords>
32+
</SampleConfig>
33+
34+
<SampleConfig ParentNodeID = "ChartArea">
35+
<Title>3D ZDepthRealCalc mode</Title>
36+
<Thumbnail>thumbnail.jpg</Thumbnail>
37+
<ShortBlurb>3D ZDepthRealCalc mode</ShortBlurb>
38+
<SampleControl>ChartArea3DZRC</SampleControl>
39+
<InfoPages>
40+
<InfoPage Title="C# Source">cscode.txt</InfoPage>
41+
</InfoPages>
42+
43+
<Keywords>
44+
<Keyword>Chart area, 3D ZDepthRealCalc</Keyword>
45+
<Keyword>3D, ZDepthRealCalc</Keyword>
46+
</Keywords>
47+
</SampleConfig>
48+
49+
</SampleConfigs>

sample/ChartSamples/ChartFeatures/ChartArea/ChartArea3D/sampleConfig.xml

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
</InfoPages>
1313

1414
<Keywords>
15-
<Keyword>3D</Keyword>
1615
<Keyword>Chart area, 3D</Keyword>
1716
<Keyword>Right angle axes</Keyword>
1817
<Keyword>3D, Right angle axes</Keyword>

sample/ChartSamples/ChartSamples.csproj

+6
Original file line numberDiff line numberDiff line change
@@ -473,6 +473,12 @@
473473
<None Update="ChartFeatures\ChartArea\Appearance\vbcode.txt">
474474
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
475475
</None>
476+
<None Update="ChartFeatures\ChartArea\ChartArea3D ZDepthRealCalc\cscode.txt">
477+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
478+
</None>
479+
<None Update="ChartFeatures\ChartArea\ChartArea3D ZDepthRealCalc\sampleConfig.xml">
480+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
481+
</None>
476482
<None Update="ChartFeatures\ChartArea\ChartArea3D\cscode.txt">
477483
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
478484
</None>

sample/ChartSamples/ChartTypes/RangeCharts/3DRangeBar/sampleConfig.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<Keywords>
1515
<Keyword>Chart type, 3D Range Bar</Keyword>
16-
<Keyword>3D Range Bar chart</Keyword>
16+
<Keyword>3D, Range Bar chart</Keyword>
1717
</Keywords>
1818

1919
</SampleConfig>

0 commit comments

Comments
 (0)