Enum PointStyle
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
ポイントスタイル
線内のポイントのスタイルの列挙型。
列挙型を呼び出すには、その親クラス、名前、プロパティを呼び出します。たとえば、
Charts.PointStyle.MEDIUM
です。
プロパティ
プロパティ | タイプ | 説明 |
NONE | Enum | 線のポイントを表示しない。 |
TINY | Enum | 小さな線ポイントを使用する。 |
MEDIUM | Enum | 中程度のサイズの線ポイントを使用します。 |
LARGE | Enum | サイズの大きなラインポイントを使用する。 |
HUGE | Enum | 最大サイズの線ポイントを使用する。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
[null,null,["最終更新日 2025-07-26 UTC。"],[[["\u003cp\u003e\u003ccode\u003ePointStyle\u003c/code\u003e enumeration controls the visual style of points in a line chart.\u003c/p\u003e\n"],["\u003cp\u003ePoint styles include \u003ccode\u003eNONE\u003c/code\u003e, \u003ccode\u003eTINY\u003c/code\u003e, \u003ccode\u003eMEDIUM\u003c/code\u003e, \u003ccode\u003eLARGE\u003c/code\u003e, and \u003ccode\u003eHUGE\u003c/code\u003e, ranging from no points to largest-sized points.\u003c/p\u003e\n"],["\u003cp\u003eTo use a specific point style, reference it using the format \u003ccode\u003eCharts.PointStyle.[Style]\u003c/code\u003e, like \u003ccode\u003eCharts.PointStyle.MEDIUM\u003c/code\u003e for medium-sized points.\u003c/p\u003e\n"]]],[],null,["# Enum PointStyle\n\nPointStyle\n\nAn enumeration of the styles of points in a line.\n\nTo call an enum, you call its parent class, name, and property. For example, `\nCharts.PointStyle.MEDIUM`. \n\n### Properties\n\n| Property | Type | Description |\n|----------|--------|--------------------------------|\n| `NONE` | `Enum` | Do not display line points. |\n| `TINY` | `Enum` | Use tiny line points. |\n| `MEDIUM` | `Enum` | Use medium sized line points. |\n| `LARGE` | `Enum` | Use large sized line points. |\n| `HUGE` | `Enum` | Use largest sized line points. |"]]