|
From: <var...@us...> - 2021-09-28 15:43:04
|
Revision: 10597
http://sourceforge.net/p/phpwiki/code/10597
Author: vargenau
Date: 2021-09-28 15:43:02 +0000 (Tue, 28 Sep 2021)
Log Message:
-----------
Chart plugin: new argument "legend"
Modified Paths:
--------------
trunk/pgsrc/Help%2FChartPlugin
trunk/pgsrc/ReleaseNotes
Modified: trunk/pgsrc/Help%2FChartPlugin
===================================================================
--- trunk/pgsrc/Help%2FChartPlugin 2021-09-28 15:24:42 UTC (rev 10596)
+++ trunk/pgsrc/Help%2FChartPlugin 2021-09-28 15:43:02 UTC (rev 10597)
@@ -1,4 +1,4 @@
-Date: Thu, 13 Oct 2016 15:09:28 +0000
+Date: Tue, 28 Sep 2021 17:38:55 +0000
Mime-Version: 1.0 (Produced by PhpWiki 1.6.0)
Content-Type: application/x-phpwiki;
pagename=Help%2FChartPlugin;
@@ -16,7 +16,7 @@
== Usage ==
{{{
-<<Chart width=200 height=200 type=line color=green data="5, 7, 11, 3, 15" >>
+<<Chart width=200 height=200 legend="My legend" type=line color=green data="5, 7, 11, 3, 15" >>
}}}
== Arguments ==
@@ -35,6 +35,10 @@
| Graph height in pixels
| 200
|-
+| **legend**
+| Legend of the chart
+| //None//
+|-
| **type**
| line, bar or pie
| line
@@ -51,11 +55,13 @@
{{{
<<Chart type=line
data="5, 7, 11, 3, 15"
+ legend="Price evolution"
>>
}}}
<<Chart type=line
data="5, 7, 11, 3, 15"
+ legend="Price evolution"
>>
=== Bar chart ===
@@ -64,6 +70,7 @@
<<Chart type=bar
color=red
data="5, 7, 11, 3, 15"
+ legend="Number of users"
>>
}}}
@@ -70,6 +77,7 @@
<<Chart type=bar
color=red
data="5, 7, 11, 3, 15"
+ legend="Number of users"
>>
=== Pie chart ===
@@ -78,6 +86,7 @@
<<Chart type=pie
color=blue
data="5, 7, 11, 3, 15"
+ legend="Use per country"
>>
}}}
@@ -84,6 +93,7 @@
<<Chart type=pie
color=blue
data="5, 7, 11, 3, 15"
+ legend="Use per country"
>>
== Known Problems ==
@@ -95,6 +105,7 @@
* Marc-Etienne Vargenau
== See Also ==
+* [[Help:AsciiSVGPlugin]]
<noinclude>
----
Modified: trunk/pgsrc/ReleaseNotes
===================================================================
--- trunk/pgsrc/ReleaseNotes 2021-09-28 15:24:42 UTC (rev 10596)
+++ trunk/pgsrc/ReleaseNotes 2021-09-28 15:43:02 UTC (rev 10597)
@@ -1,4 +1,4 @@
-Date: Fri, 3 Sep 2021 18:58:14 +0000
+Date: Tue, 28 Sep 2021 17:38:55 +0000
Mime-Version: 1.0 (Produced by PhpWiki 1.6.0)
Content-Type: application/x-phpwiki;
pagename=ReleaseNotes;
@@ -17,6 +17,9 @@
* Remove ADODB DATABASE_TYPE. Use SQL (Pear) or PDO.
* Add "Rename" tab in Sidebar theme.
+=== Plugins ===
+* Chart plugin: new argument "legend"
+
== 1.6.0 2021-08-12 Marc-Etienne Vargenau ==
Major release:
@@ -56,7 +59,7 @@
* Updated pgsrc pages in all languages
* Adding SPDX-License-Identifier in PHP source files
-=== Plugins ===
+=== Plugins ===
* ~UpLoad plugin: put date and author in history
* ~UpLoad plugin: don't inline images
* PhpWeather removed, uses deprecated mysql functions
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|