Home
last modified time | relevance | path

Searched refs:chart (Results 1 – 25 of 83) sorted by relevance

1234

/plugin/amcharts/assets/amcharts/plugins/dataloader/
Ddataloader.js43 AmCharts.addInitHandler( function( chart ) { argument
48 if ( undefined === chart.dataLoader || !isObject( chart.dataLoader ) )
49 chart.dataLoader = {};
55 var version = chart.version.split( '.' );
62 var l = chart.dataLoader;
89 'chart': chart property
100 if ( 'stock' === chart.type ) {
106 if ( 0 > chart.panelsSettings.startDuration ) {
107 l.startDuration = chart.panelsSettings.startDuration;
108 chart.panelsSettings.startDuration = 0;
[all …]
Dreadme.md21 loader will work only when the page with the chart or map is loaded via web
46 ### 2) Add data source properties to your chart configuration.
60 Stock chart:
79 populated with their content *before* the chart is built.
101 …tion will be called to "post-process" loaded data before passing it on to chart. The handler funct…
103 showErrors | true | Show loading errors in a chart curtain
104 showCurtain | true| Show curtain over the chart area when loading data
115 In JavaScript Stock Chart it works exactly the same as in other chart types,
120 var chart = AmCharts.makeChart("chartdiv", {
183 Once chart is initialized, you can trigger the reload of all data manually by
[all …]
/plugin/amcharts/assets/amcharts/plugins/responsive/
Dresponsive.js29 AmCharts.addInitHandler( function( chart ) { argument
32 …if ( chart.responsive === undefined || chart.responsive.ready === true || chart.responsive.enabled…
35 var version = chart.version.split( '.' );
40 var r = chart.responsive;
1084 chart.dataChanged = true;
1085 if ( chart.type !== 'xy' ) {
1086 chart.marginsUpdated = false;
1088 chart.zoomOutOnDataUpdate = false;
1089 chart.validateNow( true );
1090 restoreOriginalProperty( chart, 'zoomOutOnDataUpdate' );
[all …]
Dreadme.md11 "Responsive" chart or map will modify it's features dynamically (even as you
13 line chart with legend guides, labels, titles and other elements will be
17 iPad), it starts "compacting" the chart. First the legend is removed. Shrink it
20 sparkline representation of the chart.
23 enable responsiveness. Those are custom-tailored for each chart/map type and
25 enable "responsive" plugin for your chart instance.
41 2. Add the following setting to your chart configuration:
55 chart.responsive = {
70 A plugin works by checking chart area dimensions after each resize. (or after
74 Override rules are implemented by defining chart rules, or just "rules" moving
[all …]
/plugin/stats/
Dsyntax.php477 $chart = new pChart($width,$height+$heightForAngle);
478 $chart->setGraphArea($this->initOpt['spleft'],$this->initOpt['sptop'],$width-20,$height-30);
483 $chart->loadColorPalette(DOKU_TPLINC.'palette.txt');
485 $chart->loadColorPalette(DOKU_PLUGIN.'wikistatistics/palette.txt');
487 $chart->setFontProperties(DOKU_PLUGIN.'wikistatistics/Fonts/tahoma.ttf',10);
488 $chart->drawFilledRoundedRectangle(7,7,$width-7,$height-7+$heightForAngle,5,240,240,240);
489 $chart->drawRoundedRectangle(5,5,$width-5,$height-5+$heightForAngle,5,230,230,230);
490 $chart->drawGraphArea(252,252,252);
492 …$chart->drawScale($dataSet->GetData(),$dataSet->GetDataDescription(),SCALE_NORMAL,150,150,150,TRUE…
493 $chart->drawGrid(4,TRUE,230,230,230,255);
[all …]
/plugin/c3chart/assets/
Dc3.css26 .c3-chart-arc path {
30 .c3-chart-arc rect {
35 .c3-chart-arc text {
192 .c3-chart-arcs-title {
197 .c3-chart-arcs .c3-chart-arcs-background {
202 .c3-chart-arcs .c3-chart-arcs-gauge-unit {
207 .c3-chart-arcs .c3-chart-arcs-gauge-max {
211 .c3-chart-arcs .c3-chart-arcs-gauge-min {
215 .c3-chart-arc .c3-gauge-value {
220 .c3-chart-arc.c3-target g path {
[all …]
/plugin/lastfm/
Dscript.js7 function lastfm_ajax(chart, opts) { argument
9 if(!chart) return;
17 ajax.setVar('plugin_lastfm_chart', chart.id);
24 lastfm_loader(chart);
30 chart.style.visibility = 'hidden';
31 chart.innerHTML = data;
32 chart.style.visibility = 'visible';
/plugin/achart/
DREADME.md5 This plugin accepts the same JavaScript object that ApexCharts takes to generate a chart. Any chart
22 ![Bar chart](https://i.imgur.com/h3TPT0D.png)
24 ![Pie chart](https://i.imgur.com/qS26V9z.png)
26 For more examples, check the [Examples](https://apexcharts.com/javascript-chart-demos).
35 chart: {
53 chart: {
71 chart: {
81 chart: {
91 …the `new ApexCharts()` function of ApexCharts takes to render a chart. To include a chart in your …
93 To render a pie chart for example:
[all …]
Dscript.js12 Apex.chart= {
19 var chart = new ApexCharts(document.getElementById(id), options);
20 chart.render();
/plugin/radarchart/
Dstyle.css2 .radar-chart-container {
11 .radar-chart-container:hover {
15 .radar-chart-container.default-bg {
19 .radar-chart-container.transparent-bg {
26 .radar-chart-container.default-bg {
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Sheets/
DAddChartResponse.php28 public function setChart(EmbeddedChart $chart) argument
30 $this->chart = $chart;
37 return $this->chart;
DAddChartRequest.php28 public function setChart(EmbeddedChart $chart) argument
30 $this->chart = $chart;
37 return $this->chart;
/plugin/amcharts/assets/amcharts/plugins/export/
Dexport.js68 AmCharts[ "export" ] = function( chart, config ) { argument
90 chart: chart, property
176 _this.setup.chart.containerDiv.removeChild( _this.setup.wrapper );
334 fontFamily: _this.setup.chart.fontFamily || "Verdana",
433 path: ( ( chart.path || "" ) + "plugins/export/" ),
512 … var lang = language ? langugage : _this.setup.chart.language ? _this.setup.chart.language : "en";
543 _this.setup.chart.containerDiv.appendChild( div );
557 _this.setup.chart.containerDiv.removeChild( div );
576 _this.setup.chart.containerDiv.appendChild( div );
584 _this.setup.chart.containerDiv.removeChild( div );
[all …]
Dexport.min.js1chart:a,hasBlob:!1,wrapper:!1},drawing:{enabled:!1,undos:[],redos:[],buffer:{position:{x1:0,y1:0,x… property
2chart.classNamePrefix+"-export-canvas active dropbox");else if(c.setup.wrapper.setAttribute("class…
/plugin/c3chart/
DREADME.md5 This plugin accepts the same JavaScript object that C3 takes to generate a chart. Any chart describ…
9 ![Line chart](http://i.imgur.com/gZtX5eo.png)
11 ![Stacked bar chart](http://i.imgur.com/MvNROm7.png)
13 ![Pie chart](http://i.imgur.com/Fax0X0S.png)
26 …bject that the `generate()` function of C3.js takes to render a chart. To include a chart in your …
28 To render the pie chart shown above:
61 The `<c3>` tag can carry optional attributes to customize the appearance of the chart. The attribut…
65 | `width` | Width of the chart, specified in CSS format, e.g. 50% or 320px. |
66 | `height` | Height of the chart, in the same format as `width`. |
69 For instance to make your chart occupying half width of its container and floated to the right:
/plugin/amcharts/
DREADME.md5 This plugin accepts the same JavaScript object that AmCharts takes to generate a chart. Any chart d…
15 …hat the `makeChart()` function of amcharts.js takes to render a chart. To include a chart in your …
17 To render a pie chart for exemple:
64 The `<amchart>` tag can carry optional attributes to customize the appearance of the chart. The att…
68 | `width` | Width of the chart, specified in CSS format, e.g. 50% or 320px. |
69 | `height` | Height of the chart, in the same format as `width`. |
72 For instance to make your chart occupying half width of its container and floated to the right:
/plugin/avbarchart/
Dsyntax.php80 $chart = "";
87 $chart = "";
104 …$chart .= "<td valign='bottom' style='border:0;vertical-align:bottom;text-align:center;' align='ce…
110 $match = $chart;
/plugin/lastfm/inc/
Dlastfmutils.php17 function lastfm_xhtml($user,$chart,$limit,$dformat,$utc_offset,$cols,$imgonly) { argument
21 $xml = lastfm_get_xml($user,$chart);
22 $data = ($chart != 'profile') ? @array_pop(lastfm_xml2array($xml)) : lastfm_xml2array($xml);
31 if($chart != 'profile') $data = array_slice($data,0,$limit);
33 print '<table class="plugin_lastfm_chart plugin_lastfm_' . $chart . '">' . DW_LF;
35 switch($chart) {
216 function lastfm_get_xml($user,$chart) { argument
/plugin/bibtex/OSBib/
DSTYLEMAPBIBTEX.php475 $this->chart = $this->basic;
476 $this->chart['creator1'] = 'creator';
477 $this->chart['field1'] = 'fileName';
478 $this->chart['field2'] = 'program';
479 $this->chart['field3'] = 'size';
480 $this->chart['field4'] = 'type';
481 $this->chart['field5'] = 'version';
482 $this->chart['field6'] = 'number';
483 $this->chart['publisherName'] = 'publisherName';
484 $this->chart['publisherLocation'] = 'publisherLocation';
[all …]
DSTYLEMAP.php435 $this->chart = $this->basic;
436 $this->chart['creator1'] = 'creator';
437 $this->chart['field1'] = 'fileName';
438 $this->chart['field2'] = 'program';
439 $this->chart['field3'] = 'size';
440 $this->chart['field4'] = 'type';
441 $this->chart['field5'] = 'version';
442 $this->chart['field6'] = 'number';
443 $this->chart['publisherName'] = 'publisherName';
444 $this->chart['publisherLocation'] = 'publisherLocation';
[all …]
/plugin/flowchartjs/
Dflowchart.min.js6chart=t,this.group=this.chart.paper.set(),this.symbol=e,this.connectedTo=[],this.symbolType=i.symb…
7chart=s(e.text()),e.html(""),this.chart.drawSVG(this,i)})},setFlowStateByParam:function(t,e,s){ret…
/plugin/heatmap/
Dscripts.js24 const chart = echarts.init(chartElement, null, opts = { locale: "ZH" }); constant
25 window.onresize = () => { chart.resize() };
113 chart.setOption(option);
/plugin/barcode/api/google/
Dbarcode.inc14 // http://code.google.com/intl/it-IT/apis/chart/types.html#qrcodes
20 $resultStr = 'http://chart.apis.google.com/chart?';
/plugin/charter/
Dsyntax.php70 $mediaid = getNS($ID) . ':chart-' . cleanID($flags['title'], false, true) . '.png';
72 $mediaid = getNS($ID) . ':chart-' . cleanID('notitle_' . md5($match)) . '.png';
/plugin/amcharts/assets/amcharts/
Dradar.js5chart,c=a.axisThickness,f=a.axisColor,m=a.axisAlpha;this.set=b.container.set();this.set.translate(…
7chart;void 0===c&&(c="");var h=a.chart.fontFamily,k=a.fontSize;void 0===k&&(k=a.chart.fontSize);va…
10 …,f){b-=a.axisWidth;c-=a.axisWidth;var m=Math.min(b,c);c=Math.max(b,c);b=a.chart;var n=b.container,…

1234