DPL Example 103

From FollowTheScore
Revision as of 12:33, 13 March 2009 by Gero (talk | contribs) (New page: {{Example|Create a bar chart based on DPL query}} We show the 20 most popular articles; Template:DPL Example 103 barchart contains the script; data comes from a DPL query. <pre><nowi...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

back to list of examples

Create a bar chart based on DPL query

We show the 20 most popular articles; Template:DPL Example 103 barchart contains the script; data comes from a DPL query.

{{DPL Example 103 barchart|data=
  {{#dpl:
    |namespace      = 
    |addpagecounter = yes
    |ordermethod    = counter
    |order          = descending
    |count          = 7
    |format         = ,"%TITLE%" %COUNT%,\n
  }}
}}

The above script produces the following output:


{{#ploticus:

  1. proc getdata
 data:

"Test5554" %COUNT% "2008-02-16 best time ever" %COUNT% "Nowa kategoria" %COUNT% "Test 001" %COUNT% "Test 002" %COUNT% "Test 003" %COUNT% "Test 004" %COUNT% "Test 005" %COUNT% "Test 006" %COUNT% "Test 007" %COUNT% "Test 008" %COUNT% "Tmp2" %COUNT% "2008/08/23 SD test" %COUNT% "Event template zh-tw" %COUNT% "Event intro zh-tw" %COUNT% "A1" %COUNT% "2008-04-24 nnn" %COUNT% "Yyy" %COUNT% "Ford" %COUNT% "Property:Age" %COUNT%

// set up plotting area using proc areadef

  1. proc areadef
 rectangle: 1 1 5 10
 xrange: 0 100
 yrange: 0 100
 title: 
 frame: color=0.8

// do x axis using proc xaxis

  1. proc xaxis
 stubs inc 10
 axisline: none
 tics: none 
 label: 
 grid: color=rgb(.6,1,.6)
 stubformat: %g%

// do bars using proc bars

  1. proc bars
 axis: x
 lenfield: 2
 color: pink
 showvalues: yes
 labelfield: 1
 longwayslabel: yes
 labeldetails: size=8 
 reverseorder: yes
 outline: no

}}