fenri's diary

基本的には勉強し始めたC#のメモ。後は140字で収まらない駄文。

Chartの各種名称

f:id:fenri:20140219092649j:plain


翻訳:
以下のリストは、主要なチャート·コンポーネントについて説明します。

Title:メインのグラフのタイトル。チャート画像に配置されたタイトルの数に制限がある場合もあります。カスタムテキストは、GDI +とペイント関連のイベントを使用して表示することができることに注意してください。
Chart Area:グラフのピクチャは、ラベル、軸、グリッド線、目盛りなど、一連の描画に使用される矩形領域である1つまたは複数のグラフ領域で構成されています。複数の系列は、関係のチャートタイプに応じて、1グラフエリアにプロットすることができます。
チャートデータをプロットするために使用されるプロットエリアもまた、グラフエリア内に含まれる。

Chart Series:一連のデータ·ポイントの関連するグループである。各系列はグラフの種類に関連付けられています。
Legend:グラフのピクチャの凡例。グラフに凡例、無制限の数に制限はありません。
Axis Label:軸に沿ったラベル。
Axis Title:軸のタイトル。
Chart Picture:グラフのピクチャは、Chartコントロールによってレンダリングされた画像全体の面である。これは、ルートChartオブジェクトに対応します。
Grid Lines:通常目盛りと連動して発生するメジャーとマイナーの水平および垂直のグリッド線があります。
Tick Marks:通常グリッド線と併せて起こるメジャーとマイナーの水平方向および垂直方向の目盛りがあります。
Plot Area:プロットエリアにはシリーズと、グリッドラインをプロットするために使用されるグラフエリア内の内部の矩形領域である。というようにラベル、目盛り、軸タイトル、および、すべての描画領域の外側でグラフ領域の内側に描かれています。プロットエリアを介して設定することができChartArea.InnerPlotPositionのプロパティです。
Value Label:少しポイントがプロットされているからのオフセットデータポイントに発生する特別なラベル、。これは、データポイントの値またはカスタムテキストにすることができます。



The following list describes the major chart components:

Title: The main chart title. There can be an unlimited number of titles placed in a chart image. Note that a custom text can be displayed using GDI+ and the paint-related events.
Chart Area: The chart picture consists of one or more chart areas, which are rectangular areas that are used to draw series, labels, axes, grid lines, tick marks, and so on. Multiple series can be plotted in one chart area depending on the chart types involved.
The plot area, used to plot chart data, is also contained within a chart area.

Chart Series: A series is a related group of data points. Each series is associated with a chart type.
Legend: A legend for the chart picture. There can be an unlimited number of legends in a chart.
Axis Label: A label along an axis.
Axis Title: The title of an axis.
Chart Picture: The chart picture is the entire image surface that is rendered by the Chart control. It corresponds to the root Chart object.
Grid Lines: There are major and minor horizontal and vertical grid lines, which usually occur in conjunction with tick marks.
Tick Marks: There are major and minor horizontal and vertical tick marks, which usually occur in conjunction with grid lines.
Plot Area: The plot area is the inner rectangular area within a chart area that is used to plot series and grid lines. Labels, tick marks, the axis title, and so on, are all drawn outside of the plotting area and inside the chart area. The plot area can be set via the ChartArea.InnerPlotPosition property.
Value Label: A special label that occurs for a data point, slightly offset from where the point is plotted. It can be the data point's value or custom text.