| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?xml version="1.0" encoding="UTF-8"?>
- <xsl:stylesheet version="2.0"
- xmlns:system_cache__dita="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/dita.xsd"
- xmlns:p5gnuplot="http://biuro.biall-net.pl/WPS_Functions/graph_gnuplot"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:import href="linechart.xsl" />
- <xsl:import href="barchart.xsl" />
- <xsl:import href="piechart.xsl" />
-
- <xsl:output indent="yes"/>
-
-
-
- <!--<xsl:template mode="barChart" match="barChart">
- <!-\-<xsl:copy>-\->
- <xsl:apply-templates mode="barChart"/>
- <!-\-</xsl:copy>-\->
- </xsl:template>-->
-
- <xsl:template mode="barChart" match="row">
- <!--<xsl:call-template name="barChart">
- <xsl:with-param name="xData" select="xData"/>
- <xsl:with-param name="yData" select="yData"/>
- </xsl:call-template>-->
- </xsl:template>
-
-
- <xsl:template mode="barChart" match="svg-container">
- <xsl:copy>
- <xsl:copy-of select="@*"/>
- <xsl:apply-templates mode="#current"/>
- </xsl:copy>
- </xsl:template>
-
- <xsl:template mode="barChart" match="*">
-
- </xsl:template>
-
-
- <xsl:template mode="barChart" match="barChart">
- <xsl:call-template name="p5gnuplot:SvgCharts4Xsl" >
- <xsl:with-param name="xData.name" select="*[relation_DateRangeElements]/nazwa"/>
- <xsl:with-param name="xData.postition" select="*[relation_DateRangeElements]/position()"/><!-- BI_audit_KRS/position() -->
- <!--<xsl:with-param name="yData" select="BI_audit_KRS/relation_DateRangeElements/leadingTimeDate-From"/>
- <xsl:with-param name="y2Data" select="BI_audit_KRS/relation_DateRangeElements/leadingTimeDate-To"/>-->
- <!--<xsl:with-param name="yData" select="BI_audit_KRS/relation_DateRangeElements"/>-->
- <xsl:with-param name="yData.attr" select="*[relation_DateRangeElements]/relation_DateRangeElements/system_cache__dita:year-timestamp-day(@leadingTimeDate-From)"/>
- <xsl:with-param name="yData.attr.title" select="*[relation_DateRangeElements]/relation_DateRangeElements/@leadingTimeDate-From"/>
- <!--<xsl:with-param name="y2Data" select="BI_audit_KRS/relation_DateRangeElements"/>-->
- <xsl:with-param name="y2Data.attr" select="*[relation_DateRangeElements]/relation_DateRangeElements/system_cache__dita:year-timestamp-day(@leadingTimeDate-To)"/>
- <xsl:with-param name="y2Data.attr.title" select="*[relation_DateRangeElements]/relation_DateRangeElements/@leadingTimeDate-To"/>
- </xsl:call-template>
- </xsl:template>
-
- </xsl:stylesheet>
|