亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? bigraphbase.html

?? 在流覽器上仿CS界面的JAVASCRIPT腳本
?? HTML
?? 第 1 頁 / 共 2 頁
字號(hào):
<h3><a name="clearCategories"></a>clearCategories</h3>
<p>Removes all categories from the categories collection</p>
<h4>Syntax</h4>
<pre class="method-syntax">object.clearCategories()</pre>
<h4>Parameters</h4>
<p>No arguments.</p>
<h4>Return Type</h4>
<p><code class="type">void</code></p>
<h3><a name="clearPoints"></a>clearPoints</h3>
<p>Removes all points from the points collection</p>
<h4>Syntax</h4>
<pre class="method-syntax">object.clearPoints()</pre>
<h4>Parameters</h4>
<p>No arguments.</p>
<h4>Return Type</h4>
<p><code class="type">void</code></p>
<h3><a name="clearSeries"></a>clearSeries</h3>
<p>
				Removes all series from the series collection
			</p>
<h4>Syntax</h4>
<pre class="method-syntax">object.clearSeries()</pre>
<h4>Parameters</h4>
<p>No arguments.</p>
<h4>Return Type</h4>
<p><code class="type">void</code></p>
<h3><a name="fromXmlDocument"></a>fromXmlDocument</h3>
<p>This takes an XML document describing the graph data and the graph
				presentation and makes the graph reflect that information.</p>
<h4>Syntax</h4>
<pre class="method-syntax">object.fromXmlDocument(<span class="methodArgument">oDocument</span>)</pre>
<h4>Parameters</h4>
<table>
<thead>
<tr>
<td>Name</td>
<td>Type</td>
<td class="optional-header">Optional</td>
<td>Default</td>
<td>Descripton</td>
</tr>
</thead>
<tbody>
<tr>
<td><code>oDocument</code></td>
<td><code class="type"><code><a href="BiXmlDocument.html">BiXmlDocument</a></code></code></td>
<td class="optional-column"></td>
<td></td>
<td>The XML document describing the graph</td>
</tr>
</tbody>
</table>
<h4>Return Type</h4>
<p><code class="type">void</code></p>
<h3><a name="getCategoryById"></a>getCategoryById</h3>
<p>Returns the category with the given id</p>
<h4>Syntax</h4>
<pre class="method-syntax">object.getCategoryById(<span class="methodArgument">sId</span>)</pre>
<h4>Parameters</h4>
<table>
<thead>
<tr>
<td>Name</td>
<td>Type</td>
<td class="optional-header">Optional</td>
<td>Default</td>
<td>Descripton</td>
</tr>
</thead>
<tbody>
<tr>
<td><code>sId</code></td>
<td><code class="type">String</code></td>
<td class="optional-column"></td>
<td></td>
<td>The id of the category to retrieve</td>
</tr>
</tbody>
</table>
<h4>Return Type</h4>
<p><code class="type"><code><a href="BiChartCategory.html">BiChartCategory</a></code></code></p>
<h3><a name="getChartForSeries"></a>getChartForSeries</h3>
<p>Returns the chart component used to display the series.</p>
<h4>Syntax</h4>
<pre class="method-syntax">object.getChartForSeries(<span class="methodArgument">oSeries</span>)</pre>
<h4>Parameters</h4>
<table>
<thead>
<tr>
<td>Name</td>
<td>Type</td>
<td class="optional-header">Optional</td>
<td>Default</td>
<td>Descripton</td>
</tr>
</thead>
<tbody>
<tr>
<td><code>oSeries</code></td>
<td><code class="type"><code><a href="BiChartSeries.html">BiChartSeries</a></code></code></td>
<td class="optional-column"></td>
<td></td>
<td>The series to get the chart for</td>
</tr>
</tbody>
</table>
<h4>Return Type</h4>
<p><code class="type"><code><a href="BiAbstractChart.html">BiAbstractChart</a></code></code></p>
<h3><a name="getChartPresentationBySeriesId"></a>getChartPresentationBySeriesId</h3>
<p>This returns the chart presentation used to describe how to render chart belonging to a series.</p>
<h4>Syntax</h4>
<pre class="method-syntax">object.getChartPresentationBySeriesId(<span class="methodArgument">sSeriesId</span>)</pre>
<h4>Parameters</h4>
<table>
<thead>
<tr>
<td>Name</td>
<td>Type</td>
<td class="optional-header">Optional</td>
<td>Default</td>
<td>Descripton</td>
</tr>
</thead>
<tbody>
<tr>
<td><code>sSeriesId</code></td>
<td><code class="type">String</code></td>
<td class="optional-column"></td>
<td></td>
<td>The id of the series to get the presentation for</td>
</tr>
</tbody>
</table>
<h4>Return Type</h4>
<p><code class="type"><code><a href="BiChartPresentation.html">BiChartPresentation</a></code></code></p>
<h3><a name="getComponentByIds"></a>getComponentByIds</h3>
<p>This returns the component used to render the section for a certain data point.</p>
<h4>Syntax</h4>
<pre class="method-syntax">object.getComponentByIds(<span class="methodArgument">sSeriesId</span>, <span class="methodArgument">sCategoryId</span>)</pre>
<h4>Parameters</h4>
<table>
<thead>
<tr>
<td>Name</td>
<td>Type</td>
<td class="optional-header">Optional</td>
<td>Default</td>
<td>Descripton</td>
</tr>
</thead>
<tbody>
<tr>
<td><code>sSeriesId</code></td>
<td><code class="type">String</code></td>
<td class="optional-column"></td>
<td></td>
<td>The id of the series to get the component for</td>
</tr>
<tr>
<td><code>sCategoryId</code></td>
<td><code class="type">String</code></td>
<td class="optional-column"></td>
<td></td>
<td>The id of the category to get the component for</td>
</tr>
</tbody>
</table>
<h4>Return Type</h4>
<p><code class="type"><code><a href="BiAbstractChartSection.html">BiAbstractChartSection</a></code></code></p>
<h3><a name="getContextMenuForPoint"></a>getContextMenuForPoint</h3>
<p>
				This method is used to return the context menu for a certain point.
				Override this method to provide yout own menus.
			</p>
<h4>Syntax</h4>
<pre class="method-syntax">object.getContextMenuForPoint(<span class="methodArgument">oSeries</span>, <span class="methodArgument">oCategory</span>)</pre>
<h4>Parameters</h4>
<table>
<thead>
<tr>
<td>Name</td>
<td>Type</td>
<td class="optional-header">Optional</td>
<td>Default</td>
<td>Descripton</td>
</tr>
</thead>
<tbody>
<tr>
<td><code>oSeries</code></td>
<td><code class="type"><code><a href="BiChartSeries.html">BiChartSeries</a></code></code></td>
<td class="optional-column"></td>
<td></td>
<td>The series to get the tool tip for</td>
</tr>
<tr>
<td><code>oCategory</code></td>
<td><code class="type"><code><a href="BiChartCategory.html">BiChartCategory</a></code></code></td>
<td class="optional-column"></td>
<td></td>
<td>The category to get the tool tip for</td>
</tr>
</tbody>
</table>
<h4>Return Type</h4>
<p><code class="type"><code><a href="BiMenu.html">BiMenu</a></code></code></p>
<h3><a name="getPointByIds"></a>getPointByIds</h3>
<p>Returns the point with the given series id and the given category id</p>
<h4>Syntax</h4>
<pre class="method-syntax">object.getPointByIds(<span class="methodArgument">sSeriesId</span>, <span class="methodArgument">sCategoryId</span>)</pre>
<h4>Parameters</h4>
<table>
<thead>
<tr>
<td>Name</td>
<td>Type</td>
<td class="optional-header">Optional</td>
<td>Default</td>
<td>Descripton</td>
</tr>
</thead>
<tbody>
<tr>
<td><code>sSeriesId</code></td>
<td><code class="type">String</code></td>
<td class="optional-column"></td>
<td></td>
<td>The series id of the point to retrieve</td>
</tr>
<tr>
<td><code>sCategoryId</code></td>
<td><code class="type">String</code></td>
<td class="optional-column"></td>
<td></td>
<td>The category id of the point to retrieve</td>
</tr>
</tbody>
</table>
<h4>Return Type</h4>
<p><code class="type"><code><a href="BiChartPoint.html">BiChartPoint</a></code></code></p>
<h3><a name="getSeriesById"></a>getSeriesById</h3>
<p>Returns the series with the given id</p>
<h4>Syntax</h4>
<pre class="method-syntax">object.getSeriesById(<span class="methodArgument">sId</span>)</pre>
<h4>Parameters</h4>
<table>
<thead>
<tr>
<td>Name</td>
<td>Type</td>
<td class="optional-header">Optional</td>
<td>Default</td>
<td>Descripton</td>
</tr>
</thead>
<tbody>
<tr>
<td><code>sId</code></td>
<td><code class="type">String</code></td>
<td class="optional-column"></td>
<td></td>
<td>The id of the series to retrieve</td>
</tr>
</tbody>
</table>
<h4>Return Type</h4>
<p><code class="type"><code><a href="BiChartSeries.html">BiChartSeries</a></code></code></p>
<h3><a name="getToolTipForPoint"></a>getToolTipForPoint</h3>
<p>
				This method is used to return the tool tip to show for a certain point.
				Override this method to provide yout own tool tips.
			</p>
<h4>Syntax</h4>
<pre class="method-syntax">object.getToolTipForPoint(<span class="methodArgument">oSeries</span>, <span class="methodArgument">oCategory</span>)</pre>
<h4>Parameters</h4>
<table>
<thead>
<tr>
<td>Name</td>
<td>Type</td>
<td class="optional-header">Optional</td>
<td>Default</td>
<td>Descripton</td>
</tr>
</thead>
<tbody>
<tr>
<td><code>oSeries</code></td>
<td><code class="type"><code><a href="BiChartSeries.html">BiChartSeries</a></code></code></td>
<td class="optional-column"></td>
<td></td>
<td>The series to get the tool tip for</td>
</tr>
<tr>
<td><code>oCategory</code></td>
<td><code class="type"><code><a href="BiChartCategory.html">BiChartCategory</a></code></code></td>
<td class="optional-column"></td>
<td></td>
<td>The category to get the tool tip for</td>
</tr>
</tbody>
</table>
<h4>Return Type</h4>
<p><code class="type"><code><a href="BiToolTip.html">BiToolTip</a></code></code></p>
<h3><a name="removeCategory"></a>removeCategory</h3>
<p>Removes a category from the categories collection</p>
<h4>Syntax</h4>
<pre class="method-syntax">object.removeCategory(<span class="methodArgument">oCategory</span>)</pre>
<h4>Parameters</h4>
<table>
<thead>
<tr>
<td>Name</td>
<td>Type</td>
<td class="optional-header">Optional</td>
<td>Default</td>
<td>Descripton</td>
</tr>
</thead>
<tbody>
<tr>
<td><code>oCategory</code></td>
<td><code class="type"><code><a href="BiChartCategory.html">BiChartCategory</a></code></code></td>
<td class="optional-column"></td>
<td></td>
<td>The category to remove</td>
</tr>
</tbody>
</table>
<h4>Return Type</h4>
<p><code class="type">void</code></p>
<h3><a name="removePoint"></a>removePoint</h3>
<p>Removes a point from the points collection</p>
<h4>Syntax</h4>
<pre class="method-syntax">object.removePoint(<span class="methodArgument">oPoint</span>)</pre>
<h4>Parameters</h4>
<table>
<thead>
<tr>
<td>Name</td>
<td>Type</td>
<td class="optional-header">Optional</td>
<td>Default</td>
<td>Descripton</td>
</tr>
</thead>
<tbody>
<tr>
<td><code>oPoint</code></td>
<td><code class="type"><code><a href="BiChartPoint.html">BiChartPoint</a></code></code></td>
<td class="optional-column"></td>
<td></td>
<td>The point to remove</td>
</tr>
</tbody>
</table>
<h4>Return Type</h4>
<p><code class="type">void</code></p>
<h3><a name="removeSeries"></a>removeSeries</h3>
<p>
				Removes a series from the series collection
			</p>
<h4>Syntax</h4>
<pre class="method-syntax">object.removeSeries(<span class="methodArgument">oSeries</span>)</pre>
<h4>Parameters</h4>
<table>
<thead>
<tr>
<td>Name</td>
<td>Type</td>
<td class="optional-header">Optional</td>
<td>Default</td>
<td>Descripton</td>
</tr>
</thead>
<tbody>
<tr>
<td><code>oSeries</code></td>
<td><code class="type"><code><a href="BiChartSeries.html">BiChartSeries</a></code></code></td>
<td class="optional-column"></td>
<td></td>
<td>The series to remove</td>
</tr>
</tbody>
</table>
<h4>Return Type</h4>
<p><code class="type">void</code></p>
<h3><a name="toXmlDocument"></a>toXmlDocument</h3>
<p>Serializes the graph to an XML document.</p>
<h4>Syntax</h4>
<pre class="method-syntax">object.toXmlDocument()</pre>
<h4>Parameters</h4>
<p>No arguments.</p>
<h4>Return Type</h4>
<p><code class="type"><code><a href="BiXmlDocument.html">BiXmlDocument</a></code></code></p>
<h3><a name="update"></a>update</h3>
<p>
				Updates the graph and recreates the internal charts. This should
				be called after changes to the graph.
			</p>
<h4>Syntax</h4>
<pre class="method-syntax">object.update()</pre>
<h4>Parameters</h4>
<p>No arguments.</p>
<h4>Return Type</h4>
<p><code class="type">void</code></p>
<h3><a name="updatePoint"></a>updatePoint</h3>
<p>
				Updates the graph and recreates the internal representations
				for the given point. This should be called after changes to a point
				or a series. Leaving out the category makes this update all the
				points in the given series.
			</p>
<h4>Syntax</h4>
<pre class="method-syntax">object.updatePoint(<span class="methodArgument">sSeriesId</span> [, <span class="methodArgument">sCategoryId</span>])</pre>
<h4>Parameters</h4>
<table>
<thead>
<tr>
<td>Name</td>
<td>Type</td>
<td class="optional-header">Optional</td>
<td>Default</td>
<td>Descripton</td>
</tr>
</thead>
<tbody>
<tr>
<td><code>sSeriesId</code></td>
<td><code class="type">string</code></td>
<td class="optional-column"></td>
<td></td>
<td>
						The id of the series that the graph should be update to
						reflect. This usually updates the chart assosciated with
						the series.
					</td>
</tr>
<tr>
<td><code>sCategoryId</code></td>
<td><code class="type">string</code></td>
<td class="optional-column"><img src="check.png" alt="checked"></td>
<td></td>
<td>
						The id of the category that the graph should be update to
						reflect. If provided this means that a point should be udpated.
						This usually updates means that a certain bar or marker is
						updated.
					</td>
</tr>
</tbody>
</table>
<h4>Return Type</h4>
<p><code class="type">void</code></p>
</body>
</html>

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
www久久精品| 欧美性一级生活| 色婷婷亚洲婷婷| 91精品国产一区二区人妖| 日韩精品一区二区三区蜜臀| 欧美国产1区2区| 午夜欧美视频在线观看| 国产高清久久久| 欧美午夜寂寞影院| 久久亚洲综合色一区二区三区| 国产精品日日摸夜夜摸av| 亚洲第一电影网| 国产成人在线影院| 91超碰这里只有精品国产| 国产日产欧美精品一区二区三区| 亚洲综合久久av| 国产69精品久久777的优势| 欧美日韩一二三| 国产精品另类一区| 日本亚洲一区二区| 91视频91自| 26uuu欧美日本| 亚洲一区二区在线免费看| 国产成人丝袜美腿| 7777精品伊人久久久大香线蕉的 | 一区二区高清免费观看影视大全 | 欧美一级一级性生活免费录像| 国产欧美一区视频| 丝袜a∨在线一区二区三区不卡| 成人午夜精品一区二区三区| 91精品免费在线| 一区二区三区毛片| 国产成人在线视频网站| 欧美另类变人与禽xxxxx| 国产精品美女久久久久久久 | 久久这里只有精品首页| 一个色妞综合视频在线观看| 国产精品影视网| 91精品国产综合久久精品性色| 亚洲国产激情av| 久久精品国产一区二区三区免费看| 色综合久久久久久久久久久| 久久精品亚洲乱码伦伦中文| 日本免费新一区视频| 色一情一乱一乱一91av| 国产午夜久久久久| 国产在线视频一区二区| 欧美猛男男办公室激情| 一区二区三区国产豹纹内裤在线| 丰满岳乱妇一区二区三区| 日韩精品中文字幕在线一区| 午夜精品一区二区三区电影天堂| 一本在线高清不卡dvd| 中文字幕精品三区| 国产一区二区三区美女| 日韩欧美国产成人一区二区| 亚洲bt欧美bt精品| 欧洲精品一区二区三区在线观看| 国产精品久久久久久久久动漫 | 欧美videossexotv100| 亚洲成人高清在线| 欧美日韩中文字幕精品| 一区二区三区美女视频| 色av综合在线| 亚洲一区成人在线| 欧美日韩一区国产| 亚洲成人动漫一区| 欧美日韩国产另类一区| 无码av免费一区二区三区试看| 在线看日本不卡| 亚洲一区二区在线免费观看视频| 91久久精品一区二区三区| 亚洲人成7777| 一本到不卡精品视频在线观看| 亚洲欧美激情视频在线观看一区二区三区 | a在线欧美一区| 亚洲视频狠狠干| 欧美视频三区在线播放| 天天影视网天天综合色在线播放| 欧美色男人天堂| 日韩高清不卡一区二区三区| 欧美一区二区三区免费| 极品少妇xxxx精品少妇偷拍| 国产日韩亚洲欧美综合| eeuss鲁片一区二区三区在线看| 专区另类欧美日韩| 色老头久久综合| 亚洲国产精品综合小说图片区| 欧美日韩精品一区二区在线播放 | 欧美一级精品大片| 久久99精品久久久久久久久久久久| 欧美电影免费观看高清完整版在| 九九精品一区二区| 欧美极品美女视频| 日本高清不卡视频| 日韩不卡免费视频| 精品99久久久久久| 99国产精品国产精品毛片| 夜夜精品视频一区二区| 777精品伊人久久久久大香线蕉| 久久 天天综合| 国产精品高潮呻吟| 欧美日韩综合一区| 国产尤物一区二区| 亚洲日本在线视频观看| 欧美一区二区三区四区在线观看| 激情综合网天天干| 亚洲人被黑人高潮完整版| 91精品国产综合久久久久久漫画 | 欧美成人猛片aaaaaaa| 成人精品视频.| 亚洲成人自拍网| 26uuu欧美日本| 在线视频欧美精品| 精品亚洲成av人在线观看| 国产精品视频一二三区| 欧美日韩大陆在线| 国产黄色成人av| 亚洲国产va精品久久久不卡综合| 日韩欧美一级特黄在线播放| 国产v综合v亚洲欧| 亚洲成人免费影院| 国产欧美1区2区3区| 欧美性受xxxx黑人xyx性爽| 国产真实乱对白精彩久久| 亚洲色图欧美偷拍| 欧美大片国产精品| 91麻豆国产精品久久| 麻豆一区二区在线| 亚洲最新视频在线观看| 久久久久久黄色| 欧美色综合影院| 99视频精品免费视频| 久久97超碰色| 亚洲va国产va欧美va观看| 国产色产综合色产在线视频| 欧美精品1区2区3区| heyzo一本久久综合| 免费成人美女在线观看.| 亚洲欧美区自拍先锋| 久久亚洲私人国产精品va媚药| 91成人国产精品| 成人国产精品免费| 久久精品国产精品亚洲精品| 亚洲精品国产无天堂网2021| 国产欧美日韩视频一区二区| 欧美一区二区在线免费播放| 色婷婷综合中文久久一本| 国产成人免费xxxxxxxx| 喷水一区二区三区| 亚洲成av人片一区二区梦乃| 亚洲日本成人在线观看| 中文字幕精品三区| 久久久五月婷婷| 欧美一区二区三区免费大片 | 亚洲va中文字幕| 国产精品超碰97尤物18| 久久夜色精品国产欧美乱极品| 91麻豆精品国产91久久久久久久久| 欧美综合在线视频| 92国产精品观看| 成人一区在线观看| 国产美女精品一区二区三区| 久久国产三级精品| 麻豆精品国产91久久久久久| 午夜日韩在线电影| 香蕉乱码成人久久天堂爱免费| 一区二区三区日韩| 一区二区三区丝袜| 亚洲精品乱码久久久久久| 成人欧美一区二区三区1314| 中文字幕av一区二区三区免费看| 亚洲精品在线电影| 精品99久久久久久| 久久精品视频在线免费观看 | 成人久久久精品乱码一区二区三区| 国产真实乱偷精品视频免| 韩国成人福利片在线播放| 美国精品在线观看| 国内精品伊人久久久久av影院| 极品少妇xxxx精品少妇偷拍| 国产呦精品一区二区三区网站| 精品一区二区日韩| 国产成人在线免费观看| 国产91在线观看| 成人黄色一级视频| 9人人澡人人爽人人精品| 91在线精品一区二区三区| 91丨porny丨在线| 欧美亚洲高清一区| 欧美日韩卡一卡二| 91精品免费观看| 2020国产精品| 国产欧美日韩激情| 亚洲免费色视频| 午夜精品一区二区三区免费视频| 日本欧美久久久久免费播放网| 久久99精品视频| 成人h动漫精品一区二| 91在线观看高清|