diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2009-07-21 11:25:18 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2009-07-21 11:25:18 +0000 |
commit | 73061d5af4bcddd2df8169dccca17dfea5bb8477 (patch) | |
tree | dd1a19fe8c644a3f53d5f276ef5facfd5c6b57d6 | |
parent | 9ce834beee81194e02525a6cb836516dc379eeb7 (diff) | |
download | zetacomponents-graph-73061d5af4bcddd2df8169dccca17dfea5bb8477.zip zetacomponents-graph-73061d5af4bcddd2df8169dccca17dfea5bb8477.tar.gz |
- Implemented: #15133: Better configurable axis spaces.
# Large number of tests added. Had to go through all sensible combinations of
# axis and axis spaces to ensure it works correctly.
201 files changed, 611 insertions, 68 deletions
@@ -5,6 +5,7 @@ - Implemented: #13341: Vertical Bar Charts. - Implemented: #15135: Add support for pecl/cairo's object-oriented API, patch by Michael Maclean. +- Implemented: #15133: Better configurable axis spaces. 1.4.3 - Monday 08 June 2009 diff --git a/src/charts/line.php b/src/charts/line.php index 4c0ba14..4d0fc84 100644 --- a/src/charts/line.php +++ b/src/charts/line.php @@ -627,25 +627,17 @@ class ezcGraphLineChart extends ezcGraphChart // Calculate inner data boundings of chart $innerBoundings = new ezcGraphBoundings( $boundings->x0 + $boundings->width * - ( ( ( $this->elements['yAxis']->outerAxisSpace === null ) || - ( $this->elements['xAxis']->position === ezcGraph::LEFT ) ) ? - $this->elements['yAxis']->axisSpace : - $this->elements['yAxis']->outerAxisSpace ), + $this->elements['yAxis']->axisSpace, $boundings->y0 + $boundings->height * - ( ( ( $this->elements['xAxis']->outerAxisSpace === null ) || - ( $this->elements['yAxis']->position === ezcGraph::TOP ) ) ? + ( ( $this->elements['xAxis']->outerAxisSpace === null ) ? $this->elements['xAxis']->axisSpace : - $this->elements['yAxis']->outerAxisSpace ), + $this->elements['xAxis']->outerAxisSpace ), $boundings->x1 - $boundings->width * - ( ( ( $this->elements['yAxis']->outerAxisSpace === null ) || - ( $this->elements['xAxis']->position === ezcGraph::RIGHT ) ) ? + ( ( $this->elements['yAxis']->outerAxisSpace === null ) ? $this->elements['yAxis']->axisSpace : $this->elements['yAxis']->outerAxisSpace ), $boundings->y1 - $boundings->height * - ( ( ( $this->elements['xAxis']->outerAxisSpace === null ) || - ( $this->elements['yAxis']->position === ezcGraph::BOTTOM ) ) ? - $this->elements['xAxis']->axisSpace : - $this->elements['yAxis']->outerAxisSpace ) + $this->elements['xAxis']->axisSpace ); // Render axis diff --git a/src/element/axis.php b/src/element/axis.php index 4f38761..0f6af3f 100644 --- a/src/element/axis.php +++ b/src/element/axis.php @@ -221,7 +221,6 @@ abstract class ezcGraphChartElementAxis extends ezcGraphChartElement $this->properties['axisSpace'] = (float) $propertyValue; break; - /* Do not yet allow to modify this value, this need further testing. case 'outerAxisSpace': if ( !is_null( $propertyValue ) && ( !is_numeric( $propertyValue ) || @@ -233,7 +232,6 @@ abstract class ezcGraphChartElementAxis extends ezcGraphChartElement $this->properties['outerAxisSpace'] = $propertyValue; break; - */ case 'majorGrid': $this->properties['majorGrid'] = ezcGraphColor::create( $propertyValue ); break; @@ -482,50 +480,50 @@ abstract class ezcGraphChartElementAxis extends ezcGraphChartElement { case ezcGraph::TOP: $start = new ezcGraphCoordinate( - ( $boundings->x1 - $boundings->x0 ) * $startSpace + - $this->nullPosition * ( $boundings->x1 - $boundings->x0 ) * ( 1 - 2 * $startSpace ), + $boundings->width * $startSpace + + $this->nullPosition * $boundings->width * ( 1 - ( $startSpace + $endSpace ) ), 0 ); $end = new ezcGraphCoordinate( - ( $boundings->x1 - $boundings->x0 ) * $endSpace + - $this->nullPosition * ( $boundings->x1 - $boundings->x0 ) * ( 1 - 2 * $endSpace ), - $boundings->y1 - $boundings->y0 + $boundings->width * $startSpace + + $this->nullPosition * $boundings->width * ( 1 - ( $startSpace + $endSpace ) ), + $boundings->height ); break; case ezcGraph::BOTTOM: $start = new ezcGraphCoordinate( - ( $boundings->x1 - $boundings->x0 ) * $startSpace + - $this->nullPosition * ( $boundings->x1 - $boundings->x0 ) * ( 1 - 2 * $startSpace ), - $boundings->y1 - $boundings->y0 + $boundings->width * $startSpace + + $this->nullPosition * $boundings->width * ( 1 - ( $startSpace + $endSpace ) ), + $boundings->height ); $end = new ezcGraphCoordinate( - ( $boundings->x1 - $boundings->x0 ) * $endSpace + - $this->nullPosition * ( $boundings->x1 - $boundings->x0 ) * ( 1 - 2 * $endSpace ), + $boundings->width * $startSpace + + $this->nullPosition * $boundings->width * ( 1 - ( $startSpace + $endSpace ) ), 0 ); break; case ezcGraph::LEFT: $start = new ezcGraphCoordinate( 0, - ( $boundings->y1 - $boundings->y0 ) * $startSpace + - $this->nullPosition * ( $boundings->y1 - $boundings->y0 ) * ( 1 - 2 * $startSpace ) + $boundings->height * $endSpace + + $this->nullPosition * $boundings->height * ( 1 - ( $startSpace + $endSpace ) ) ); $end = new ezcGraphCoordinate( - $boundings->x1 - $boundings->x0, - ( $boundings->y1 - $boundings->y0 ) * $endSpace + - $this->nullPosition * ( $boundings->y1 - $boundings->y0 ) * ( 1 - 2 * $endSpace ) + $boundings->width, + $boundings->height * $endSpace + + $this->nullPosition * $boundings->height * ( 1 - ( $startSpace + $endSpace ) ) ); break; case ezcGraph::RIGHT: $start = new ezcGraphCoordinate( - $boundings->x1 - $boundings->x0, - ( $boundings->y1 - $boundings->y0 ) * $startSpace + - $this->nullPosition * ( $boundings->y1 - $boundings->y0 ) * ( 1 - 2 * $startSpace ) + $boundings->width, + $boundings->height * $endSpace + + $this->nullPosition * $boundings->height * ( 1 - ( $startSpace + $endSpace ) ) ); $end = new ezcGraphCoordinate( 0, - ( $boundings->y1 - $boundings->y0 ) * $endSpace + - $this->nullPosition * ( $boundings->y1 - $boundings->y0 ) * ( 1 - 2 * $endSpace ) + $boundings->height * $endSpace + + $this->nullPosition * $boundings->height * ( 1 - ( $startSpace + $endSpace ) ) ); break; } diff --git a/src/renderer/axis_label_rotated.php b/src/renderer/axis_label_rotated.php index 547bfdd..6187494 100644 --- a/src/renderer/axis_label_rotated.php +++ b/src/renderer/axis_label_rotated.php @@ -114,6 +114,43 @@ class ezcGraphAxisRotatedLabelRenderer extends ezcGraphAxisLabelRenderer } /** + * Determine label angle + * + * Determine the optiomal angle for the axis labels, of no angle has been + * provided by the user. + * + * @param array $steps + * @return void + */ + protected function determineAngle( array $steps, $xSpace, $ySpace, ezcGraphBoundings $axisBoundings ) + { + if ( $this->angle === null ) + { + $minimumStepWidth = null; + foreach ( $steps as $nr => $step ) + { + if ( ( $minimumStepWidth === null ) || + ( $step->width < $minimumStepWidth ) ) + { + $minimumStepWidth = $step->width; + } + } + + $width = abs( + $axisBoundings->width * $minimumStepWidth * $this->direction->x + + $axisBoundings->height * $minimumStepWidth * $this->direction->y + ); + $height = abs( + $ySpace * $this->direction->x + + $xSpace * $this->direction->y + ); + + $length = sqrt( pow( $width, 2 ) + pow( $height, 2 ) ); + $this->angle = rad2deg( acos( $height / $length ) ); + } + } + + /** * Render Axis labels * * Render labels for an axis. @@ -155,30 +192,7 @@ class ezcGraphAxisRotatedLabelRenderer extends ezcGraphAxisLabelRenderer list( $xSpace, $ySpace ) = $this->getAxisSpace( $renderer, $boundings, $axis, $innerBoundings, $gridBoundings ); // Determine optimal angle if none specified - if ( $this->angle === null ) - { - $minimumStepWidth = null; - foreach ( $steps as $nr => $step ) - { - if ( ( $minimumStepWidth === null ) || - ( $step->width < $minimumStepWidth ) ) - { - $minimumStepWidth = $step->width; - } - } - - $width = abs( - $axisBoundings->width * $minimumStepWidth * $this->direction->x + - $axisBoundings->height * $minimumStepWidth * $this->direction->y - ); - $height = abs( - $ySpace * $this->direction->x + - $xSpace * $this->direction->y - ); - - $length = sqrt( pow( $width, 2 ) + pow( $height, 2 ) ); - $this->angle = rad2deg( acos( $height / $length ) ); - } + $this->determineAngle( $steps, $xSpace, $ySpace, $axisBoundings ); // Determine additional required axis space by boxes $firstStep = reset( $steps ); @@ -369,11 +383,11 @@ class ezcGraphAxisRotatedLabelRenderer extends ezcGraphAxisLabelRenderer ): $labelBoundings = new ezcGraphBoundings( $position->x, - $position->y + $labelSize, - $position->x + abs( $labelLength ) - $lengthReducement, - $position->y + $position->y, + $position->x - abs( $labelLength ) + $lengthReducement, + $position->y + $labelSize ); - $labelAlignement = ezcGraph::LEFT | ezcGraph::BOTTOM; + $labelAlignement = ezcGraph::LEFT | ezcGraph::TOP; $labelRotation = $degTextAngle; break; } @@ -424,9 +438,11 @@ class ezcGraphAxisRotatedLabelRenderer extends ezcGraphAxisLabelRenderer { return new ezcGraphCoordinate( $coordinate->x * abs( $this->direction->y ) + - ( $coordinate->x * ( 1 - abs( $this->offset ) ) + max( 0, $this->offset ) ) * abs( $this->direction->x ), + ( $coordinate->x * ( 1 - abs( $this->offset ) ) * abs( $this->direction->x ) ) + + ( abs( $this->offset ) * abs( $this->direction->x ) ), $coordinate->y * abs( $this->direction->x ) + - ( $coordinate->y * ( 1 - abs( $this->offset ) ) + max( 0, $this->offset ) ) * abs( $this->direction->y ) + ( $coordinate->y * ( 1 - abs( $this->offset ) ) * abs( $this->direction->y ) ) + + ( abs( $this->offset ) * abs( $this->direction->y ) ) ); } } diff --git a/tests/axis_space_test.php b/tests/axis_space_test.php new file mode 100644 index 0000000..431116b --- /dev/null +++ b/tests/axis_space_test.php @@ -0,0 +1,150 @@ +<?php +/** + * ezcGraphAxisBoxedRendererTest + * + * @package Graph + * @version //autogen// + * @subpackage Tests + * @copyright Copyright (C) 2005-2009 eZ Systems AS. All rights reserved. + * @license http://ez.no/licenses/new_bsd New BSD License + */ + +require_once dirname( __FILE__ ) . '/test_case.php'; + +/** + * Tests for ezcGraph class. + * + * @package Graph + * @subpackage Tests + */ +class ezcGraphAxisSpaceTest extends ezcGraphTestCase +{ + protected $basePath; + + protected $tempDir; + + protected static $i = 0; + + public static function suite() + { + return new PHPUnit_Framework_TestSuite( __CLASS__ ); + } + + protected function setUp() + { + $this->tempDir = $this->createTempDir( __CLASS__ . sprintf( '_%03d_', ++self::$i ) ) . '/'; + $this->basePath = dirname( __FILE__ ) . '/data/'; + } + + protected function tearDown() + { + if ( !$this->hasFailed() ) + { + $this->removeTempDir(); + } + } + + public static function getAxisConfiguration() + { + $axisLabelRenderer = array( + new ezcGraphAxisCenteredLabelRenderer(), + new ezcGraphAxisExactLabelRenderer(), + new ezcGraphAxisBoxedLabelRenderer(), + new ezcGraphAxisRotatedLabelRenderer(), + ); + + $axisSpaces = array( + .1, + .2, + ); + + $outerSpaces = array( + .05, + .1, + ); + + $xAlignements = array( + ezcGraph::LEFT, + ezcGraph::RIGHT, + ); + + $yAlignements = array( + ezcGraph::BOTTOM, + ezcGraph::TOP, + ); + + $calls = array(); + foreach ( $axisLabelRenderer as $xRenderer ) + { + foreach ( $axisLabelRenderer as $yRenderer ) + { + if ( $xRenderer === $yRenderer ) + { + continue; + } + + foreach ( $axisSpaces as $xSpace ) + { + foreach ( $axisSpaces as $ySpace ) + { + if ( $xSpace === $ySpace ) + { + continue; + } + + foreach ( $outerSpaces as $outerSpace ) + { + foreach ( $xAlignements as $xAlign ) + { + foreach ( $yAlignements as $yAlign ) + { + $calls[] = array( + $xRenderer, + $yRenderer, + $xSpace, + $ySpace, + $outerSpace, + $xAlign, + $yAlign, + ); + } + } + } + } + } + } + } + + return $calls; + } + + /** + * @dataProvider getAxisConfiguration + */ + public function testAxisSpaceConfiguration( ezcGraphAxisLabelRenderer $xRenderer, ezcGraphAxisLabelRenderer $yRenderer, $xSpace, $ySpace, $outerSpace, $xAlign, $yAlign ) + { + $filename = $this->tempDir . __FUNCTION__ . '_' . self::$i . '.svg'; + + $chart = new ezcGraphLineChart(); + $chart->palette = new ezcGraphPaletteBlack(); + + $chart->xAxis->axisLabelRenderer = $xRenderer; + $chart->xAxis->axisSpace = $xSpace; + $chart->xAxis->outerAxisSpace = $outerSpace; + $chart->xAxis->position = $xAlign; + + $chart->yAxis->axisLabelRenderer = $yRenderer; + $chart->yAxis->axisSpace = $ySpace; + $chart->yAxis->outerAxisSpace = $outerSpace; + $chart->yAxis->position = $yAlign; + + $chart->data['sampleData'] = new ezcGraphArrayDataSet( array( 'sample 1' => 250, 'sample 2' => 250, 'sample 3' => 0, 'sample 4' => 0, 'sample 5' => 500, 'sample 6' => 500) ); + + $chart->render( 560, 250, $filename ); + $this->compare( + $filename, + $this->basePath . 'compare/' . __CLASS__ . '_' . __FUNCTION__ . '_' . self::$i . '.svg' + ); + } +} +?> diff --git a/tests/data/compare/ezcGraphAxisRotatedRendererTest_testOptimalAngleCalculation.svg b/tests/data/compare/ezcGraphAxisRotatedRendererTest_testOptimalAngleCalculation.svg index e4691ee..c84fdad 100644 --- a/tests/data/compare/ezcGraphAxisRotatedRendererTest_testOptimalAngleCalculation.svg +++ b/tests/data/compare/ezcGraphAxisRotatedRendererTest_testOptimalAngleCalculation.svg @@ -1,2 +1,2 @@ <?xml version="1.0"?> -<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 100.0000,0.0000 L 100.0000,200.0000 L 0.0000,200.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,16.0000 L 2.0000,2.0000 L 16.0000,2.0000 L 16.0000,16.0000 L 2.0000,16.0000 z " style="fill: #3465a4; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 2.0000,34.0000 L 2.0000,20.0000 L 16.0000,20.0000 L 16.0000,34.0000 L 2.0000,34.0000 z " style="fill: #4e9a06; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_5"/><path d=" M 100.0000,180.0000 L 500.0000,180.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_7"/><path d=" M 492.0000,176.0000 L 500.0000,180.0000 L 492.0000,184.0000 L 492.0000,176.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 177.6471,20.0000 L 177.6471,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 177.6471,177.0000 L 177.6471,180.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 248.2353,20.0000 L 248.2353,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 248.2353,177.0000 L 248.2353,180.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 318.8235,20.0000 L 318.8235,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 318.8235,177.0000 L 318.8235,180.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 389.4118,20.0000 L 389.4118,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 389.4118,177.0000 L 389.4118,180.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 460.0000,177.0000 L 460.0000,180.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 140.0000,180.0000 L 460.0000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 140.0000,180.0000 L 143.0000,180.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,143.7333 L 460.0000,143.7333" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,143.7333 L 143.0000,143.7333" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,107.4667 L 460.0000,107.4667" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,107.4667 L 143.0000,107.4667" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,71.2000 L 460.0000,71.2000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,71.2000 L 143.0000,71.2000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 177.6471,94.8544 L 177.6471,94.8544" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 177.6471,94.8544 L 248.2353,125.7536" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 248.2353,125.7536 L 318.8235,81.7984" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 318.8235,81.7984 L 389.4118,111.3920" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 389.4118,111.3920 L 460.0000,128.6549" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 177.6471,50.0288 L 177.6471,50.0288" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 177.6471,50.0288 L 248.2353,94.8544" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 248.2353,94.8544 L 318.8235,85.5701" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 318.8235,85.5701 L 389.4118,128.0747" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 389.4118,128.0747 L 460.0000,39.8741" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><g id="ezcGraphTextBox_4"><path d=" M 16.5000,17.0000 L 16.5000,1.5000 L 62.5200,1.5000 L 62.5200,17.0000 L 16.5000,17.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_48"/><text id="ezcGraphTextBox_4_text" x="17.0000" text-length="44.5200px" y="13.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_6"><path d=" M 16.5000,35.0000 L 16.5000,19.5000 L 62.5200,19.5000 L 62.5200,35.0000 L 16.5000,35.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_49"/><text id="ezcGraphTextBox_6_text" x="17.0000" text-length="44.5200px" y="31.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_9" transform="rotate( -14.04 177.6471 180.0000 )"><path d=" M 158.0671,187.0000 L 158.0671,179.5000 L 178.6471,179.5000 L 178.6471,187.0000 L 158.0671,187.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_50"/><text id="ezcGraphTextBox_9_text" x="158.5671" text-length="19.0800px" y="185.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">samp..</text></g><g id="ezcGraphTextBox_12" transform="rotate( -14.04 248.2353 180.0000 )"><path d=" M 228.6553,193.1000 L 228.6553,179.5000 L 249.2353,179.5000 L 249.2353,193.1000 L 228.6553,193.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_51"/><text id="ezcGraphTextBox_12_text" x="229.1553" text-length="19.0800px" y="185.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_12_text" x="244.5153" text-length="3.7200px" y="191.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_15" transform="rotate( -14.04 318.8235 180.0000 )"><path d=" M 299.2435,193.1000 L 299.2435,179.5000 L 319.8235,179.5000 L 319.8235,193.1000 L 299.2435,193.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_52"/><text id="ezcGraphTextBox_15_text" x="299.7435" text-length="19.0800px" y="185.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_15_text" x="315.1035" text-length="3.7200px" y="191.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_18" transform="rotate( -14.04 389.4118 180.0000 )"><path d=" M 369.8318,193.1000 L 369.8318,179.5000 L 390.4118,179.5000 L 390.4118,193.1000 L 369.8318,193.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_53"/><text id="ezcGraphTextBox_18_text" x="370.3318" text-length="19.0800px" y="185.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_18_text" x="385.6918" text-length="3.7200px" y="191.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_21" transform="rotate( -14.04 460.0000 180.0000 )"><path d=" M 440.4200,187.0000 L 440.4200,179.5000 L 461.0000,179.5000 L 461.0000,187.0000 L 440.4200,187.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_54"/><text id="ezcGraphTextBox_21_text" x="440.9200" text-length="19.0800px" y="185.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">samp..</text></g><g id="ezcGraphTextBox_26" transform="rotate( 53.13 140.0000 180.0000 )"><path d=" M 135.7800,187.0000 L 135.7800,179.5000 L 141.0000,179.5000 L 141.0000,187.0000 L 135.7800,187.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_26_text" x="136.2800" text-length="3.7200px" y="185.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29" transform="rotate( 53.13 140.0000 143.7333 )"><path d=" M 128.3400,150.7333 L 128.3400,143.2333 L 141.0000,143.2333 L 141.0000,150.7333 L 128.3400,150.7333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_29_text" x="128.8400" text-length="11.1600px" y="148.8333" style="font-size: 6px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_32" transform="rotate( 53.13 140.0000 107.4667 )"><path d=" M 128.3400,114.4667 L 128.3400,106.9667 L 141.0000,106.9667 L 141.0000,114.4667 L 128.3400,114.4667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_32_text" x="128.8400" text-length="11.1600px" y="112.5667" style="font-size: 6px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_35" transform="rotate( 53.13 140.0000 71.2000 )"><path d=" M 128.3400,78.2000 L 128.3400,70.7000 L 141.0000,70.7000 L 141.0000,78.2000 L 128.3400,78.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_35_text" x="128.8400" text-length="11.1600px" y="76.3000" style="font-size: 6px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg> +<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 100.0000,0.0000 L 100.0000,200.0000 L 0.0000,200.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,16.0000 L 2.0000,2.0000 L 16.0000,2.0000 L 16.0000,16.0000 L 2.0000,16.0000 z " style="fill: #3465a4; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 2.0000,34.0000 L 2.0000,20.0000 L 16.0000,20.0000 L 16.0000,34.0000 L 2.0000,34.0000 z " style="fill: #4e9a06; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_5"/><path d=" M 100.0000,180.0000 L 500.0000,180.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_7"/><path d=" M 492.0000,176.0000 L 500.0000,180.0000 L 492.0000,184.0000 L 492.0000,176.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 177.6471,20.0000 L 177.6471,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 177.6471,177.0000 L 177.6471,180.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 248.2353,20.0000 L 248.2353,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 248.2353,177.0000 L 248.2353,180.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 318.8235,20.0000 L 318.8235,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 318.8235,177.0000 L 318.8235,180.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 389.4118,20.0000 L 389.4118,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 389.4118,177.0000 L 389.4118,180.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 460.0000,177.0000 L 460.0000,180.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 140.0000,180.0000 L 460.0000,180.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 140.0000,180.0000 L 143.0000,180.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,143.7333 L 460.0000,143.7333" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,143.7333 L 143.0000,143.7333" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,107.4667 L 460.0000,107.4667" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,107.4667 L 143.0000,107.4667" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,71.2000 L 460.0000,71.2000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,71.2000 L 143.0000,71.2000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 177.6471,146.0544 L 177.6471,146.0544" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 177.6471,146.0544 L 248.2353,176.9536" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 248.2353,176.9536 L 318.8235,132.9984" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 318.8235,132.9984 L 389.4118,162.5920" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 389.4118,162.5920 L 460.0000,179.8549" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 177.6471,101.2288 L 177.6471,101.2288" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 177.6471,101.2288 L 248.2353,146.0544" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 248.2353,146.0544 L 318.8235,136.7701" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 318.8235,136.7701 L 389.4118,179.2747" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 389.4118,179.2747 L 460.0000,91.0741" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><g id="ezcGraphTextBox_4"><path d=" M 16.5000,17.0000 L 16.5000,1.5000 L 62.5200,1.5000 L 62.5200,17.0000 L 16.5000,17.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_48"/><text id="ezcGraphTextBox_4_text" x="17.0000" text-length="44.5200px" y="13.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_6"><path d=" M 16.5000,35.0000 L 16.5000,19.5000 L 62.5200,19.5000 L 62.5200,35.0000 L 16.5000,35.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_49"/><text id="ezcGraphTextBox_6_text" x="17.0000" text-length="44.5200px" y="31.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_9" transform="rotate( -14.04 177.6471 180.0000 )"><path d=" M 158.0671,187.0000 L 158.0671,179.5000 L 178.6471,179.5000 L 178.6471,187.0000 L 158.0671,187.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_50"/><text id="ezcGraphTextBox_9_text" x="158.5671" text-length="19.0800px" y="185.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">samp..</text></g><g id="ezcGraphTextBox_12" transform="rotate( -14.04 248.2353 180.0000 )"><path d=" M 228.6553,193.1000 L 228.6553,179.5000 L 249.2353,179.5000 L 249.2353,193.1000 L 228.6553,193.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_51"/><text id="ezcGraphTextBox_12_text" x="229.1553" text-length="19.0800px" y="185.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_12_text" x="244.5153" text-length="3.7200px" y="191.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_15" transform="rotate( -14.04 318.8235 180.0000 )"><path d=" M 299.2435,193.1000 L 299.2435,179.5000 L 319.8235,179.5000 L 319.8235,193.1000 L 299.2435,193.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_52"/><text id="ezcGraphTextBox_15_text" x="299.7435" text-length="19.0800px" y="185.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_15_text" x="315.1035" text-length="3.7200px" y="191.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_18" transform="rotate( -14.04 389.4118 180.0000 )"><path d=" M 369.8318,193.1000 L 369.8318,179.5000 L 390.4118,179.5000 L 390.4118,193.1000 L 369.8318,193.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_53"/><text id="ezcGraphTextBox_18_text" x="370.3318" text-length="19.0800px" y="185.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_18_text" x="385.6918" text-length="3.7200px" y="191.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_21" transform="rotate( -14.04 460.0000 180.0000 )"><path d=" M 440.4200,187.0000 L 440.4200,179.5000 L 461.0000,179.5000 L 461.0000,187.0000 L 440.4200,187.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_54"/><text id="ezcGraphTextBox_21_text" x="440.9200" text-length="19.0800px" y="185.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">samp..</text></g><g id="ezcGraphTextBox_26" transform="rotate( 53.13 140.0000 180.0000 )"><path d=" M 135.7800,187.0000 L 135.7800,179.5000 L 141.0000,179.5000 L 141.0000,187.0000 L 135.7800,187.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_26_text" x="136.2800" text-length="3.7200px" y="185.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29" transform="rotate( 53.13 140.0000 143.7333 )"><path d=" M 128.3400,150.7333 L 128.3400,143.2333 L 141.0000,143.2333 L 141.0000,150.7333 L 128.3400,150.7333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_29_text" x="128.8400" text-length="11.1600px" y="148.8333" style="font-size: 6px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_32" transform="rotate( 53.13 140.0000 107.4667 )"><path d=" M 128.3400,114.4667 L 128.3400,106.9667 L 141.0000,106.9667 L 141.0000,114.4667 L 128.3400,114.4667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_32_text" x="128.8400" text-length="11.1600px" y="112.5667" style="font-size: 6px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_35" transform="rotate( 53.13 140.0000 71.2000 )"><path d=" M 128.3400,78.2000 L 128.3400,70.7000 L 141.0000,70.7000 L 141.0000,78.2000 L 128.3400,78.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_35_text" x="128.8400" text-length="11.1600px" y="76.3000" style="font-size: 6px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisRotatedRendererTest_testRenderCompleteLineChart.svg b/tests/data/compare/ezcGraphAxisRotatedRendererTest_testRenderCompleteLineChart.svg index 97ea60b..4e70b13 100644 --- a/tests/data/compare/ezcGraphAxisRotatedRendererTest_testRenderCompleteLineChart.svg +++ b/tests/data/compare/ezcGraphAxisRotatedRendererTest_testRenderCompleteLineChart.svg @@ -1,2 +1,2 @@ <?xml version="1.0"?> -<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 100.0000,0.0000 L 100.0000,200.0000 L 0.0000,200.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,16.0000 L 2.0000,2.0000 L 16.0000,2.0000 L 16.0000,16.0000 L 2.0000,16.0000 z " style="fill: #3465a4; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 2.0000,34.0000 L 2.0000,20.0000 L 16.0000,20.0000 L 16.0000,34.0000 L 2.0000,34.0000 z " style="fill: #4e9a06; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_5"/><path d=" M 100.0000,150.0000 L 500.0000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_7"/><path d=" M 492.0000,146.0000 L 500.0000,150.0000 L 492.0000,154.0000 L 492.0000,146.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 190.0000,50.0000 L 190.0000,150.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 190.0000,147.0000 L 190.0000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 257.5000,50.0000 L 257.5000,150.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 257.5000,147.0000 L 257.5000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 325.0000,50.0000 L 325.0000,150.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 325.0000,147.0000 L 325.0000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 392.5000,50.0000 L 392.5000,150.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 392.5000,147.0000 L 392.5000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 460.0000,50.0000 L 460.0000,150.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 460.0000,147.0000 L 460.0000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 140.0000,150.0000 L 460.0000,150.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 140.0000,150.0000 L 143.0000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,130.0000 L 460.0000,130.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,130.0000 L 143.0000,130.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,110.0000 L 460.0000,110.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,110.0000 L 143.0000,110.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,90.0000 L 460.0000,90.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,90.0000 L 143.0000,90.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 190.0000,91.2800 L 190.0000,91.2800" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 190.0000,91.2800 L 257.5000,108.3200" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 257.5000,108.3200 L 325.0000,84.0800" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 325.0000,84.0800 L 392.5000,100.4000" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 392.5000,100.4000 L 460.0000,109.9200" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 190.0000,66.5600 L 190.0000,66.5600" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 190.0000,66.5600 L 257.5000,91.2800" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 257.5000,91.2800 L 325.0000,86.1600" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 325.0000,86.1600 L 392.5000,109.6000" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 392.5000,109.6000 L 460.0000,60.9600" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><g id="ezcGraphTextBox_4"><path d=" M 16.5000,17.0000 L 16.5000,1.5000 L 62.5200,1.5000 L 62.5200,17.0000 L 16.5000,17.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_48"/><text id="ezcGraphTextBox_4_text" x="17.0000" text-length="44.5200px" y="13.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_6"><path d=" M 16.5000,35.0000 L 16.5000,19.5000 L 62.5200,19.5000 L 62.5200,35.0000 L 16.5000,35.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_49"/><text id="ezcGraphTextBox_6_text" x="17.0000" text-length="44.5200px" y="31.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_9" transform="rotate( -45.00 190.0000 150.0000 )"><path d=" M 154.5200,173.1000 L 154.5200,149.5000 L 191.0000,149.5000 L 191.0000,173.1000 L 154.5200,173.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_50"/><text id="ezcGraphTextBox_9_text" x="155.0200" text-length="34.9800px" y="159.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_9_text" x="183.1800" text-length="6.8200px" y="171.4500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_12" transform="rotate( -45.00 257.5000 150.0000 )"><path d=" M 222.0200,173.1000 L 222.0200,149.5000 L 258.5000,149.5000 L 258.5000,173.1000 L 222.0200,173.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_51"/><text id="ezcGraphTextBox_12_text" x="222.5200" text-length="34.9800px" y="159.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_12_text" x="250.6800" text-length="6.8200px" y="171.4500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_15" transform="rotate( -45.00 325.0000 150.0000 )"><path d=" M 289.5200,173.1000 L 289.5200,149.5000 L 326.0000,149.5000 L 326.0000,173.1000 L 289.5200,173.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_52"/><text id="ezcGraphTextBox_15_text" x="290.0200" text-length="34.9800px" y="159.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_15_text" x="318.1800" text-length="6.8200px" y="171.4500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_18" transform="rotate( -45.00 392.5000 150.0000 )"><path d=" M 357.0200,173.1000 L 357.0200,149.5000 L 393.5000,149.5000 L 393.5000,173.1000 L 357.0200,173.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_53"/><text id="ezcGraphTextBox_18_text" x="357.5200" text-length="34.9800px" y="159.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_18_text" x="385.6800" text-length="6.8200px" y="171.4500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_21" transform="rotate( -45.00 460.0000 150.0000 )"><path d=" M 424.5200,173.1000 L 424.5200,149.5000 L 461.0000,149.5000 L 461.0000,173.1000 L 424.5200,173.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_54"/><text id="ezcGraphTextBox_21_text" x="425.0200" text-length="34.9800px" y="159.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_21_text" x="453.1800" text-length="6.8200px" y="171.4500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_26" transform="rotate( 45.00 140.0000 150.0000 )"><path d=" M 132.6800,162.0000 L 132.6800,149.5000 L 141.0000,149.5000 L 141.0000,162.0000 L 132.6800,162.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_26_text" x="133.1800" text-length="6.8200px" y="159.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29" transform="rotate( 45.00 140.0000 130.0000 )"><path d=" M 119.0400,142.0000 L 119.0400,129.5000 L 141.0000,129.5000 L 141.0000,142.0000 L 119.0400,142.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_29_text" x="119.5400" text-length="20.4600px" y="139.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_32" transform="rotate( 45.00 140.0000 110.0000 )"><path d=" M 119.0400,122.0000 L 119.0400,109.5000 L 141.0000,109.5000 L 141.0000,122.0000 L 119.0400,122.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_32_text" x="119.5400" text-length="20.4600px" y="119.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_35" transform="rotate( 45.00 140.0000 90.0000 )"><path d=" M 119.0400,102.0000 L 119.0400,89.5000 L 141.0000,89.5000 L 141.0000,102.0000 L 119.0400,102.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_35_text" x="119.5400" text-length="20.4600px" y="99.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg> +<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 100.0000,0.0000 L 100.0000,200.0000 L 0.0000,200.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,16.0000 L 2.0000,2.0000 L 16.0000,2.0000 L 16.0000,16.0000 L 2.0000,16.0000 z " style="fill: #3465a4; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 2.0000,34.0000 L 2.0000,20.0000 L 16.0000,20.0000 L 16.0000,34.0000 L 2.0000,34.0000 z " style="fill: #4e9a06; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_5"/><path d=" M 100.0000,150.0000 L 500.0000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_7"/><path d=" M 492.0000,146.0000 L 500.0000,150.0000 L 492.0000,154.0000 L 492.0000,146.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 190.0000,50.0000 L 190.0000,150.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 190.0000,147.0000 L 190.0000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 257.5000,50.0000 L 257.5000,150.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 257.5000,147.0000 L 257.5000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 325.0000,50.0000 L 325.0000,150.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 325.0000,147.0000 L 325.0000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 392.5000,50.0000 L 392.5000,150.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 392.5000,147.0000 L 392.5000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 460.0000,50.0000 L 460.0000,150.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 460.0000,147.0000 L 460.0000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 140.0000,150.0000 L 460.0000,150.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 140.0000,150.0000 L 143.0000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,130.0000 L 460.0000,130.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,130.0000 L 143.0000,130.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,110.0000 L 460.0000,110.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,110.0000 L 143.0000,110.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,90.0000 L 460.0000,90.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,90.0000 L 143.0000,90.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 190.0000,131.2800 L 190.0000,131.2800" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 190.0000,131.2800 L 257.5000,148.3200" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 257.5000,148.3200 L 325.0000,124.0800" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 325.0000,124.0800 L 392.5000,140.4000" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 392.5000,140.4000 L 460.0000,149.9200" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 190.0000,106.5600 L 190.0000,106.5600" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 190.0000,106.5600 L 257.5000,131.2800" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 257.5000,131.2800 L 325.0000,126.1600" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 325.0000,126.1600 L 392.5000,149.6000" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 392.5000,149.6000 L 460.0000,100.9600" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><g id="ezcGraphTextBox_4"><path d=" M 16.5000,17.0000 L 16.5000,1.5000 L 62.5200,1.5000 L 62.5200,17.0000 L 16.5000,17.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_48"/><text id="ezcGraphTextBox_4_text" x="17.0000" text-length="44.5200px" y="13.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_6"><path d=" M 16.5000,35.0000 L 16.5000,19.5000 L 62.5200,19.5000 L 62.5200,35.0000 L 16.5000,35.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_49"/><text id="ezcGraphTextBox_6_text" x="17.0000" text-length="44.5200px" y="31.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_9" transform="rotate( -45.00 190.0000 150.0000 )"><path d=" M 154.5200,173.1000 L 154.5200,149.5000 L 191.0000,149.5000 L 191.0000,173.1000 L 154.5200,173.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_50"/><text id="ezcGraphTextBox_9_text" x="155.0200" text-length="34.9800px" y="159.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_9_text" x="183.1800" text-length="6.8200px" y="171.4500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_12" transform="rotate( -45.00 257.5000 150.0000 )"><path d=" M 222.0200,173.1000 L 222.0200,149.5000 L 258.5000,149.5000 L 258.5000,173.1000 L 222.0200,173.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_51"/><text id="ezcGraphTextBox_12_text" x="222.5200" text-length="34.9800px" y="159.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_12_text" x="250.6800" text-length="6.8200px" y="171.4500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_15" transform="rotate( -45.00 325.0000 150.0000 )"><path d=" M 289.5200,173.1000 L 289.5200,149.5000 L 326.0000,149.5000 L 326.0000,173.1000 L 289.5200,173.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_52"/><text id="ezcGraphTextBox_15_text" x="290.0200" text-length="34.9800px" y="159.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_15_text" x="318.1800" text-length="6.8200px" y="171.4500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_18" transform="rotate( -45.00 392.5000 150.0000 )"><path d=" M 357.0200,173.1000 L 357.0200,149.5000 L 393.5000,149.5000 L 393.5000,173.1000 L 357.0200,173.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_53"/><text id="ezcGraphTextBox_18_text" x="357.5200" text-length="34.9800px" y="159.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_18_text" x="385.6800" text-length="6.8200px" y="171.4500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_21" transform="rotate( -45.00 460.0000 150.0000 )"><path d=" M 424.5200,173.1000 L 424.5200,149.5000 L 461.0000,149.5000 L 461.0000,173.1000 L 424.5200,173.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_54"/><text id="ezcGraphTextBox_21_text" x="425.0200" text-length="34.9800px" y="159.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_21_text" x="453.1800" text-length="6.8200px" y="171.4500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_26" transform="rotate( 45.00 140.0000 150.0000 )"><path d=" M 132.6800,162.0000 L 132.6800,149.5000 L 141.0000,149.5000 L 141.0000,162.0000 L 132.6800,162.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_26_text" x="133.1800" text-length="6.8200px" y="159.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29" transform="rotate( 45.00 140.0000 130.0000 )"><path d=" M 119.0400,142.0000 L 119.0400,129.5000 L 141.0000,129.5000 L 141.0000,142.0000 L 119.0400,142.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_29_text" x="119.5400" text-length="20.4600px" y="139.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_32" transform="rotate( 45.00 140.0000 110.0000 )"><path d=" M 119.0400,122.0000 L 119.0400,109.5000 L 141.0000,109.5000 L 141.0000,122.0000 L 119.0400,122.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_32_text" x="119.5400" text-length="20.4600px" y="119.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_35" transform="rotate( 45.00 140.0000 90.0000 )"><path d=" M 119.0400,102.0000 L 119.0400,89.5000 L 141.0000,89.5000 L 141.0000,102.0000 L 119.0400,102.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_35_text" x="119.5400" text-length="20.4600px" y="99.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisRotatedRendererTest_testRenderCompleteLineChartReverseRotated.svg b/tests/data/compare/ezcGraphAxisRotatedRendererTest_testRenderCompleteLineChartReverseRotated.svg index eba9269..99ad26f 100644 --- a/tests/data/compare/ezcGraphAxisRotatedRendererTest_testRenderCompleteLineChartReverseRotated.svg +++ b/tests/data/compare/ezcGraphAxisRotatedRendererTest_testRenderCompleteLineChartReverseRotated.svg @@ -1,2 +1,2 @@ <?xml version="1.0"?> -<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 100.0000,0.0000 L 100.0000,200.0000 L 0.0000,200.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,16.0000 L 2.0000,2.0000 L 16.0000,2.0000 L 16.0000,16.0000 L 2.0000,16.0000 z " style="fill: #3465a4; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 2.0000,34.0000 L 2.0000,20.0000 L 16.0000,20.0000 L 16.0000,34.0000 L 2.0000,34.0000 z " style="fill: #4e9a06; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_5"/><path d=" M 100.0000,150.0000 L 500.0000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_7"/><path d=" M 492.0000,146.0000 L 500.0000,150.0000 L 492.0000,154.0000 L 492.0000,146.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 140.0000,50.0000 L 140.0000,150.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 140.0000,147.0000 L 140.0000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 207.5000,50.0000 L 207.5000,150.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 207.5000,147.0000 L 207.5000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 275.0000,50.0000 L 275.0000,150.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 275.0000,147.0000 L 275.0000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 342.5000,50.0000 L 342.5000,150.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 342.5000,147.0000 L 342.5000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 410.0000,50.0000 L 410.0000,150.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 410.0000,147.0000 L 410.0000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 140.0000,110.0000 L 460.0000,110.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 140.0000,110.0000 L 143.0000,110.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,90.0000 L 460.0000,90.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,90.0000 L 143.0000,90.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,70.0000 L 460.0000,70.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,70.0000 L 143.0000,70.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,50.0000 L 460.0000,50.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,50.0000 L 143.0000,50.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 140.0000,131.2800 L 140.0000,131.2800" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 140.0000,131.2800 L 207.5000,148.3200" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 207.5000,148.3200 L 275.0000,124.0800" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 275.0000,124.0800 L 342.5000,140.4000" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 342.5000,140.4000 L 410.0000,149.9200" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 140.0000,106.5600 L 140.0000,106.5600" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 140.0000,106.5600 L 207.5000,131.2800" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 207.5000,131.2800 L 275.0000,126.1600" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 275.0000,126.1600 L 342.5000,149.6000" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 342.5000,149.6000 L 410.0000,100.9600" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><g id="ezcGraphTextBox_4"><path d=" M 16.5000,17.0000 L 16.5000,1.5000 L 62.5200,1.5000 L 62.5200,17.0000 L 16.5000,17.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_48"/><text id="ezcGraphTextBox_4_text" x="17.0000" text-length="44.5200px" y="13.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_6"><path d=" M 16.5000,35.0000 L 16.5000,19.5000 L 62.5200,19.5000 L 62.5200,35.0000 L 16.5000,35.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_49"/><text id="ezcGraphTextBox_6_text" x="17.0000" text-length="44.5200px" y="31.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_9" transform="rotate( 45.00 140.0000 150.0000 )"><path d=" M 139.5000,173.1000 L 139.5000,149.5000 L 175.9800,149.5000 L 175.9800,173.1000 L 139.5000,173.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_50"/><text id="ezcGraphTextBox_9_text" x="140.0000" text-length="34.9800px" y="159.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_9_text" x="140.0000" text-length="6.8200px" y="171.4500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_12" transform="rotate( 45.00 207.5000 150.0000 )"><path d=" M 207.0000,173.1000 L 207.0000,149.5000 L 243.4800,149.5000 L 243.4800,173.1000 L 207.0000,173.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_51"/><text id="ezcGraphTextBox_12_text" x="207.5000" text-length="34.9800px" y="159.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_12_text" x="207.5000" text-length="6.8200px" y="171.4500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_15" transform="rotate( 45.00 275.0000 150.0000 )"><path d=" M 274.5000,173.1000 L 274.5000,149.5000 L 310.9800,149.5000 L 310.9800,173.1000 L 274.5000,173.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_52"/><text id="ezcGraphTextBox_15_text" x="275.0000" text-length="34.9800px" y="159.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_15_text" x="275.0000" text-length="6.8200px" y="171.4500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_18" transform="rotate( 45.00 342.5000 150.0000 )"><path d=" M 342.0000,173.1000 L 342.0000,149.5000 L 378.4800,149.5000 L 378.4800,173.1000 L 342.0000,173.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_53"/><text id="ezcGraphTextBox_18_text" x="342.5000" text-length="34.9800px" y="159.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_18_text" x="342.5000" text-length="6.8200px" y="171.4500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_21" transform="rotate( 45.00 410.0000 150.0000 )"><path d=" M 409.5000,173.1000 L 409.5000,149.5000 L 445.9800,149.5000 L 445.9800,173.1000 L 409.5000,173.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_54"/><text id="ezcGraphTextBox_21_text" x="410.0000" text-length="34.9800px" y="159.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_21_text" x="410.0000" text-length="6.8200px" y="171.4500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_26" transform="rotate( -45.00 140.0000 110.0000 )"><path d=" M 132.6800,111.0000 L 132.6800,98.5000 L 141.0000,98.5000 L 141.0000,111.0000 L 132.6800,111.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_26_text" x="133.1800" text-length="6.8200px" y="108.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29" transform="rotate( -45.00 140.0000 90.0000 )"><path d=" M 119.0400,91.0000 L 119.0400,78.5000 L 141.0000,78.5000 L 141.0000,91.0000 L 119.0400,91.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_29_text" x="119.5400" text-length="20.4600px" y="88.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_32" transform="rotate( -45.00 140.0000 70.0000 )"><path d=" M 119.0400,71.0000 L 119.0400,58.5000 L 141.0000,58.5000 L 141.0000,71.0000 L 119.0400,71.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_32_text" x="119.5400" text-length="20.4600px" y="68.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_35" transform="rotate( -45.00 140.0000 50.0000 )"><path d=" M 119.0400,51.0000 L 119.0400,38.5000 L 141.0000,38.5000 L 141.0000,51.0000 L 119.0400,51.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_35_text" x="119.5400" text-length="20.4600px" y="48.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg> +<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 100.0000,0.0000 L 100.0000,200.0000 L 0.0000,200.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,16.0000 L 2.0000,2.0000 L 16.0000,2.0000 L 16.0000,16.0000 L 2.0000,16.0000 z " style="fill: #3465a4; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 2.0000,34.0000 L 2.0000,20.0000 L 16.0000,20.0000 L 16.0000,34.0000 L 2.0000,34.0000 z " style="fill: #4e9a06; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_5"/><path d=" M 100.0000,150.0000 L 500.0000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_7"/><path d=" M 492.0000,146.0000 L 500.0000,150.0000 L 492.0000,154.0000 L 492.0000,146.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 140.0000,50.0000 L 140.0000,150.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 140.0000,147.0000 L 140.0000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 207.5000,50.0000 L 207.5000,150.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 207.5000,147.0000 L 207.5000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 275.0000,50.0000 L 275.0000,150.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 275.0000,147.0000 L 275.0000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 342.5000,50.0000 L 342.5000,150.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 342.5000,147.0000 L 342.5000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 410.0000,50.0000 L 410.0000,150.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 410.0000,147.0000 L 410.0000,150.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 140.0000,110.0000 L 460.0000,110.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 140.0000,110.0000 L 143.0000,110.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,90.0000 L 460.0000,90.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,90.0000 L 143.0000,90.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,70.0000 L 460.0000,70.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,70.0000 L 143.0000,70.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,50.0000 L 460.0000,50.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 0.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,50.0000 L 143.0000,50.0000" style="fill: none; stroke: #2e3436; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 190.0000,131.2800 L 190.0000,131.2800" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 190.0000,131.2800 L 257.5000,148.3200" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 257.5000,148.3200 L 325.0000,124.0800" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 325.0000,124.0800 L 392.5000,140.4000" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 392.5000,140.4000 L 460.0000,149.9200" style="fill: none; stroke: #3465a4; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 190.0000,106.5600 L 190.0000,106.5600" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 190.0000,106.5600 L 257.5000,131.2800" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 257.5000,131.2800 L 325.0000,126.1600" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 325.0000,126.1600 L 392.5000,149.6000" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 392.5000,149.6000 L 460.0000,100.9600" style="fill: none; stroke: #4e9a06; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><g id="ezcGraphTextBox_4"><path d=" M 16.5000,17.0000 L 16.5000,1.5000 L 62.5200,1.5000 L 62.5200,17.0000 L 16.5000,17.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_48"/><text id="ezcGraphTextBox_4_text" x="17.0000" text-length="44.5200px" y="13.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_6"><path d=" M 16.5000,35.0000 L 16.5000,19.5000 L 62.5200,19.5000 L 62.5200,35.0000 L 16.5000,35.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_49"/><text id="ezcGraphTextBox_6_text" x="17.0000" text-length="44.5200px" y="31.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_9" transform="rotate( 45.00 140.0000 150.0000 )"><path d=" M 139.5000,173.1000 L 139.5000,149.5000 L 175.9800,149.5000 L 175.9800,173.1000 L 139.5000,173.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_50"/><text id="ezcGraphTextBox_9_text" x="140.0000" text-length="34.9800px" y="159.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_9_text" x="140.0000" text-length="6.8200px" y="171.4500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_12" transform="rotate( 45.00 207.5000 150.0000 )"><path d=" M 207.0000,173.1000 L 207.0000,149.5000 L 243.4800,149.5000 L 243.4800,173.1000 L 207.0000,173.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_51"/><text id="ezcGraphTextBox_12_text" x="207.5000" text-length="34.9800px" y="159.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_12_text" x="207.5000" text-length="6.8200px" y="171.4500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_15" transform="rotate( 45.00 275.0000 150.0000 )"><path d=" M 274.5000,173.1000 L 274.5000,149.5000 L 310.9800,149.5000 L 310.9800,173.1000 L 274.5000,173.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_52"/><text id="ezcGraphTextBox_15_text" x="275.0000" text-length="34.9800px" y="159.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_15_text" x="275.0000" text-length="6.8200px" y="171.4500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_18" transform="rotate( 45.00 342.5000 150.0000 )"><path d=" M 342.0000,173.1000 L 342.0000,149.5000 L 378.4800,149.5000 L 378.4800,173.1000 L 342.0000,173.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_53"/><text id="ezcGraphTextBox_18_text" x="342.5000" text-length="34.9800px" y="159.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_18_text" x="342.5000" text-length="6.8200px" y="171.4500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_21" transform="rotate( 45.00 410.0000 150.0000 )"><path d=" M 409.5000,173.1000 L 409.5000,149.5000 L 445.9800,149.5000 L 445.9800,173.1000 L 409.5000,173.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_54"/><text id="ezcGraphTextBox_21_text" x="410.0000" text-length="34.9800px" y="159.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_21_text" x="410.0000" text-length="6.8200px" y="171.4500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_26" transform="rotate( -45.00 140.0000 110.0000 )"><path d=" M 132.6800,111.0000 L 132.6800,98.5000 L 141.0000,98.5000 L 141.0000,111.0000 L 132.6800,111.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_26_text" x="133.1800" text-length="6.8200px" y="108.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29" transform="rotate( -45.00 140.0000 90.0000 )"><path d=" M 119.0400,91.0000 L 119.0400,78.5000 L 141.0000,78.5000 L 141.0000,91.0000 L 119.0400,91.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_29_text" x="119.5400" text-length="20.4600px" y="88.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_32" transform="rotate( -45.00 140.0000 70.0000 )"><path d=" M 119.0400,71.0000 L 119.0400,58.5000 L 141.0000,58.5000 L 141.0000,71.0000 L 119.0400,71.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_32_text" x="119.5400" text-length="20.4600px" y="68.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_35" transform="rotate( -45.00 140.0000 50.0000 )"><path d=" M 119.0400,51.0000 L 119.0400,38.5000 L 141.0000,38.5000 L 141.0000,51.0000 L 119.0400,51.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_35_text" x="119.5400" text-length="20.4600px" y="48.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #2e3436; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_1.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_1.svg new file mode 100644 index 0000000..2a7cc93 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_1.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,225.0000 L 560.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,221.0000 L 560.0000,225.0000 L 552.0000,229.0000 L 552.0000,221.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 268.8000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 268.8000,222.0000 L 268.8000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 336.0000,12.5000 L 336.0000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 336.0000,222.0000 L 336.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 403.2000,12.5000 L 403.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 403.2000,222.0000 L 403.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 470.4000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 470.4000,222.0000 L 470.4000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 537.6000,222.0000 L 537.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 201.6000,250.0000 L 201.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 197.6000,8.0000 L 201.6000,0.0000 L 205.6000,8.0000 L 197.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 201.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 201.6000,214.3750 L 202.6000,214.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 201.6000,203.7500 L 202.6000,203.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,193.1250 L 202.6000,193.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,182.5000 L 204.6000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,171.8750 L 202.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 201.6000,161.2500 L 202.6000,161.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,150.6250 L 202.6000,150.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,140.0000 L 204.6000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,129.3750 L 202.6000,129.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 201.6000,118.7500 L 202.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 201.6000,108.1250 L 202.6000,108.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 201.6000,97.5000 L 204.6000,97.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 201.6000,86.8750 L 202.6000,86.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 201.6000,76.2500 L 202.6000,76.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 201.6000,65.6250 L 202.6000,65.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 201.6000,55.0000 L 204.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 201.6000,44.3750 L 202.6000,44.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 201.6000,33.7500 L 202.6000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 201.6000,23.1250 L 202.6000,23.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 201.6000,12.5000 L 204.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,118.7500 L 201.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 201.6000,118.7500 L 268.8000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 268.8000,118.7500 L 336.0000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 336.0000,225.0000 L 403.2000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 403.2000,225.0000 L 470.4000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 470.4000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="201.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="268.8000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="336.0000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="403.2000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="470.4000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="537.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 249.2200,237.0000 L 249.2200,226.5000 L 288.8800,226.5000 L 288.8800,237.0000 L 249.2200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_10_text" x="249.7200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_13"><path d=" M 316.4200,237.0000 L 316.4200,226.5000 L 356.0800,226.5000 L 356.0800,237.0000 L 316.4200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_13_text" x="316.9200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_16"><path d=" M 383.6200,237.0000 L 383.6200,226.5000 L 423.2800,226.5000 L 423.2800,237.0000 L 383.6200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_16_text" x="384.1200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_19"><path d=" M 450.8200,237.0000 L 450.8200,226.5000 L 490.4800,226.5000 L 490.4800,237.0000 L 450.8200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_19_text" x="451.3200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 518.0200,237.0000 L 518.0200,226.5000 L 557.6800,226.5000 L 557.6800,237.0000 L 518.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_22_text" x="518.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_25"><path d=" M 193.5200,224.0000 L 193.5200,213.5000 L 200.6000,213.5000 L 200.6000,224.0000 L 193.5200,224.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_25_text" x="194.0200" text-length="5.5800px" y="221.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_34"><path d=" M 182.3600,181.5000 L 182.3600,171.0000 L 200.6000,171.0000 L 200.6000,181.5000 L 182.3600,181.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="182.8600" text-length="16.7400px" y="179.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 182.3600,139.0000 L 182.3600,128.5000 L 200.6000,128.5000 L 200.6000,139.0000 L 182.3600,139.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="182.8600" text-length="16.7400px" y="136.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 182.3600,96.5000 L 182.3600,86.0000 L 200.6000,86.0000 L 200.6000,96.5000 L 182.3600,96.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="182.8600" text-length="16.7400px" y="94.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 182.3600,54.0000 L 182.3600,43.5000 L 200.6000,43.5000 L 200.6000,54.0000 L 182.3600,54.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="182.8600" text-length="16.7400px" y="51.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 182.3600,24.5000 L 182.3600,14.0000 L 200.6000,14.0000 L 200.6000,24.5000 L 182.3600,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="182.8600" text-length="16.7400px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_10.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_10.svg new file mode 100644 index 0000000..fdbd757 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_10.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,12.5000 L 560.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,8.5000 L 560.0000,12.5000 L 552.0000,16.5000 L 552.0000,8.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 232.9600,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 232.9600,9.5000 L 232.9600,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 309.1200,12.5000 L 309.1200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 309.1200,9.5000 L 309.1200,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 385.2800,12.5000 L 385.2800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 385.2800,9.5000 L 385.2800,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 461.4400,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 461.4400,9.5000 L 461.4400,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 537.6000,9.5000 L 537.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 156.8000,0.0000 L 156.8000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 160.3000,243.0000 L 156.8000,250.0000 L 153.3000,243.0000 L 160.3000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 156.8000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 157.8000,21.8750 L 156.8000,21.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 157.8000,31.2500 L 156.8000,31.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 157.8000,40.6250 L 156.8000,40.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 159.8000,50.0000 L 156.8000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 157.8000,59.3750 L 156.8000,59.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 157.8000,68.7500 L 156.8000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 157.8000,78.1250 L 156.8000,78.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 159.8000,87.5000 L 156.8000,87.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 157.8000,96.8750 L 156.8000,96.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 157.8000,106.2500 L 156.8000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 157.8000,115.6250 L 156.8000,115.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 159.8000,125.0000 L 156.8000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 157.8000,134.3750 L 156.8000,134.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 157.8000,143.7500 L 156.8000,143.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 157.8000,153.1250 L 156.8000,153.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 159.8000,162.5000 L 156.8000,162.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 157.8000,171.8750 L 156.8000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 157.8000,181.2500 L 156.8000,181.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 157.8000,190.6250 L 156.8000,190.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 159.8000,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,106.2500 L 156.8000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 156.8000,106.2500 L 232.9600,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 232.9600,106.2500 L 309.1200,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 309.1200,12.5000 L 385.2800,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 385.2800,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 461.4400,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="156.8000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="232.9600" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="309.1200" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="385.2800" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="461.4400" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="537.6000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 218.1500,33.6000 L 218.1500,14.0000 L 248.2700,14.0000 L 248.2700,33.6000 L 218.1500,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_10_text" x="218.6500" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_10_text" x="230.1700" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_13"><path d=" M 294.3100,33.6000 L 294.3100,14.0000 L 324.4300,14.0000 L 324.4300,33.6000 L 294.3100,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_13_text" x="294.8100" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_13_text" x="306.3300" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_16"><path d=" M 370.4700,33.6000 L 370.4700,14.0000 L 400.5900,14.0000 L 400.5900,33.6000 L 370.4700,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_16_text" x="370.9700" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_16_text" x="382.4900" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_19"><path d=" M 446.6300,33.6000 L 446.6300,14.0000 L 476.7500,14.0000 L 476.7500,33.6000 L 446.6300,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_19_text" x="447.1300" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_19_text" x="458.6500" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_22"><path d=" M 522.7900,33.6000 L 522.7900,14.0000 L 552.9100,14.0000 L 552.9100,33.6000 L 522.7900,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_22_text" x="523.2900" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="534.8100" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25"><path d=" M 148.7200,24.5000 L 148.7200,14.0000 L 155.8000,14.0000 L 155.8000,24.5000 L 148.7200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_25_text" x="149.2200" text-length="5.5800px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_34"><path d=" M 137.5600,62.0000 L 137.5600,51.5000 L 155.8000,51.5000 L 155.8000,62.0000 L 137.5600,62.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="138.0600" text-length="16.7400px" y="59.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 137.5600,99.5000 L 137.5600,89.0000 L 155.8000,89.0000 L 155.8000,99.5000 L 137.5600,99.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="138.0600" text-length="16.7400px" y="97.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 137.5600,137.0000 L 137.5600,126.5000 L 155.8000,126.5000 L 155.8000,137.0000 L 137.5600,137.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="138.0600" text-length="16.7400px" y="134.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 137.5600,174.5000 L 137.5600,164.0000 L 155.8000,164.0000 L 155.8000,174.5000 L 137.5600,174.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="138.0600" text-length="16.7400px" y="172.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 137.5600,199.0000 L 137.5600,188.5000 L 155.8000,188.5000 L 155.8000,199.0000 L 137.5600,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="138.0600" text-length="16.7400px" y="196.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_100.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_100.svg new file mode 100644 index 0000000..b6385dd --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_100.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,12.5000 L 112.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,16.5000 L 112.0000,12.5000 L 120.0000,8.5000 L 120.0000,16.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 481.6000,12.5000 L 481.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 481.6000,15.5000 L 481.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 425.6000,12.5000 L 425.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 425.6000,15.5000 L 425.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 369.6000,12.5000 L 369.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 369.6000,15.5000 L 369.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 313.6000,12.5000 L 313.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 313.6000,15.5000 L 313.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 257.6000,12.5000 L 257.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 257.6000,15.5000 L 257.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 201.6000,12.5000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 201.6000,15.5000 L 201.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 537.6000,0.0000 L 537.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 541.6000,242.0000 L 537.6000,250.0000 L 533.6000,242.0000 L 541.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 538.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 538.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 538.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 540.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 538.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 538.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 538.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 540.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 538.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 538.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 538.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 540.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 201.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 538.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 538.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 538.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 540.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 201.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 538.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 538.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 538.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 540.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 509.6000,118.7500 L 509.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 509.6000,118.7500 L 453.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 453.6000,118.7500 L 397.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 397.6000,12.5000 L 341.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 341.6000,12.5000 L 285.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 285.6000,225.0000 L 229.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="509.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="453.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="397.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="341.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="285.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="229.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 490.0200,24.5000 L 490.0200,14.0000 L 529.6800,14.0000 L 529.6800,24.5000 L 490.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="490.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_11"><path d=" M 434.0200,24.5000 L 434.0200,14.0000 L 473.6800,14.0000 L 473.6800,24.5000 L 434.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="434.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 378.0200,24.5000 L 378.0200,14.0000 L 417.6800,14.0000 L 417.6800,24.5000 L 378.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="378.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_17"><path d=" M 322.0200,24.5000 L 322.0200,14.0000 L 361.6800,14.0000 L 361.6800,24.5000 L 322.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="322.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_20"><path d=" M 266.0200,24.5000 L 266.0200,14.0000 L 305.6800,14.0000 L 305.6800,24.5000 L 266.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="266.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_23"><path d=" M 210.0200,24.5000 L 210.0200,14.0000 L 249.6800,14.0000 L 249.6800,24.5000 L 210.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="210.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_36"><path d=" M 518.3600,60.5000 L 518.3600,50.0000 L 536.6000,50.0000 L 536.6000,60.5000 L 518.3600,60.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="518.8600" text-length="16.7400px" y="58.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 518.3600,103.0000 L 518.3600,92.5000 L 536.6000,92.5000 L 536.6000,103.0000 L 518.3600,103.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="518.8600" text-length="16.7400px" y="100.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 518.3600,145.5000 L 518.3600,135.0000 L 536.6000,135.0000 L 536.6000,145.5000 L 518.3600,145.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="518.8600" text-length="16.7400px" y="143.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 518.3600,188.0000 L 518.3600,177.5000 L 536.6000,177.5000 L 536.6000,188.0000 L 518.3600,188.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="518.8600" text-length="16.7400px" y="185.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 518.3600,230.5000 L 518.3600,220.0000 L 536.6000,220.0000 L 536.6000,230.5000 L 518.3600,230.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="518.8600" text-length="16.7400px" y="228.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_101.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_101.svg new file mode 100644 index 0000000..62a2cfb --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_101.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,225.0000 L 560.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,221.0000 L 560.0000,225.0000 L 552.0000,229.0000 L 552.0000,221.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 253.8667,25.0000 L 253.8667,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 253.8667,222.0000 L 253.8667,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 306.1333,25.0000 L 306.1333,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 306.1333,222.0000 L 306.1333,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 358.4000,25.0000 L 358.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 358.4000,222.0000 L 358.4000,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 410.6667,25.0000 L 410.6667,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 410.6667,222.0000 L 410.6667,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 462.9333,25.0000 L 462.9333,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 462.9333,222.0000 L 462.9333,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 515.2000,222.0000 L 515.2000,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 201.6000,250.0000 L 201.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 197.6000,8.0000 L 201.6000,0.0000 L 205.6000,8.0000 L 197.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 201.6000,215.0000 L 202.6000,215.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,205.0000 L 202.6000,205.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,195.0000 L 202.6000,195.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,185.0000 L 204.6000,185.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 201.6000,175.0000 L 202.6000,175.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,165.0000 L 202.6000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,155.0000 L 202.6000,155.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,145.0000 L 204.6000,145.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 201.6000,135.0000 L 202.6000,135.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 201.6000,125.0000 L 202.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 201.6000,115.0000 L 202.6000,115.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 201.6000,105.0000 L 204.6000,105.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 201.6000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 201.6000,95.0000 L 202.6000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 201.6000,85.0000 L 202.6000,85.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 201.6000,75.0000 L 202.6000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 201.6000,65.0000 L 204.6000,65.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 201.6000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 201.6000,55.0000 L 202.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 201.6000,45.0000 L 202.6000,45.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 201.6000,35.0000 L 202.6000,35.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 201.6000,25.0000 L 204.6000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 227.7333,125.0000 L 227.7333,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 227.7333,125.0000 L 280.0000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 280.0000,125.0000 L 332.2667,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 332.2667,225.0000 L 384.5333,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 384.5333,225.0000 L 436.8000,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 436.8000,25.0000 L 489.0667,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="227.7333" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="280.0000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="332.2667" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="384.5333" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="436.8000" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="489.0667" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 203.9133,239.0000 L 203.9133,226.5000 L 252.0533,226.5000 L 252.0533,239.0000 L 203.9133,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="204.4133" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_11"><path d=" M 256.1800,239.0000 L 256.1800,226.5000 L 304.3200,226.5000 L 304.3200,239.0000 L 256.1800,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="256.6800" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 308.4467,239.0000 L 308.4467,226.5000 L 356.5867,226.5000 L 356.5867,239.0000 L 308.4467,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="308.9467" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_17"><path d=" M 360.7133,239.0000 L 360.7133,226.5000 L 408.8533,226.5000 L 408.8533,239.0000 L 360.7133,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="361.2133" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_20"><path d=" M 412.9800,239.0000 L 412.9800,226.5000 L 461.1200,226.5000 L 461.1200,239.0000 L 412.9800,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="413.4800" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_23"><path d=" M 465.2467,239.0000 L 465.2467,226.5000 L 513.3867,226.5000 L 513.3867,239.0000 L 465.2467,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="465.7467" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_36"><path d=" M 178.6400,191.5000 L 178.6400,179.0000 L 200.6000,179.0000 L 200.6000,191.5000 L 178.6400,191.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="179.1400" text-length="20.4600px" y="188.8500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 178.6400,151.5000 L 178.6400,139.0000 L 200.6000,139.0000 L 200.6000,151.5000 L 178.6400,151.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="179.1400" text-length="20.4600px" y="148.8500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 178.6400,111.5000 L 178.6400,99.0000 L 200.6000,99.0000 L 200.6000,111.5000 L 178.6400,111.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="179.1400" text-length="20.4600px" y="108.8500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 178.6400,71.5000 L 178.6400,59.0000 L 200.6000,59.0000 L 200.6000,71.5000 L 178.6400,71.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="179.1400" text-length="20.4600px" y="68.8500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 178.6400,31.5000 L 178.6400,19.0000 L 200.6000,19.0000 L 200.6000,31.5000 L 178.6400,31.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="179.1400" text-length="20.4600px" y="28.8500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_102.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_102.svg new file mode 100644 index 0000000..273796b --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_102.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,25.0000 L 560.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,21.0000 L 560.0000,25.0000 L 552.0000,29.0000 L 552.0000,21.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 253.8667,25.0000 L 253.8667,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 253.8667,22.0000 L 253.8667,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 306.1333,25.0000 L 306.1333,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 306.1333,22.0000 L 306.1333,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 358.4000,25.0000 L 358.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 358.4000,22.0000 L 358.4000,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 410.6667,25.0000 L 410.6667,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 410.6667,22.0000 L 410.6667,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 462.9333,25.0000 L 462.9333,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 462.9333,22.0000 L 462.9333,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 515.2000,22.0000 L 515.2000,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 201.6000,0.0000 L 201.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 205.6000,242.0000 L 201.6000,250.0000 L 197.6000,242.0000 L 205.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 202.6000,35.0000 L 201.6000,35.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 202.6000,45.0000 L 201.6000,45.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 202.6000,55.0000 L 201.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 204.6000,65.0000 L 201.6000,65.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 202.6000,75.0000 L 201.6000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 202.6000,85.0000 L 201.6000,85.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 202.6000,95.0000 L 201.6000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 204.6000,105.0000 L 201.6000,105.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 202.6000,115.0000 L 201.6000,115.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 202.6000,125.0000 L 201.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 202.6000,135.0000 L 201.6000,135.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 204.6000,145.0000 L 201.6000,145.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 201.6000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 202.6000,155.0000 L 201.6000,155.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 202.6000,165.0000 L 201.6000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 202.6000,175.0000 L 201.6000,175.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 204.6000,185.0000 L 201.6000,185.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 201.6000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 202.6000,195.0000 L 201.6000,195.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 202.6000,205.0000 L 201.6000,205.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 202.6000,215.0000 L 201.6000,215.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 204.6000,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 227.7333,125.0000 L 227.7333,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 227.7333,125.0000 L 280.0000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 280.0000,125.0000 L 332.2667,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 332.2667,25.0000 L 384.5333,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 384.5333,25.0000 L 436.8000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 436.8000,225.0000 L 489.0667,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="227.7333" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="280.0000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="332.2667" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="384.5333" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="436.8000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="489.0667" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 203.9133,39.0000 L 203.9133,26.5000 L 252.0533,26.5000 L 252.0533,39.0000 L 203.9133,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="204.4133" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_11"><path d=" M 256.1800,39.0000 L 256.1800,26.5000 L 304.3200,26.5000 L 304.3200,39.0000 L 256.1800,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="256.6800" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 308.4467,39.0000 L 308.4467,26.5000 L 356.5867,26.5000 L 356.5867,39.0000 L 308.4467,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="308.9467" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_17"><path d=" M 360.7133,39.0000 L 360.7133,26.5000 L 408.8533,26.5000 L 408.8533,39.0000 L 360.7133,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="361.2133" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_20"><path d=" M 412.9800,39.0000 L 412.9800,26.5000 L 461.1200,26.5000 L 461.1200,39.0000 L 412.9800,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="413.4800" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_23"><path d=" M 465.2467,39.0000 L 465.2467,26.5000 L 513.3867,26.5000 L 513.3867,39.0000 L 465.2467,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="465.7467" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_36"><path d=" M 178.6400,71.5000 L 178.6400,59.0000 L 200.6000,59.0000 L 200.6000,71.5000 L 178.6400,71.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="179.1400" text-length="20.4600px" y="68.8500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 178.6400,111.5000 L 178.6400,99.0000 L 200.6000,99.0000 L 200.6000,111.5000 L 178.6400,111.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="179.1400" text-length="20.4600px" y="108.8500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 178.6400,151.5000 L 178.6400,139.0000 L 200.6000,139.0000 L 200.6000,151.5000 L 178.6400,151.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="179.1400" text-length="20.4600px" y="148.8500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 178.6400,191.5000 L 178.6400,179.0000 L 200.6000,179.0000 L 200.6000,191.5000 L 178.6400,191.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="179.1400" text-length="20.4600px" y="188.8500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 178.6400,231.5000 L 178.6400,219.0000 L 200.6000,219.0000 L 200.6000,231.5000 L 178.6400,231.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="179.1400" text-length="20.4600px" y="228.8500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_103.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_103.svg new file mode 100644 index 0000000..56671d3 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_103.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,225.0000 L 112.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,229.0000 L 112.0000,225.0000 L 120.0000,221.0000 L 120.0000,229.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 462.9333,25.0000 L 462.9333,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 462.9333,228.0000 L 462.9333,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 410.6667,25.0000 L 410.6667,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 410.6667,228.0000 L 410.6667,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 358.4000,25.0000 L 358.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 358.4000,228.0000 L 358.4000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 306.1333,25.0000 L 306.1333,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 306.1333,228.0000 L 306.1333,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 253.8667,25.0000 L 253.8667,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 253.8667,228.0000 L 253.8667,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 201.6000,25.0000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 201.6000,228.0000 L 201.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 515.2000,250.0000 L 515.2000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 511.2000,8.0000 L 515.2000,0.0000 L 519.2000,8.0000 L 511.2000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 515.2000,215.0000 L 516.2000,215.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 515.2000,205.0000 L 516.2000,205.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 515.2000,195.0000 L 516.2000,195.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 515.2000,185.0000 L 518.2000,185.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 515.2000,175.0000 L 516.2000,175.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 515.2000,165.0000 L 516.2000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 515.2000,155.0000 L 516.2000,155.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 515.2000,145.0000 L 518.2000,145.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 515.2000,135.0000 L 516.2000,135.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 515.2000,125.0000 L 516.2000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 515.2000,115.0000 L 516.2000,115.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 515.2000,105.0000 L 518.2000,105.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 201.6000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 515.2000,95.0000 L 516.2000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 515.2000,85.0000 L 516.2000,85.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 515.2000,75.0000 L 516.2000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 515.2000,65.0000 L 518.2000,65.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 201.6000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 515.2000,55.0000 L 516.2000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 515.2000,45.0000 L 516.2000,45.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 515.2000,35.0000 L 516.2000,35.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 515.2000,25.0000 L 518.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 489.0667,125.0000 L 489.0667,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 489.0667,125.0000 L 436.8000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 436.8000,125.0000 L 384.5333,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 384.5333,225.0000 L 332.2667,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 332.2667,225.0000 L 280.0000,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 280.0000,25.0000 L 227.7333,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="489.0667" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="436.8000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="384.5333" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="332.2667" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="280.0000" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="227.7333" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 465.2467,239.0000 L 465.2467,226.5000 L 513.3867,226.5000 L 513.3867,239.0000 L 465.2467,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="465.7467" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_11"><path d=" M 412.9800,239.0000 L 412.9800,226.5000 L 461.1200,226.5000 L 461.1200,239.0000 L 412.9800,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="413.4800" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 360.7133,239.0000 L 360.7133,226.5000 L 408.8533,226.5000 L 408.8533,239.0000 L 360.7133,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="361.2133" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_17"><path d=" M 308.4467,239.0000 L 308.4467,226.5000 L 356.5867,226.5000 L 356.5867,239.0000 L 308.4467,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="308.9467" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_20"><path d=" M 256.1800,239.0000 L 256.1800,226.5000 L 304.3200,226.5000 L 304.3200,239.0000 L 256.1800,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="256.6800" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_23"><path d=" M 203.9133,239.0000 L 203.9133,226.5000 L 252.0533,226.5000 L 252.0533,239.0000 L 203.9133,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="204.4133" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_36"><path d=" M 492.2400,191.5000 L 492.2400,179.0000 L 514.2000,179.0000 L 514.2000,191.5000 L 492.2400,191.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="492.7400" text-length="20.4600px" y="188.8500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 492.2400,151.5000 L 492.2400,139.0000 L 514.2000,139.0000 L 514.2000,151.5000 L 492.2400,151.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="492.7400" text-length="20.4600px" y="148.8500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 492.2400,111.5000 L 492.2400,99.0000 L 514.2000,99.0000 L 514.2000,111.5000 L 492.2400,111.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="492.7400" text-length="20.4600px" y="108.8500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 492.2400,71.5000 L 492.2400,59.0000 L 514.2000,59.0000 L 514.2000,71.5000 L 492.2400,71.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="492.7400" text-length="20.4600px" y="68.8500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 492.2400,31.5000 L 492.2400,19.0000 L 514.2000,19.0000 L 514.2000,31.5000 L 492.2400,31.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="492.7400" text-length="20.4600px" y="28.8500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_104.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_104.svg new file mode 100644 index 0000000..e7d1f9c --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_104.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,25.0000 L 112.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,29.0000 L 112.0000,25.0000 L 120.0000,21.0000 L 120.0000,29.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 462.9333,25.0000 L 462.9333,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 462.9333,28.0000 L 462.9333,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 410.6667,25.0000 L 410.6667,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 410.6667,28.0000 L 410.6667,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 358.4000,25.0000 L 358.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 358.4000,28.0000 L 358.4000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 306.1333,25.0000 L 306.1333,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 306.1333,28.0000 L 306.1333,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 253.8667,25.0000 L 253.8667,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 253.8667,28.0000 L 253.8667,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 201.6000,25.0000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 201.6000,28.0000 L 201.6000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 515.2000,0.0000 L 515.2000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 519.2000,242.0000 L 515.2000,250.0000 L 511.2000,242.0000 L 519.2000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 516.2000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 516.2000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 516.2000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 518.2000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 516.2000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 516.2000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 516.2000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 518.2000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 516.2000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 516.2000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 516.2000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 518.2000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 201.6000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 516.2000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 516.2000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 516.2000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 518.2000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 201.6000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 516.2000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 516.2000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 516.2000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 518.2000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 489.0667,125.0000 L 489.0667,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 489.0667,125.0000 L 436.8000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 436.8000,125.0000 L 384.5333,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 384.5333,25.0000 L 332.2667,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 332.2667,25.0000 L 280.0000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 280.0000,225.0000 L 227.7333,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="489.0667" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="436.8000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="384.5333" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="332.2667" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="280.0000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="227.7333" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 465.2467,39.0000 L 465.2467,26.5000 L 513.3867,26.5000 L 513.3867,39.0000 L 465.2467,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="465.7467" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_11"><path d=" M 412.9800,39.0000 L 412.9800,26.5000 L 461.1200,26.5000 L 461.1200,39.0000 L 412.9800,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="413.4800" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 360.7133,39.0000 L 360.7133,26.5000 L 408.8533,26.5000 L 408.8533,39.0000 L 360.7133,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="361.2133" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_17"><path d=" M 308.4467,39.0000 L 308.4467,26.5000 L 356.5867,26.5000 L 356.5867,39.0000 L 308.4467,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="308.9467" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_20"><path d=" M 256.1800,39.0000 L 256.1800,26.5000 L 304.3200,26.5000 L 304.3200,39.0000 L 256.1800,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="256.6800" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_23"><path d=" M 203.9133,39.0000 L 203.9133,26.5000 L 252.0533,26.5000 L 252.0533,39.0000 L 203.9133,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="204.4133" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_36"><path d=" M 492.2400,71.5000 L 492.2400,59.0000 L 514.2000,59.0000 L 514.2000,71.5000 L 492.2400,71.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="492.7400" text-length="20.4600px" y="68.8500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 492.2400,111.5000 L 492.2400,99.0000 L 514.2000,99.0000 L 514.2000,111.5000 L 492.2400,111.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="492.7400" text-length="20.4600px" y="108.8500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 492.2400,151.5000 L 492.2400,139.0000 L 514.2000,139.0000 L 514.2000,151.5000 L 492.2400,151.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="492.7400" text-length="20.4600px" y="148.8500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 492.2400,191.5000 L 492.2400,179.0000 L 514.2000,179.0000 L 514.2000,191.5000 L 492.2400,191.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="492.7400" text-length="20.4600px" y="188.8500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 492.2400,231.5000 L 492.2400,219.0000 L 514.2000,219.0000 L 514.2000,231.5000 L 492.2400,231.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="492.7400" text-length="20.4600px" y="228.8500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_105.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_105.svg new file mode 100644 index 0000000..e4206d4 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_105.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,200.0000 L 560.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,196.0000 L 560.0000,200.0000 L 552.0000,204.0000 L 552.0000,196.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 220.2667,12.5000 L 220.2667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 220.2667,197.0000 L 220.2667,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 283.7333,12.5000 L 283.7333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 283.7333,197.0000 L 283.7333,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 347.2000,12.5000 L 347.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 347.2000,197.0000 L 347.2000,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 410.6667,12.5000 L 410.6667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 410.6667,197.0000 L 410.6667,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 474.1333,12.5000 L 474.1333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 474.1333,197.0000 L 474.1333,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 537.6000,197.0000 L 537.6000,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 156.8000,250.0000 L 156.8000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 153.8000,6.0000 L 156.8000,0.0000 L 159.8000,6.0000 L 153.8000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 156.8000,190.6250 L 157.8000,190.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,181.2500 L 157.8000,181.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,171.8750 L 157.8000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,162.5000 L 159.8000,162.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 156.8000,153.1250 L 157.8000,153.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,143.7500 L 157.8000,143.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,134.3750 L 157.8000,134.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,125.0000 L 159.8000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 156.8000,115.6250 L 157.8000,115.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 156.8000,106.2500 L 157.8000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 156.8000,96.8750 L 157.8000,96.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 156.8000,87.5000 L 159.8000,87.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 156.8000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 156.8000,78.1250 L 157.8000,78.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 156.8000,68.7500 L 157.8000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 156.8000,59.3750 L 157.8000,59.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 156.8000,50.0000 L 159.8000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 156.8000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 156.8000,40.6250 L 157.8000,40.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 156.8000,31.2500 L 157.8000,31.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 156.8000,21.8750 L 157.8000,21.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 156.8000,12.5000 L 159.8000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 188.5333,106.2500 L 188.5333,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 188.5333,106.2500 L 252.0000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 252.0000,106.2500 L 315.4667,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 315.4667,200.0000 L 378.9333,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 378.9333,200.0000 L 442.4000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 442.4000,12.5000 L 505.8667,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="188.5333" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="252.0000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="315.4667" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="378.9333" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="442.4000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="505.8667" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 173.7233,221.1000 L 173.7233,201.5000 L 203.8433,201.5000 L 203.8433,221.1000 L 173.7233,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="174.2233" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="185.7433" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 237.1900,221.1000 L 237.1900,201.5000 L 267.3100,201.5000 L 267.3100,221.1000 L 237.1900,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="237.6900" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="249.2100" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 300.6567,221.1000 L 300.6567,201.5000 L 330.7767,201.5000 L 330.7767,221.1000 L 300.6567,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="301.1567" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="312.6767" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 364.1233,221.1000 L 364.1233,201.5000 L 394.2433,201.5000 L 394.2433,221.1000 L 364.1233,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="364.6233" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="376.1433" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 427.5900,221.1000 L 427.5900,201.5000 L 457.7100,201.5000 L 457.7100,221.1000 L 427.5900,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="428.0900" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="439.6100" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 491.0567,221.1000 L 491.0567,201.5000 L 521.1767,201.5000 L 521.1767,221.1000 L 491.0567,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="491.5567" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="503.0767" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_36"><path d=" M 137.5600,168.0000 L 137.5600,157.5000 L 155.8000,157.5000 L 155.8000,168.0000 L 137.5600,168.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="138.0600" text-length="16.7400px" y="165.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 137.5600,130.5000 L 137.5600,120.0000 L 155.8000,120.0000 L 155.8000,130.5000 L 137.5600,130.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="138.0600" text-length="16.7400px" y="128.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 137.5600,93.0000 L 137.5600,82.5000 L 155.8000,82.5000 L 155.8000,93.0000 L 137.5600,93.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="138.0600" text-length="16.7400px" y="90.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 137.5600,55.5000 L 137.5600,45.0000 L 155.8000,45.0000 L 155.8000,55.5000 L 137.5600,55.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="138.0600" text-length="16.7400px" y="53.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 137.5600,18.0000 L 137.5600,7.5000 L 155.8000,7.5000 L 155.8000,18.0000 L 137.5600,18.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="138.0600" text-length="16.7400px" y="15.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_106.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_106.svg new file mode 100644 index 0000000..ea388c7 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_106.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,12.5000 L 560.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,8.5000 L 560.0000,12.5000 L 552.0000,16.5000 L 552.0000,8.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 220.2667,12.5000 L 220.2667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 220.2667,9.5000 L 220.2667,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 283.7333,12.5000 L 283.7333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 283.7333,9.5000 L 283.7333,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 347.2000,12.5000 L 347.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 347.2000,9.5000 L 347.2000,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 410.6667,12.5000 L 410.6667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 410.6667,9.5000 L 410.6667,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 474.1333,12.5000 L 474.1333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 474.1333,9.5000 L 474.1333,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 537.6000,9.5000 L 537.6000,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 156.8000,0.0000 L 156.8000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 160.3000,243.0000 L 156.8000,250.0000 L 153.3000,243.0000 L 160.3000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 157.8000,21.8750 L 156.8000,21.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 157.8000,31.2500 L 156.8000,31.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 157.8000,40.6250 L 156.8000,40.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 159.8000,50.0000 L 156.8000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 157.8000,59.3750 L 156.8000,59.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 157.8000,68.7500 L 156.8000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 157.8000,78.1250 L 156.8000,78.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 159.8000,87.5000 L 156.8000,87.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 157.8000,96.8750 L 156.8000,96.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 157.8000,106.2500 L 156.8000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 157.8000,115.6250 L 156.8000,115.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 159.8000,125.0000 L 156.8000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 156.8000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 157.8000,134.3750 L 156.8000,134.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 157.8000,143.7500 L 156.8000,143.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 157.8000,153.1250 L 156.8000,153.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 159.8000,162.5000 L 156.8000,162.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 156.8000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 157.8000,171.8750 L 156.8000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 157.8000,181.2500 L 156.8000,181.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 157.8000,190.6250 L 156.8000,190.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 159.8000,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 188.5333,106.2500 L 188.5333,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 188.5333,106.2500 L 252.0000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 252.0000,106.2500 L 315.4667,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 315.4667,12.5000 L 378.9333,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 378.9333,12.5000 L 442.4000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 442.4000,200.0000 L 505.8667,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="188.5333" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="252.0000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="315.4667" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="378.9333" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="442.4000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="505.8667" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 173.7233,33.6000 L 173.7233,14.0000 L 203.8433,14.0000 L 203.8433,33.6000 L 173.7233,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="174.2233" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="185.7433" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 237.1900,33.6000 L 237.1900,14.0000 L 267.3100,14.0000 L 267.3100,33.6000 L 237.1900,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="237.6900" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="249.2100" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 300.6567,33.6000 L 300.6567,14.0000 L 330.7767,14.0000 L 330.7767,33.6000 L 300.6567,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="301.1567" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="312.6767" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 364.1233,33.6000 L 364.1233,14.0000 L 394.2433,14.0000 L 394.2433,33.6000 L 364.1233,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="364.6233" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="376.1433" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 427.5900,33.6000 L 427.5900,14.0000 L 457.7100,14.0000 L 457.7100,33.6000 L 427.5900,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="428.0900" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="439.6100" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 491.0567,33.6000 L 491.0567,14.0000 L 521.1767,14.0000 L 521.1767,33.6000 L 491.0567,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="491.5567" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="503.0767" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_36"><path d=" M 137.5600,55.5000 L 137.5600,45.0000 L 155.8000,45.0000 L 155.8000,55.5000 L 137.5600,55.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="138.0600" text-length="16.7400px" y="53.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 137.5600,93.0000 L 137.5600,82.5000 L 155.8000,82.5000 L 155.8000,93.0000 L 137.5600,93.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="138.0600" text-length="16.7400px" y="90.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 137.5600,130.5000 L 137.5600,120.0000 L 155.8000,120.0000 L 155.8000,130.5000 L 137.5600,130.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="138.0600" text-length="16.7400px" y="128.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 137.5600,168.0000 L 137.5600,157.5000 L 155.8000,157.5000 L 155.8000,168.0000 L 137.5600,168.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="138.0600" text-length="16.7400px" y="165.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 137.5600,205.5000 L 137.5600,195.0000 L 155.8000,195.0000 L 155.8000,205.5000 L 137.5600,205.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="138.0600" text-length="16.7400px" y="203.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_107.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_107.svg new file mode 100644 index 0000000..566469f --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_107.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,200.0000 L 112.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,204.0000 L 112.0000,200.0000 L 120.0000,196.0000 L 120.0000,204.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 474.1333,12.5000 L 474.1333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 474.1333,203.0000 L 474.1333,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 410.6667,12.5000 L 410.6667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 410.6667,203.0000 L 410.6667,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 347.2000,12.5000 L 347.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 347.2000,203.0000 L 347.2000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 283.7333,12.5000 L 283.7333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 283.7333,203.0000 L 283.7333,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 220.2667,12.5000 L 220.2667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 220.2667,203.0000 L 220.2667,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 156.8000,12.5000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 156.8000,203.0000 L 156.8000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 537.6000,250.0000 L 537.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 534.6000,6.0000 L 537.6000,0.0000 L 540.6000,6.0000 L 534.6000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 537.6000,190.6250 L 538.6000,190.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 537.6000,181.2500 L 538.6000,181.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 537.6000,171.8750 L 538.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 537.6000,162.5000 L 540.6000,162.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 537.6000,153.1250 L 538.6000,153.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 537.6000,143.7500 L 538.6000,143.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 537.6000,134.3750 L 538.6000,134.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 537.6000,125.0000 L 540.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 537.6000,115.6250 L 538.6000,115.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 537.6000,106.2500 L 538.6000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 537.6000,96.8750 L 538.6000,96.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 537.6000,87.5000 L 540.6000,87.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 156.8000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 537.6000,78.1250 L 538.6000,78.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 537.6000,68.7500 L 538.6000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 537.6000,59.3750 L 538.6000,59.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 537.6000,50.0000 L 540.6000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 156.8000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 537.6000,40.6250 L 538.6000,40.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 537.6000,31.2500 L 538.6000,31.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 537.6000,21.8750 L 538.6000,21.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 537.6000,12.5000 L 540.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 505.8667,106.2500 L 505.8667,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 505.8667,106.2500 L 442.4000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 442.4000,106.2500 L 378.9333,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 378.9333,200.0000 L 315.4667,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 315.4667,200.0000 L 252.0000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 252.0000,12.5000 L 188.5333,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="505.8667" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="442.4000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="378.9333" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="315.4667" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="252.0000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="188.5333" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 491.0567,221.1000 L 491.0567,201.5000 L 521.1767,201.5000 L 521.1767,221.1000 L 491.0567,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="491.5567" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="503.0767" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 427.5900,221.1000 L 427.5900,201.5000 L 457.7100,201.5000 L 457.7100,221.1000 L 427.5900,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="428.0900" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="439.6100" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 364.1233,221.1000 L 364.1233,201.5000 L 394.2433,201.5000 L 394.2433,221.1000 L 364.1233,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="364.6233" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="376.1433" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 300.6567,221.1000 L 300.6567,201.5000 L 330.7767,201.5000 L 330.7767,221.1000 L 300.6567,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="301.1567" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="312.6767" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 237.1900,221.1000 L 237.1900,201.5000 L 267.3100,201.5000 L 267.3100,221.1000 L 237.1900,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="237.6900" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="249.2100" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 173.7233,221.1000 L 173.7233,201.5000 L 203.8433,201.5000 L 203.8433,221.1000 L 173.7233,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="174.2233" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="185.7433" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_36"><path d=" M 518.3600,168.0000 L 518.3600,157.5000 L 536.6000,157.5000 L 536.6000,168.0000 L 518.3600,168.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="518.8600" text-length="16.7400px" y="165.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 518.3600,130.5000 L 518.3600,120.0000 L 536.6000,120.0000 L 536.6000,130.5000 L 518.3600,130.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="518.8600" text-length="16.7400px" y="128.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 518.3600,93.0000 L 518.3600,82.5000 L 536.6000,82.5000 L 536.6000,93.0000 L 518.3600,93.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="518.8600" text-length="16.7400px" y="90.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 518.3600,55.5000 L 518.3600,45.0000 L 536.6000,45.0000 L 536.6000,55.5000 L 518.3600,55.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="518.8600" text-length="16.7400px" y="53.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 518.3600,18.0000 L 518.3600,7.5000 L 536.6000,7.5000 L 536.6000,18.0000 L 518.3600,18.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="518.8600" text-length="16.7400px" y="15.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_108.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_108.svg new file mode 100644 index 0000000..8fb1605 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_108.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,12.5000 L 112.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,16.5000 L 112.0000,12.5000 L 120.0000,8.5000 L 120.0000,16.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 474.1333,12.5000 L 474.1333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 474.1333,15.5000 L 474.1333,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 410.6667,12.5000 L 410.6667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 410.6667,15.5000 L 410.6667,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 347.2000,12.5000 L 347.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 347.2000,15.5000 L 347.2000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 283.7333,12.5000 L 283.7333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 283.7333,15.5000 L 283.7333,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 220.2667,12.5000 L 220.2667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 220.2667,15.5000 L 220.2667,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 156.8000,12.5000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 156.8000,15.5000 L 156.8000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 537.6000,0.0000 L 537.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 541.1000,243.0000 L 537.6000,250.0000 L 534.1000,243.0000 L 541.1000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 538.6000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 538.6000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 538.6000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 540.6000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 538.6000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 538.6000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 538.6000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 540.6000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 538.6000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 538.6000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 538.6000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 540.6000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 156.8000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 538.6000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 538.6000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 538.6000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 540.6000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 156.8000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 538.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 538.6000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 538.6000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 540.6000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 505.8667,106.2500 L 505.8667,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 505.8667,106.2500 L 442.4000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 442.4000,106.2500 L 378.9333,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 378.9333,12.5000 L 315.4667,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 315.4667,12.5000 L 252.0000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 252.0000,200.0000 L 188.5333,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="505.8667" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="442.4000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="378.9333" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="315.4667" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="252.0000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="188.5333" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 491.0567,33.6000 L 491.0567,14.0000 L 521.1767,14.0000 L 521.1767,33.6000 L 491.0567,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="491.5567" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="503.0767" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 427.5900,33.6000 L 427.5900,14.0000 L 457.7100,14.0000 L 457.7100,33.6000 L 427.5900,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="428.0900" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="439.6100" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 364.1233,33.6000 L 364.1233,14.0000 L 394.2433,14.0000 L 394.2433,33.6000 L 364.1233,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="364.6233" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="376.1433" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 300.6567,33.6000 L 300.6567,14.0000 L 330.7767,14.0000 L 330.7767,33.6000 L 300.6567,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="301.1567" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="312.6767" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 237.1900,33.6000 L 237.1900,14.0000 L 267.3100,14.0000 L 267.3100,33.6000 L 237.1900,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="237.6900" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="249.2100" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 173.7233,33.6000 L 173.7233,14.0000 L 203.8433,14.0000 L 203.8433,33.6000 L 173.7233,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="174.2233" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="185.7433" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_36"><path d=" M 518.3600,55.5000 L 518.3600,45.0000 L 536.6000,45.0000 L 536.6000,55.5000 L 518.3600,55.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="518.8600" text-length="16.7400px" y="53.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 518.3600,93.0000 L 518.3600,82.5000 L 536.6000,82.5000 L 536.6000,93.0000 L 518.3600,93.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="518.8600" text-length="16.7400px" y="90.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 518.3600,130.5000 L 518.3600,120.0000 L 536.6000,120.0000 L 536.6000,130.5000 L 518.3600,130.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="518.8600" text-length="16.7400px" y="128.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 518.3600,168.0000 L 518.3600,157.5000 L 536.6000,157.5000 L 536.6000,168.0000 L 518.3600,168.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="518.8600" text-length="16.7400px" y="165.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 518.3600,205.5000 L 518.3600,195.0000 L 536.6000,195.0000 L 536.6000,205.5000 L 518.3600,205.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="518.8600" text-length="16.7400px" y="203.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_109.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_109.svg new file mode 100644 index 0000000..c573cac --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_109.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,200.0000 L 560.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,196.0000 L 560.0000,200.0000 L 552.0000,204.0000 L 552.0000,196.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 216.5333,25.0000 L 216.5333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 216.5333,197.0000 L 216.5333,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 276.2667,25.0000 L 276.2667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 276.2667,197.0000 L 276.2667,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 336.0000,25.0000 L 336.0000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 336.0000,197.0000 L 336.0000,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 395.7333,25.0000 L 395.7333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 395.7333,197.0000 L 395.7333,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 455.4667,25.0000 L 455.4667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 455.4667,197.0000 L 455.4667,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 515.2000,197.0000 L 515.2000,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 156.8000,250.0000 L 156.8000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 153.8000,6.0000 L 156.8000,0.0000 L 159.8000,6.0000 L 153.8000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 156.8000,191.2500 L 157.8000,191.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,182.5000 L 157.8000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,173.7500 L 157.8000,173.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,165.0000 L 159.8000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 156.8000,156.2500 L 157.8000,156.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,147.5000 L 157.8000,147.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,138.7500 L 157.8000,138.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,130.0000 L 159.8000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 156.8000,121.2500 L 157.8000,121.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 156.8000,112.5000 L 157.8000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 156.8000,103.7500 L 157.8000,103.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 156.8000,95.0000 L 159.8000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 156.8000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 156.8000,86.2500 L 157.8000,86.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 156.8000,77.5000 L 157.8000,77.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 156.8000,68.7500 L 157.8000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 156.8000,60.0000 L 159.8000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 156.8000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 156.8000,51.2500 L 157.8000,51.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 156.8000,42.5000 L 157.8000,42.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 156.8000,33.7500 L 157.8000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 156.8000,25.0000 L 159.8000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 186.6667,112.5000 L 186.6667,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 186.6667,112.5000 L 246.4000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 246.4000,112.5000 L 306.1333,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 306.1333,200.0000 L 365.8667,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 365.8667,200.0000 L 425.6000,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 425.6000,25.0000 L 485.3333,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="186.6667" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="246.4000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="306.1333" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="365.8667" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="425.6000" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="485.3333" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 159.1367,237.1000 L 159.1367,201.5000 L 214.6967,201.5000 L 214.6967,237.1000 L 159.1367,237.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="159.6367" text-length="54.0600px" y="216.4500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="181.3967" text-length="10.5400px" y="235.1500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 218.8700,237.1000 L 218.8700,201.5000 L 274.4300,201.5000 L 274.4300,237.1000 L 218.8700,237.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="219.3700" text-length="54.0600px" y="216.4500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="241.1300" text-length="10.5400px" y="235.1500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 278.6033,237.1000 L 278.6033,201.5000 L 334.1633,201.5000 L 334.1633,237.1000 L 278.6033,237.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="279.1033" text-length="54.0600px" y="216.4500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="300.8633" text-length="10.5400px" y="235.1500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 338.3367,237.1000 L 338.3367,201.5000 L 393.8967,201.5000 L 393.8967,237.1000 L 338.3367,237.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="338.8367" text-length="54.0600px" y="216.4500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="360.5967" text-length="10.5400px" y="235.1500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 398.0700,237.1000 L 398.0700,201.5000 L 453.6300,201.5000 L 453.6300,237.1000 L 398.0700,237.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="398.5700" text-length="54.0600px" y="216.4500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="420.3300" text-length="10.5400px" y="235.1500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 457.8033,237.1000 L 457.8033,201.5000 L 513.3633,201.5000 L 513.3633,237.1000 L 457.8033,237.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="458.3033" text-length="54.0600px" y="216.4500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="480.0633" text-length="10.5400px" y="235.1500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_36"><path d=" M 122.6800,174.5000 L 122.6800,156.0000 L 155.8000,156.0000 L 155.8000,174.5000 L 122.6800,174.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="123.1800" text-length="31.6200px" y="170.9500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 122.6800,139.5000 L 122.6800,121.0000 L 155.8000,121.0000 L 155.8000,139.5000 L 122.6800,139.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="123.1800" text-length="31.6200px" y="135.9500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 122.6800,104.5000 L 122.6800,86.0000 L 155.8000,86.0000 L 155.8000,104.5000 L 122.6800,104.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="123.1800" text-length="31.6200px" y="100.9500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 122.6800,69.5000 L 122.6800,51.0000 L 155.8000,51.0000 L 155.8000,69.5000 L 122.6800,69.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="123.1800" text-length="31.6200px" y="65.9500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 122.6800,34.5000 L 122.6800,16.0000 L 155.8000,16.0000 L 155.8000,34.5000 L 122.6800,34.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="123.1800" text-length="31.6200px" y="30.9500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_11.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_11.svg new file mode 100644 index 0000000..afe5d5d --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_11.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,200.0000 L 112.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,204.0000 L 112.0000,200.0000 L 120.0000,196.0000 L 120.0000,204.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 461.4400,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 461.4400,200.0000 L 461.4400,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 385.2800,12.5000 L 385.2800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 385.2800,200.0000 L 385.2800,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 309.1200,12.5000 L 309.1200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 309.1200,200.0000 L 309.1200,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 232.9600,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 232.9600,200.0000 L 232.9600,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 156.8000,12.5000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 156.8000,200.0000 L 156.8000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 537.6000,250.0000 L 537.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 534.6000,6.0000 L 537.6000,0.0000 L 540.6000,6.0000 L 534.6000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 156.8000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 537.6000,190.6250 L 538.6000,190.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 537.6000,181.2500 L 538.6000,181.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 537.6000,171.8750 L 538.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 537.6000,162.5000 L 540.6000,162.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 537.6000,153.1250 L 538.6000,153.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 537.6000,143.7500 L 538.6000,143.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 537.6000,134.3750 L 538.6000,134.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 537.6000,125.0000 L 540.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 537.6000,115.6250 L 538.6000,115.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 537.6000,106.2500 L 538.6000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 537.6000,96.8750 L 538.6000,96.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 537.6000,87.5000 L 540.6000,87.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 537.6000,78.1250 L 538.6000,78.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 537.6000,68.7500 L 538.6000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 537.6000,59.3750 L 538.6000,59.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 537.6000,50.0000 L 540.6000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 537.6000,40.6250 L 538.6000,40.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 537.6000,31.2500 L 538.6000,31.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 537.6000,21.8750 L 538.6000,21.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 537.6000,12.5000 L 540.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 537.6000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 537.6000,106.2500 L 461.4400,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 461.4400,106.2500 L 385.2800,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 385.2800,200.0000 L 309.1200,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 309.1200,200.0000 L 232.9600,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 232.9600,12.5000 L 156.8000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="537.6000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="461.4400" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="385.2800" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="309.1200" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="232.9600" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="156.8000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 446.6300,221.1000 L 446.6300,201.5000 L 476.7500,201.5000 L 476.7500,221.1000 L 446.6300,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_10_text" x="447.1300" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_10_text" x="458.6500" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_13"><path d=" M 370.4700,221.1000 L 370.4700,201.5000 L 400.5900,201.5000 L 400.5900,221.1000 L 370.4700,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_13_text" x="370.9700" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_13_text" x="382.4900" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_16"><path d=" M 294.3100,221.1000 L 294.3100,201.5000 L 324.4300,201.5000 L 324.4300,221.1000 L 294.3100,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_16_text" x="294.8100" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_16_text" x="306.3300" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_19"><path d=" M 218.1500,221.1000 L 218.1500,201.5000 L 248.2700,201.5000 L 248.2700,221.1000 L 218.1500,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_19_text" x="218.6500" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_19_text" x="230.1700" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_22"><path d=" M 141.9900,221.1000 L 141.9900,201.5000 L 172.1100,201.5000 L 172.1100,221.1000 L 141.9900,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_22_text" x="142.4900" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="154.0100" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25"><path d=" M 529.5200,199.0000 L 529.5200,188.5000 L 536.6000,188.5000 L 536.6000,199.0000 L 529.5200,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_25_text" x="530.0200" text-length="5.5800px" y="196.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_34"><path d=" M 518.3600,161.5000 L 518.3600,151.0000 L 536.6000,151.0000 L 536.6000,161.5000 L 518.3600,161.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="518.8600" text-length="16.7400px" y="159.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 518.3600,124.0000 L 518.3600,113.5000 L 536.6000,113.5000 L 536.6000,124.0000 L 518.3600,124.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="518.8600" text-length="16.7400px" y="121.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 518.3600,86.5000 L 518.3600,76.0000 L 536.6000,76.0000 L 536.6000,86.5000 L 518.3600,86.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="518.8600" text-length="16.7400px" y="84.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 518.3600,49.0000 L 518.3600,38.5000 L 536.6000,38.5000 L 536.6000,49.0000 L 518.3600,49.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="518.8600" text-length="16.7400px" y="46.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 518.3600,24.5000 L 518.3600,14.0000 L 536.6000,14.0000 L 536.6000,24.5000 L 518.3600,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="518.8600" text-length="16.7400px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_110.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_110.svg new file mode 100644 index 0000000..5adb305 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_110.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,25.0000 L 560.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,21.0000 L 560.0000,25.0000 L 552.0000,29.0000 L 552.0000,21.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 216.5333,25.0000 L 216.5333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 216.5333,22.0000 L 216.5333,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 276.2667,25.0000 L 276.2667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 276.2667,22.0000 L 276.2667,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 336.0000,25.0000 L 336.0000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 336.0000,22.0000 L 336.0000,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 395.7333,25.0000 L 395.7333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 395.7333,22.0000 L 395.7333,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 455.4667,25.0000 L 455.4667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 455.4667,22.0000 L 455.4667,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 515.2000,22.0000 L 515.2000,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 156.8000,0.0000 L 156.8000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 160.3000,243.0000 L 156.8000,250.0000 L 153.3000,243.0000 L 160.3000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 157.8000,33.7500 L 156.8000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 157.8000,42.5000 L 156.8000,42.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 157.8000,51.2500 L 156.8000,51.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 159.8000,60.0000 L 156.8000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 157.8000,68.7500 L 156.8000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 157.8000,77.5000 L 156.8000,77.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 157.8000,86.2500 L 156.8000,86.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 159.8000,95.0000 L 156.8000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 157.8000,103.7500 L 156.8000,103.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 157.8000,112.5000 L 156.8000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 157.8000,121.2500 L 156.8000,121.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 159.8000,130.0000 L 156.8000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 156.8000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 157.8000,138.7500 L 156.8000,138.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 157.8000,147.5000 L 156.8000,147.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 157.8000,156.2500 L 156.8000,156.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 159.8000,165.0000 L 156.8000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 156.8000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 157.8000,173.7500 L 156.8000,173.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 157.8000,182.5000 L 156.8000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 157.8000,191.2500 L 156.8000,191.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 159.8000,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 186.6667,112.5000 L 186.6667,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 186.6667,112.5000 L 246.4000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 246.4000,112.5000 L 306.1333,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 306.1333,25.0000 L 365.8667,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 365.8667,25.0000 L 425.6000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 425.6000,200.0000 L 485.3333,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="186.6667" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="246.4000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="306.1333" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="365.8667" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="425.6000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="485.3333" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 159.1367,62.1000 L 159.1367,26.5000 L 214.6967,26.5000 L 214.6967,62.1000 L 159.1367,62.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="159.6367" text-length="54.0600px" y="41.4500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="181.3967" text-length="10.5400px" y="60.1500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 218.8700,62.1000 L 218.8700,26.5000 L 274.4300,26.5000 L 274.4300,62.1000 L 218.8700,62.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="219.3700" text-length="54.0600px" y="41.4500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="241.1300" text-length="10.5400px" y="60.1500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 278.6033,62.1000 L 278.6033,26.5000 L 334.1633,26.5000 L 334.1633,62.1000 L 278.6033,62.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="279.1033" text-length="54.0600px" y="41.4500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="300.8633" text-length="10.5400px" y="60.1500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 338.3367,62.1000 L 338.3367,26.5000 L 393.8967,26.5000 L 393.8967,62.1000 L 338.3367,62.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="338.8367" text-length="54.0600px" y="41.4500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="360.5967" text-length="10.5400px" y="60.1500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 398.0700,62.1000 L 398.0700,26.5000 L 453.6300,26.5000 L 453.6300,62.1000 L 398.0700,62.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="398.5700" text-length="54.0600px" y="41.4500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="420.3300" text-length="10.5400px" y="60.1500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 457.8033,62.1000 L 457.8033,26.5000 L 513.3633,26.5000 L 513.3633,62.1000 L 457.8033,62.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="458.3033" text-length="54.0600px" y="41.4500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="480.0633" text-length="10.5400px" y="60.1500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_36"><path d=" M 122.6800,69.5000 L 122.6800,51.0000 L 155.8000,51.0000 L 155.8000,69.5000 L 122.6800,69.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="123.1800" text-length="31.6200px" y="65.9500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 122.6800,104.5000 L 122.6800,86.0000 L 155.8000,86.0000 L 155.8000,104.5000 L 122.6800,104.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="123.1800" text-length="31.6200px" y="100.9500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 122.6800,139.5000 L 122.6800,121.0000 L 155.8000,121.0000 L 155.8000,139.5000 L 122.6800,139.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="123.1800" text-length="31.6200px" y="135.9500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 122.6800,174.5000 L 122.6800,156.0000 L 155.8000,156.0000 L 155.8000,174.5000 L 122.6800,174.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="123.1800" text-length="31.6200px" y="170.9500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 122.6800,209.5000 L 122.6800,191.0000 L 155.8000,191.0000 L 155.8000,209.5000 L 122.6800,209.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="123.1800" text-length="31.6200px" y="205.9500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_111.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_111.svg new file mode 100644 index 0000000..f429588 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_111.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,200.0000 L 112.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,204.0000 L 112.0000,200.0000 L 120.0000,196.0000 L 120.0000,204.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 455.4667,25.0000 L 455.4667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 455.4667,203.0000 L 455.4667,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 395.7333,25.0000 L 395.7333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 395.7333,203.0000 L 395.7333,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 336.0000,25.0000 L 336.0000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 336.0000,203.0000 L 336.0000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 276.2667,25.0000 L 276.2667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 276.2667,203.0000 L 276.2667,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 216.5333,25.0000 L 216.5333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 216.5333,203.0000 L 216.5333,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 156.8000,25.0000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 156.8000,203.0000 L 156.8000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 515.2000,250.0000 L 515.2000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 512.2000,6.0000 L 515.2000,0.0000 L 518.2000,6.0000 L 512.2000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 515.2000,191.2500 L 516.2000,191.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 515.2000,182.5000 L 516.2000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 515.2000,173.7500 L 516.2000,173.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 515.2000,165.0000 L 518.2000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 515.2000,156.2500 L 516.2000,156.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 515.2000,147.5000 L 516.2000,147.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 515.2000,138.7500 L 516.2000,138.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 515.2000,130.0000 L 518.2000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 515.2000,121.2500 L 516.2000,121.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 515.2000,112.5000 L 516.2000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 515.2000,103.7500 L 516.2000,103.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 515.2000,95.0000 L 518.2000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 156.8000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 515.2000,86.2500 L 516.2000,86.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 515.2000,77.5000 L 516.2000,77.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 515.2000,68.7500 L 516.2000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 515.2000,60.0000 L 518.2000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 156.8000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 515.2000,51.2500 L 516.2000,51.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 515.2000,42.5000 L 516.2000,42.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 515.2000,33.7500 L 516.2000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 515.2000,25.0000 L 518.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 485.3333,112.5000 L 485.3333,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 485.3333,112.5000 L 425.6000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 425.6000,112.5000 L 365.8667,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 365.8667,200.0000 L 306.1333,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 306.1333,200.0000 L 246.4000,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 246.4000,25.0000 L 186.6667,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="485.3333" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="425.6000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="365.8667" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="306.1333" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="246.4000" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="186.6667" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 457.8033,237.1000 L 457.8033,201.5000 L 513.3633,201.5000 L 513.3633,237.1000 L 457.8033,237.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="458.3033" text-length="54.0600px" y="216.4500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="480.0633" text-length="10.5400px" y="235.1500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 398.0700,237.1000 L 398.0700,201.5000 L 453.6300,201.5000 L 453.6300,237.1000 L 398.0700,237.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="398.5700" text-length="54.0600px" y="216.4500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="420.3300" text-length="10.5400px" y="235.1500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 338.3367,237.1000 L 338.3367,201.5000 L 393.8967,201.5000 L 393.8967,237.1000 L 338.3367,237.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="338.8367" text-length="54.0600px" y="216.4500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="360.5967" text-length="10.5400px" y="235.1500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 278.6033,237.1000 L 278.6033,201.5000 L 334.1633,201.5000 L 334.1633,237.1000 L 278.6033,237.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="279.1033" text-length="54.0600px" y="216.4500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="300.8633" text-length="10.5400px" y="235.1500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 218.8700,237.1000 L 218.8700,201.5000 L 274.4300,201.5000 L 274.4300,237.1000 L 218.8700,237.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="219.3700" text-length="54.0600px" y="216.4500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="241.1300" text-length="10.5400px" y="235.1500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 159.1367,237.1000 L 159.1367,201.5000 L 214.6967,201.5000 L 214.6967,237.1000 L 159.1367,237.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="159.6367" text-length="54.0600px" y="216.4500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="181.3967" text-length="10.5400px" y="235.1500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_36"><path d=" M 481.0800,174.5000 L 481.0800,156.0000 L 514.2000,156.0000 L 514.2000,174.5000 L 481.0800,174.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="481.5800" text-length="31.6200px" y="170.9500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 481.0800,139.5000 L 481.0800,121.0000 L 514.2000,121.0000 L 514.2000,139.5000 L 481.0800,139.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="481.5800" text-length="31.6200px" y="135.9500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 481.0800,104.5000 L 481.0800,86.0000 L 514.2000,86.0000 L 514.2000,104.5000 L 481.0800,104.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="481.5800" text-length="31.6200px" y="100.9500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 481.0800,69.5000 L 481.0800,51.0000 L 514.2000,51.0000 L 514.2000,69.5000 L 481.0800,69.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="481.5800" text-length="31.6200px" y="65.9500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 481.0800,34.5000 L 481.0800,16.0000 L 514.2000,16.0000 L 514.2000,34.5000 L 481.0800,34.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="481.5800" text-length="31.6200px" y="30.9500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_112.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_112.svg new file mode 100644 index 0000000..354c82c --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_112.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,25.0000 L 112.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,29.0000 L 112.0000,25.0000 L 120.0000,21.0000 L 120.0000,29.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 455.4667,25.0000 L 455.4667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 455.4667,28.0000 L 455.4667,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 395.7333,25.0000 L 395.7333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 395.7333,28.0000 L 395.7333,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 336.0000,25.0000 L 336.0000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 336.0000,28.0000 L 336.0000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 276.2667,25.0000 L 276.2667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 276.2667,28.0000 L 276.2667,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 216.5333,25.0000 L 216.5333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 216.5333,28.0000 L 216.5333,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 156.8000,25.0000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 156.8000,28.0000 L 156.8000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 515.2000,0.0000 L 515.2000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 518.7000,243.0000 L 515.2000,250.0000 L 511.7000,243.0000 L 518.7000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 516.2000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 516.2000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 516.2000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 518.2000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 516.2000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 516.2000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 516.2000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 518.2000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 516.2000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 516.2000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 516.2000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 518.2000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 156.8000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 516.2000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 516.2000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 516.2000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 518.2000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 156.8000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 516.2000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 516.2000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 516.2000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 518.2000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 485.3333,112.5000 L 485.3333,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 485.3333,112.5000 L 425.6000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 425.6000,112.5000 L 365.8667,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 365.8667,25.0000 L 306.1333,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 306.1333,25.0000 L 246.4000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 246.4000,200.0000 L 186.6667,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="485.3333" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="425.6000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="365.8667" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="306.1333" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="246.4000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="186.6667" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 457.8033,62.1000 L 457.8033,26.5000 L 513.3633,26.5000 L 513.3633,62.1000 L 457.8033,62.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="458.3033" text-length="54.0600px" y="41.4500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="480.0633" text-length="10.5400px" y="60.1500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 398.0700,62.1000 L 398.0700,26.5000 L 453.6300,26.5000 L 453.6300,62.1000 L 398.0700,62.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="398.5700" text-length="54.0600px" y="41.4500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="420.3300" text-length="10.5400px" y="60.1500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 338.3367,62.1000 L 338.3367,26.5000 L 393.8967,26.5000 L 393.8967,62.1000 L 338.3367,62.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="338.8367" text-length="54.0600px" y="41.4500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="360.5967" text-length="10.5400px" y="60.1500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 278.6033,62.1000 L 278.6033,26.5000 L 334.1633,26.5000 L 334.1633,62.1000 L 278.6033,62.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="279.1033" text-length="54.0600px" y="41.4500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="300.8633" text-length="10.5400px" y="60.1500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 218.8700,62.1000 L 218.8700,26.5000 L 274.4300,26.5000 L 274.4300,62.1000 L 218.8700,62.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="219.3700" text-length="54.0600px" y="41.4500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="241.1300" text-length="10.5400px" y="60.1500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 159.1367,62.1000 L 159.1367,26.5000 L 214.6967,26.5000 L 214.6967,62.1000 L 159.1367,62.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="159.6367" text-length="54.0600px" y="41.4500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="181.3967" text-length="10.5400px" y="60.1500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_36"><path d=" M 481.0800,69.5000 L 481.0800,51.0000 L 514.2000,51.0000 L 514.2000,69.5000 L 481.0800,69.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="481.5800" text-length="31.6200px" y="65.9500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 481.0800,104.5000 L 481.0800,86.0000 L 514.2000,86.0000 L 514.2000,104.5000 L 481.0800,104.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="481.5800" text-length="31.6200px" y="100.9500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 481.0800,139.5000 L 481.0800,121.0000 L 514.2000,121.0000 L 514.2000,139.5000 L 481.0800,139.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="481.5800" text-length="31.6200px" y="135.9500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 481.0800,174.5000 L 481.0800,156.0000 L 514.2000,156.0000 L 514.2000,174.5000 L 481.0800,174.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="481.5800" text-length="31.6200px" y="170.9500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 481.0800,209.5000 L 481.0800,191.0000 L 514.2000,191.0000 L 514.2000,209.5000 L 481.0800,209.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="481.5800" text-length="31.6200px" y="205.9500" style="font-size: 17px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_113.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_113.svg new file mode 100644 index 0000000..59da86f --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_113.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,225.0000 L 560.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,221.0000 L 560.0000,225.0000 L 552.0000,229.0000 L 552.0000,221.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 257.6000,12.5000 L 257.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 257.6000,222.0000 L 257.6000,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 313.6000,12.5000 L 313.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 313.6000,222.0000 L 313.6000,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 369.6000,12.5000 L 369.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 369.6000,222.0000 L 369.6000,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 425.6000,12.5000 L 425.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 425.6000,222.0000 L 425.6000,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 481.6000,12.5000 L 481.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 481.6000,222.0000 L 481.6000,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 537.6000,222.0000 L 537.6000,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 201.6000,250.0000 L 201.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 197.6000,8.0000 L 201.6000,0.0000 L 205.6000,8.0000 L 197.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,214.3750 L 202.6000,214.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,203.7500 L 202.6000,203.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,193.1250 L 202.6000,193.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,182.5000 L 204.6000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,171.8750 L 202.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,161.2500 L 202.6000,161.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,150.6250 L 202.6000,150.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,140.0000 L 204.6000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,129.3750 L 202.6000,129.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,118.7500 L 202.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 201.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,108.1250 L 202.6000,108.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 201.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 201.6000,97.5000 L 204.6000,97.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,86.8750 L 202.6000,86.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 201.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,76.2500 L 202.6000,76.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 201.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,65.6250 L 202.6000,65.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 201.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 201.6000,55.0000 L 204.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,44.3750 L 202.6000,44.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 201.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,33.7500 L 202.6000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 201.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,23.1250 L 202.6000,23.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 201.6000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 201.6000,12.5000 L 204.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 229.6000,118.7500 L 229.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 229.6000,118.7500 L 285.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 285.6000,118.7500 L 341.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 341.6000,225.0000 L 397.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 397.6000,225.0000 L 453.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 453.6000,12.5000 L 509.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="229.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="285.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="341.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="397.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="453.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="509.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 210.0200,237.0000 L 210.0200,226.5000 L 249.6800,226.5000 L 249.6800,237.0000 L 210.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="210.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_11"><path d=" M 266.0200,237.0000 L 266.0200,226.5000 L 305.6800,226.5000 L 305.6800,237.0000 L 266.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="266.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 322.0200,237.0000 L 322.0200,226.5000 L 361.6800,226.5000 L 361.6800,237.0000 L 322.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="322.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_17"><path d=" M 378.0200,237.0000 L 378.0200,226.5000 L 417.6800,226.5000 L 417.6800,237.0000 L 378.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="378.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_20"><path d=" M 434.0200,237.0000 L 434.0200,226.5000 L 473.6800,226.5000 L 473.6800,237.0000 L 434.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="434.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_23"><path d=" M 490.0200,237.0000 L 490.0200,226.5000 L 529.6800,226.5000 L 529.6800,237.0000 L 490.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="490.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_28"><path d=" M 193.5200,224.0000 L 193.5200,213.5000 L 200.6000,213.5000 L 200.6000,224.0000 L 193.5200,224.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="194.0200" text-length="5.5800px" y="221.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 182.3600,181.5000 L 182.3600,171.0000 L 200.6000,171.0000 L 200.6000,181.5000 L 182.3600,181.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="182.8600" text-length="16.7400px" y="179.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 182.3600,139.0000 L 182.3600,128.5000 L 200.6000,128.5000 L 200.6000,139.0000 L 182.3600,139.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="182.8600" text-length="16.7400px" y="136.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 182.3600,96.5000 L 182.3600,86.0000 L 200.6000,86.0000 L 200.6000,96.5000 L 182.3600,96.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="182.8600" text-length="16.7400px" y="94.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 182.3600,54.0000 L 182.3600,43.5000 L 200.6000,43.5000 L 200.6000,54.0000 L 182.3600,54.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="182.8600" text-length="16.7400px" y="51.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 182.3600,24.5000 L 182.3600,14.0000 L 200.6000,14.0000 L 200.6000,24.5000 L 182.3600,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="182.8600" text-length="16.7400px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_114.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_114.svg new file mode 100644 index 0000000..e39d9e9 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_114.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,12.5000 L 560.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,8.5000 L 560.0000,12.5000 L 552.0000,16.5000 L 552.0000,8.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 257.6000,12.5000 L 257.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 257.6000,9.5000 L 257.6000,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 313.6000,12.5000 L 313.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 313.6000,9.5000 L 313.6000,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 369.6000,12.5000 L 369.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 369.6000,9.5000 L 369.6000,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 425.6000,12.5000 L 425.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 425.6000,9.5000 L 425.6000,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 481.6000,12.5000 L 481.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 481.6000,9.5000 L 481.6000,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 537.6000,9.5000 L 537.6000,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 201.6000,0.0000 L 201.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 205.6000,242.0000 L 201.6000,250.0000 L 197.6000,242.0000 L 205.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 202.6000,23.1250 L 201.6000,23.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 202.6000,33.7500 L 201.6000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 202.6000,44.3750 L 201.6000,44.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 204.6000,55.0000 L 201.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 202.6000,65.6250 L 201.6000,65.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 202.6000,76.2500 L 201.6000,76.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 202.6000,86.8750 L 201.6000,86.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 204.6000,97.5000 L 201.6000,97.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 202.6000,108.1250 L 201.6000,108.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 202.6000,118.7500 L 201.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 201.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 202.6000,129.3750 L 201.6000,129.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 201.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 204.6000,140.0000 L 201.6000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 202.6000,150.6250 L 201.6000,150.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 201.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 202.6000,161.2500 L 201.6000,161.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 201.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 202.6000,171.8750 L 201.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 201.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 204.6000,182.5000 L 201.6000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 202.6000,193.1250 L 201.6000,193.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 201.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 202.6000,203.7500 L 201.6000,203.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 201.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 202.6000,214.3750 L 201.6000,214.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 204.6000,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 229.6000,118.7500 L 229.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 229.6000,118.7500 L 285.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 285.6000,118.7500 L 341.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 341.6000,12.5000 L 397.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 397.6000,12.5000 L 453.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 453.6000,225.0000 L 509.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="229.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="285.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="341.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="397.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="453.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="509.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 210.0200,24.5000 L 210.0200,14.0000 L 249.6800,14.0000 L 249.6800,24.5000 L 210.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="210.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_11"><path d=" M 266.0200,24.5000 L 266.0200,14.0000 L 305.6800,14.0000 L 305.6800,24.5000 L 266.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="266.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 322.0200,24.5000 L 322.0200,14.0000 L 361.6800,14.0000 L 361.6800,24.5000 L 322.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="322.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_17"><path d=" M 378.0200,24.5000 L 378.0200,14.0000 L 417.6800,14.0000 L 417.6800,24.5000 L 378.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="378.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_20"><path d=" M 434.0200,24.5000 L 434.0200,14.0000 L 473.6800,14.0000 L 473.6800,24.5000 L 434.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="434.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_23"><path d=" M 490.0200,24.5000 L 490.0200,14.0000 L 529.6800,14.0000 L 529.6800,24.5000 L 490.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="490.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_28"><path d=" M 193.5200,24.5000 L 193.5200,14.0000 L 200.6000,14.0000 L 200.6000,24.5000 L 193.5200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="194.0200" text-length="5.5800px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 182.3600,67.0000 L 182.3600,56.5000 L 200.6000,56.5000 L 200.6000,67.0000 L 182.3600,67.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="182.8600" text-length="16.7400px" y="64.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 182.3600,109.5000 L 182.3600,99.0000 L 200.6000,99.0000 L 200.6000,109.5000 L 182.3600,109.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="182.8600" text-length="16.7400px" y="107.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 182.3600,152.0000 L 182.3600,141.5000 L 200.6000,141.5000 L 200.6000,152.0000 L 182.3600,152.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="182.8600" text-length="16.7400px" y="149.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 182.3600,194.5000 L 182.3600,184.0000 L 200.6000,184.0000 L 200.6000,194.5000 L 182.3600,194.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="182.8600" text-length="16.7400px" y="192.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 182.3600,224.0000 L 182.3600,213.5000 L 200.6000,213.5000 L 200.6000,224.0000 L 182.3600,224.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="182.8600" text-length="16.7400px" y="221.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_115.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_115.svg new file mode 100644 index 0000000..f2dc75e --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_115.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,225.0000 L 112.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,229.0000 L 112.0000,225.0000 L 120.0000,221.0000 L 120.0000,229.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 481.6000,12.5000 L 481.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 481.6000,228.0000 L 481.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 425.6000,12.5000 L 425.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 425.6000,228.0000 L 425.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 369.6000,12.5000 L 369.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 369.6000,228.0000 L 369.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 313.6000,12.5000 L 313.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 313.6000,228.0000 L 313.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 257.6000,12.5000 L 257.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 257.6000,228.0000 L 257.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 201.6000,12.5000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 201.6000,228.0000 L 201.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 537.6000,250.0000 L 537.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 533.6000,8.0000 L 537.6000,0.0000 L 541.6000,8.0000 L 533.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 537.6000,214.3750 L 538.6000,214.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 537.6000,203.7500 L 538.6000,203.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 537.6000,193.1250 L 538.6000,193.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 537.6000,182.5000 L 540.6000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 537.6000,171.8750 L 538.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 537.6000,161.2500 L 538.6000,161.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 537.6000,150.6250 L 538.6000,150.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 537.6000,140.0000 L 540.6000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 537.6000,129.3750 L 538.6000,129.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 537.6000,118.7500 L 538.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 201.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 537.6000,108.1250 L 538.6000,108.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 201.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 537.6000,97.5000 L 540.6000,97.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 537.6000,86.8750 L 538.6000,86.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 201.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 537.6000,76.2500 L 538.6000,76.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 201.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 537.6000,65.6250 L 538.6000,65.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 201.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 537.6000,55.0000 L 540.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 537.6000,44.3750 L 538.6000,44.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 201.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 537.6000,33.7500 L 538.6000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 201.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 537.6000,23.1250 L 538.6000,23.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 201.6000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 537.6000,12.5000 L 540.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 509.6000,118.7500 L 509.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 509.6000,118.7500 L 453.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 453.6000,118.7500 L 397.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 397.6000,225.0000 L 341.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 341.6000,225.0000 L 285.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 285.6000,12.5000 L 229.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="509.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="453.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="397.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="341.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="285.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="229.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 490.0200,237.0000 L 490.0200,226.5000 L 529.6800,226.5000 L 529.6800,237.0000 L 490.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="490.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_11"><path d=" M 434.0200,237.0000 L 434.0200,226.5000 L 473.6800,226.5000 L 473.6800,237.0000 L 434.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="434.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 378.0200,237.0000 L 378.0200,226.5000 L 417.6800,226.5000 L 417.6800,237.0000 L 378.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="378.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_17"><path d=" M 322.0200,237.0000 L 322.0200,226.5000 L 361.6800,226.5000 L 361.6800,237.0000 L 322.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="322.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_20"><path d=" M 266.0200,237.0000 L 266.0200,226.5000 L 305.6800,226.5000 L 305.6800,237.0000 L 266.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="266.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_23"><path d=" M 210.0200,237.0000 L 210.0200,226.5000 L 249.6800,226.5000 L 249.6800,237.0000 L 210.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="210.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_28"><path d=" M 529.5200,224.0000 L 529.5200,213.5000 L 536.6000,213.5000 L 536.6000,224.0000 L 529.5200,224.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="530.0200" text-length="5.5800px" y="221.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 518.3600,181.5000 L 518.3600,171.0000 L 536.6000,171.0000 L 536.6000,181.5000 L 518.3600,181.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="518.8600" text-length="16.7400px" y="179.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 518.3600,139.0000 L 518.3600,128.5000 L 536.6000,128.5000 L 536.6000,139.0000 L 518.3600,139.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="518.8600" text-length="16.7400px" y="136.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 518.3600,96.5000 L 518.3600,86.0000 L 536.6000,86.0000 L 536.6000,96.5000 L 518.3600,96.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="518.8600" text-length="16.7400px" y="94.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 518.3600,54.0000 L 518.3600,43.5000 L 536.6000,43.5000 L 536.6000,54.0000 L 518.3600,54.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="518.8600" text-length="16.7400px" y="51.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 518.3600,24.5000 L 518.3600,14.0000 L 536.6000,14.0000 L 536.6000,24.5000 L 518.3600,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="518.8600" text-length="16.7400px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_116.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_116.svg new file mode 100644 index 0000000..9a4cd32 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_116.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,12.5000 L 112.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,16.5000 L 112.0000,12.5000 L 120.0000,8.5000 L 120.0000,16.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 481.6000,12.5000 L 481.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 481.6000,15.5000 L 481.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 425.6000,12.5000 L 425.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 425.6000,15.5000 L 425.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 369.6000,12.5000 L 369.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 369.6000,15.5000 L 369.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 313.6000,12.5000 L 313.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 313.6000,15.5000 L 313.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 257.6000,12.5000 L 257.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 257.6000,15.5000 L 257.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 201.6000,12.5000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 201.6000,15.5000 L 201.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 537.6000,0.0000 L 537.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 541.6000,242.0000 L 537.6000,250.0000 L 533.6000,242.0000 L 541.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 538.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 538.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 538.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 540.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 538.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 538.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 538.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 540.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 538.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 538.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 201.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 538.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 201.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 540.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 538.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 201.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 538.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 201.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 538.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 201.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 540.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 538.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 201.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 538.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 201.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 538.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 540.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 509.6000,118.7500 L 509.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 509.6000,118.7500 L 453.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 453.6000,118.7500 L 397.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 397.6000,12.5000 L 341.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 341.6000,12.5000 L 285.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 285.6000,225.0000 L 229.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="509.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="453.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="397.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="341.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="285.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="229.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 490.0200,24.5000 L 490.0200,14.0000 L 529.6800,14.0000 L 529.6800,24.5000 L 490.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="490.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_11"><path d=" M 434.0200,24.5000 L 434.0200,14.0000 L 473.6800,14.0000 L 473.6800,24.5000 L 434.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="434.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 378.0200,24.5000 L 378.0200,14.0000 L 417.6800,14.0000 L 417.6800,24.5000 L 378.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="378.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_17"><path d=" M 322.0200,24.5000 L 322.0200,14.0000 L 361.6800,14.0000 L 361.6800,24.5000 L 322.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="322.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_20"><path d=" M 266.0200,24.5000 L 266.0200,14.0000 L 305.6800,14.0000 L 305.6800,24.5000 L 266.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="266.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_23"><path d=" M 210.0200,24.5000 L 210.0200,14.0000 L 249.6800,14.0000 L 249.6800,24.5000 L 210.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="210.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_28"><path d=" M 529.5200,24.5000 L 529.5200,14.0000 L 536.6000,14.0000 L 536.6000,24.5000 L 529.5200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="530.0200" text-length="5.5800px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 518.3600,67.0000 L 518.3600,56.5000 L 536.6000,56.5000 L 536.6000,67.0000 L 518.3600,67.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="518.8600" text-length="16.7400px" y="64.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 518.3600,109.5000 L 518.3600,99.0000 L 536.6000,99.0000 L 536.6000,109.5000 L 518.3600,109.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="518.8600" text-length="16.7400px" y="107.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 518.3600,152.0000 L 518.3600,141.5000 L 536.6000,141.5000 L 536.6000,152.0000 L 518.3600,152.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="518.8600" text-length="16.7400px" y="149.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 518.3600,194.5000 L 518.3600,184.0000 L 536.6000,184.0000 L 536.6000,194.5000 L 518.3600,194.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="518.8600" text-length="16.7400px" y="192.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 518.3600,224.0000 L 518.3600,213.5000 L 536.6000,213.5000 L 536.6000,224.0000 L 518.3600,224.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="518.8600" text-length="16.7400px" y="221.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_117.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_117.svg new file mode 100644 index 0000000..5e9e9d0 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_117.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,225.0000 L 560.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,221.0000 L 560.0000,225.0000 L 552.0000,229.0000 L 552.0000,221.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 253.8667,25.0000 L 253.8667,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 253.8667,222.0000 L 253.8667,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 306.1333,25.0000 L 306.1333,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 306.1333,222.0000 L 306.1333,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 358.4000,25.0000 L 358.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 358.4000,222.0000 L 358.4000,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 410.6667,25.0000 L 410.6667,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 410.6667,222.0000 L 410.6667,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 462.9333,25.0000 L 462.9333,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 462.9333,222.0000 L 462.9333,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 515.2000,222.0000 L 515.2000,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 201.6000,250.0000 L 201.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 197.6000,8.0000 L 201.6000,0.0000 L 205.6000,8.0000 L 197.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,215.0000 L 202.6000,215.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,205.0000 L 202.6000,205.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,195.0000 L 202.6000,195.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,185.0000 L 204.6000,185.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,175.0000 L 202.6000,175.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,165.0000 L 202.6000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,155.0000 L 202.6000,155.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,145.0000 L 204.6000,145.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,135.0000 L 202.6000,135.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,125.0000 L 202.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 201.6000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,115.0000 L 202.6000,115.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 201.6000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 201.6000,105.0000 L 204.6000,105.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,95.0000 L 202.6000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 201.6000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,85.0000 L 202.6000,85.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 201.6000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,75.0000 L 202.6000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 201.6000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 201.6000,65.0000 L 204.6000,65.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,55.0000 L 202.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 201.6000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,45.0000 L 202.6000,45.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 201.6000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,35.0000 L 202.6000,35.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 201.6000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 201.6000,25.0000 L 204.6000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 227.7333,125.0000 L 227.7333,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 227.7333,125.0000 L 280.0000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 280.0000,125.0000 L 332.2667,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 332.2667,225.0000 L 384.5333,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 384.5333,225.0000 L 436.8000,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 436.8000,25.0000 L 489.0667,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="227.7333" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="280.0000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="332.2667" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="384.5333" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="436.8000" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="489.0667" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 203.9133,239.0000 L 203.9133,226.5000 L 252.0533,226.5000 L 252.0533,239.0000 L 203.9133,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="204.4133" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_11"><path d=" M 256.1800,239.0000 L 256.1800,226.5000 L 304.3200,226.5000 L 304.3200,239.0000 L 256.1800,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="256.6800" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 308.4467,239.0000 L 308.4467,226.5000 L 356.5867,226.5000 L 356.5867,239.0000 L 308.4467,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="308.9467" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_17"><path d=" M 360.7133,239.0000 L 360.7133,226.5000 L 408.8533,226.5000 L 408.8533,239.0000 L 360.7133,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="361.2133" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_20"><path d=" M 412.9800,239.0000 L 412.9800,226.5000 L 461.1200,226.5000 L 461.1200,239.0000 L 412.9800,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="413.4800" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_23"><path d=" M 465.2467,239.0000 L 465.2467,226.5000 L 513.3867,226.5000 L 513.3867,239.0000 L 465.2467,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="465.7467" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_28"><path d=" M 192.2800,224.0000 L 192.2800,211.5000 L 200.6000,211.5000 L 200.6000,224.0000 L 192.2800,224.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="192.7800" text-length="6.8200px" y="221.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 178.6400,184.0000 L 178.6400,171.5000 L 200.6000,171.5000 L 200.6000,184.0000 L 178.6400,184.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="179.1400" text-length="20.4600px" y="181.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 178.6400,144.0000 L 178.6400,131.5000 L 200.6000,131.5000 L 200.6000,144.0000 L 178.6400,144.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="179.1400" text-length="20.4600px" y="141.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 178.6400,104.0000 L 178.6400,91.5000 L 200.6000,91.5000 L 200.6000,104.0000 L 178.6400,104.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="179.1400" text-length="20.4600px" y="101.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 178.6400,64.0000 L 178.6400,51.5000 L 200.6000,51.5000 L 200.6000,64.0000 L 178.6400,64.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="179.1400" text-length="20.4600px" y="61.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 178.6400,39.0000 L 178.6400,26.5000 L 200.6000,26.5000 L 200.6000,39.0000 L 178.6400,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="179.1400" text-length="20.4600px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_118.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_118.svg new file mode 100644 index 0000000..07abf20 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_118.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,25.0000 L 560.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,21.0000 L 560.0000,25.0000 L 552.0000,29.0000 L 552.0000,21.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 253.8667,25.0000 L 253.8667,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 253.8667,22.0000 L 253.8667,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 306.1333,25.0000 L 306.1333,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 306.1333,22.0000 L 306.1333,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 358.4000,25.0000 L 358.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 358.4000,22.0000 L 358.4000,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 410.6667,25.0000 L 410.6667,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 410.6667,22.0000 L 410.6667,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 462.9333,25.0000 L 462.9333,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 462.9333,22.0000 L 462.9333,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 515.2000,22.0000 L 515.2000,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 201.6000,0.0000 L 201.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 205.6000,242.0000 L 201.6000,250.0000 L 197.6000,242.0000 L 205.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 202.6000,35.0000 L 201.6000,35.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 202.6000,45.0000 L 201.6000,45.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 202.6000,55.0000 L 201.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 204.6000,65.0000 L 201.6000,65.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 202.6000,75.0000 L 201.6000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 202.6000,85.0000 L 201.6000,85.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 202.6000,95.0000 L 201.6000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 204.6000,105.0000 L 201.6000,105.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 202.6000,115.0000 L 201.6000,115.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 202.6000,125.0000 L 201.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 201.6000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 202.6000,135.0000 L 201.6000,135.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 201.6000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 204.6000,145.0000 L 201.6000,145.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 202.6000,155.0000 L 201.6000,155.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 201.6000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 202.6000,165.0000 L 201.6000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 201.6000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 202.6000,175.0000 L 201.6000,175.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 201.6000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 204.6000,185.0000 L 201.6000,185.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 202.6000,195.0000 L 201.6000,195.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 201.6000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 202.6000,205.0000 L 201.6000,205.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 201.6000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 202.6000,215.0000 L 201.6000,215.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 204.6000,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 227.7333,125.0000 L 227.7333,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 227.7333,125.0000 L 280.0000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 280.0000,125.0000 L 332.2667,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 332.2667,25.0000 L 384.5333,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 384.5333,25.0000 L 436.8000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 436.8000,225.0000 L 489.0667,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="227.7333" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="280.0000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="332.2667" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="384.5333" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="436.8000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="489.0667" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 203.9133,39.0000 L 203.9133,26.5000 L 252.0533,26.5000 L 252.0533,39.0000 L 203.9133,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="204.4133" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_11"><path d=" M 256.1800,39.0000 L 256.1800,26.5000 L 304.3200,26.5000 L 304.3200,39.0000 L 256.1800,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="256.6800" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 308.4467,39.0000 L 308.4467,26.5000 L 356.5867,26.5000 L 356.5867,39.0000 L 308.4467,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="308.9467" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_17"><path d=" M 360.7133,39.0000 L 360.7133,26.5000 L 408.8533,26.5000 L 408.8533,39.0000 L 360.7133,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="361.2133" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_20"><path d=" M 412.9800,39.0000 L 412.9800,26.5000 L 461.1200,26.5000 L 461.1200,39.0000 L 412.9800,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="413.4800" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_23"><path d=" M 465.2467,39.0000 L 465.2467,26.5000 L 513.3867,26.5000 L 513.3867,39.0000 L 465.2467,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="465.7467" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_28"><path d=" M 192.2800,39.0000 L 192.2800,26.5000 L 200.6000,26.5000 L 200.6000,39.0000 L 192.2800,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="192.7800" text-length="6.8200px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 178.6400,79.0000 L 178.6400,66.5000 L 200.6000,66.5000 L 200.6000,79.0000 L 178.6400,79.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="179.1400" text-length="20.4600px" y="76.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 178.6400,119.0000 L 178.6400,106.5000 L 200.6000,106.5000 L 200.6000,119.0000 L 178.6400,119.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="179.1400" text-length="20.4600px" y="116.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 178.6400,159.0000 L 178.6400,146.5000 L 200.6000,146.5000 L 200.6000,159.0000 L 178.6400,159.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="179.1400" text-length="20.4600px" y="156.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 178.6400,199.0000 L 178.6400,186.5000 L 200.6000,186.5000 L 200.6000,199.0000 L 178.6400,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="179.1400" text-length="20.4600px" y="196.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 178.6400,224.0000 L 178.6400,211.5000 L 200.6000,211.5000 L 200.6000,224.0000 L 178.6400,224.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="179.1400" text-length="20.4600px" y="221.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_119.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_119.svg new file mode 100644 index 0000000..35858cc --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_119.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,225.0000 L 112.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,229.0000 L 112.0000,225.0000 L 120.0000,221.0000 L 120.0000,229.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 462.9333,25.0000 L 462.9333,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 462.9333,228.0000 L 462.9333,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 410.6667,25.0000 L 410.6667,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 410.6667,228.0000 L 410.6667,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 358.4000,25.0000 L 358.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 358.4000,228.0000 L 358.4000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 306.1333,25.0000 L 306.1333,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 306.1333,228.0000 L 306.1333,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 253.8667,25.0000 L 253.8667,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 253.8667,228.0000 L 253.8667,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 201.6000,25.0000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 201.6000,228.0000 L 201.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 515.2000,250.0000 L 515.2000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 511.2000,8.0000 L 515.2000,0.0000 L 519.2000,8.0000 L 511.2000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 515.2000,215.0000 L 516.2000,215.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 515.2000,205.0000 L 516.2000,205.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 515.2000,195.0000 L 516.2000,195.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 515.2000,185.0000 L 518.2000,185.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 515.2000,175.0000 L 516.2000,175.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 515.2000,165.0000 L 516.2000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 515.2000,155.0000 L 516.2000,155.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 515.2000,145.0000 L 518.2000,145.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 515.2000,135.0000 L 516.2000,135.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 515.2000,125.0000 L 516.2000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 201.6000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 515.2000,115.0000 L 516.2000,115.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 201.6000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 515.2000,105.0000 L 518.2000,105.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 515.2000,95.0000 L 516.2000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 201.6000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 515.2000,85.0000 L 516.2000,85.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 201.6000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 515.2000,75.0000 L 516.2000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 201.6000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 515.2000,65.0000 L 518.2000,65.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 515.2000,55.0000 L 516.2000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 201.6000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 515.2000,45.0000 L 516.2000,45.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 201.6000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 515.2000,35.0000 L 516.2000,35.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 201.6000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 515.2000,25.0000 L 518.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 489.0667,125.0000 L 489.0667,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 489.0667,125.0000 L 436.8000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 436.8000,125.0000 L 384.5333,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 384.5333,225.0000 L 332.2667,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 332.2667,225.0000 L 280.0000,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 280.0000,25.0000 L 227.7333,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="489.0667" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="436.8000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="384.5333" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="332.2667" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="280.0000" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="227.7333" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 465.2467,239.0000 L 465.2467,226.5000 L 513.3867,226.5000 L 513.3867,239.0000 L 465.2467,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="465.7467" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_11"><path d=" M 412.9800,239.0000 L 412.9800,226.5000 L 461.1200,226.5000 L 461.1200,239.0000 L 412.9800,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="413.4800" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 360.7133,239.0000 L 360.7133,226.5000 L 408.8533,226.5000 L 408.8533,239.0000 L 360.7133,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="361.2133" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_17"><path d=" M 308.4467,239.0000 L 308.4467,226.5000 L 356.5867,226.5000 L 356.5867,239.0000 L 308.4467,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="308.9467" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_20"><path d=" M 256.1800,239.0000 L 256.1800,226.5000 L 304.3200,226.5000 L 304.3200,239.0000 L 256.1800,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="256.6800" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_23"><path d=" M 203.9133,239.0000 L 203.9133,226.5000 L 252.0533,226.5000 L 252.0533,239.0000 L 203.9133,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="204.4133" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_28"><path d=" M 505.8800,224.0000 L 505.8800,211.5000 L 514.2000,211.5000 L 514.2000,224.0000 L 505.8800,224.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="506.3800" text-length="6.8200px" y="221.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 492.2400,184.0000 L 492.2400,171.5000 L 514.2000,171.5000 L 514.2000,184.0000 L 492.2400,184.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="492.7400" text-length="20.4600px" y="181.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 492.2400,144.0000 L 492.2400,131.5000 L 514.2000,131.5000 L 514.2000,144.0000 L 492.2400,144.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="492.7400" text-length="20.4600px" y="141.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 492.2400,104.0000 L 492.2400,91.5000 L 514.2000,91.5000 L 514.2000,104.0000 L 492.2400,104.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="492.7400" text-length="20.4600px" y="101.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 492.2400,64.0000 L 492.2400,51.5000 L 514.2000,51.5000 L 514.2000,64.0000 L 492.2400,64.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="492.7400" text-length="20.4600px" y="61.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 492.2400,39.0000 L 492.2400,26.5000 L 514.2000,26.5000 L 514.2000,39.0000 L 492.2400,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="492.7400" text-length="20.4600px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_12.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_12.svg new file mode 100644 index 0000000..a4f45e2 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_12.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,12.5000 L 112.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,16.5000 L 112.0000,12.5000 L 120.0000,8.5000 L 120.0000,16.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 461.4400,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 461.4400,12.5000 L 461.4400,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 385.2800,12.5000 L 385.2800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 385.2800,12.5000 L 385.2800,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 309.1200,12.5000 L 309.1200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 309.1200,12.5000 L 309.1200,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 232.9600,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 232.9600,12.5000 L 232.9600,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 156.8000,12.5000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 156.8000,12.5000 L 156.8000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 537.6000,0.0000 L 537.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 541.1000,243.0000 L 537.6000,250.0000 L 534.1000,243.0000 L 541.1000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 156.8000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 538.6000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 538.6000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 538.6000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 540.6000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 538.6000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 538.6000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 538.6000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 540.6000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 538.6000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 538.6000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 538.6000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 540.6000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 538.6000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 538.6000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 538.6000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 540.6000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 538.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 538.6000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 538.6000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 540.6000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 537.6000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 537.6000,106.2500 L 461.4400,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 461.4400,106.2500 L 385.2800,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 385.2800,12.5000 L 309.1200,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 309.1200,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 232.9600,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="537.6000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="461.4400" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="385.2800" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="309.1200" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="232.9600" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="156.8000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 446.6300,33.6000 L 446.6300,14.0000 L 476.7500,14.0000 L 476.7500,33.6000 L 446.6300,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_10_text" x="447.1300" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_10_text" x="458.6500" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_13"><path d=" M 370.4700,33.6000 L 370.4700,14.0000 L 400.5900,14.0000 L 400.5900,33.6000 L 370.4700,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_13_text" x="370.9700" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_13_text" x="382.4900" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_16"><path d=" M 294.3100,33.6000 L 294.3100,14.0000 L 324.4300,14.0000 L 324.4300,33.6000 L 294.3100,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_16_text" x="294.8100" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_16_text" x="306.3300" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_19"><path d=" M 218.1500,33.6000 L 218.1500,14.0000 L 248.2700,14.0000 L 248.2700,33.6000 L 218.1500,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_19_text" x="218.6500" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_19_text" x="230.1700" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_22"><path d=" M 141.9900,33.6000 L 141.9900,14.0000 L 172.1100,14.0000 L 172.1100,33.6000 L 141.9900,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_22_text" x="142.4900" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="154.0100" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25"><path d=" M 529.5200,24.5000 L 529.5200,14.0000 L 536.6000,14.0000 L 536.6000,24.5000 L 529.5200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_25_text" x="530.0200" text-length="5.5800px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_34"><path d=" M 518.3600,62.0000 L 518.3600,51.5000 L 536.6000,51.5000 L 536.6000,62.0000 L 518.3600,62.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="518.8600" text-length="16.7400px" y="59.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 518.3600,99.5000 L 518.3600,89.0000 L 536.6000,89.0000 L 536.6000,99.5000 L 518.3600,99.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="518.8600" text-length="16.7400px" y="97.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 518.3600,137.0000 L 518.3600,126.5000 L 536.6000,126.5000 L 536.6000,137.0000 L 518.3600,137.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="518.8600" text-length="16.7400px" y="134.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 518.3600,174.5000 L 518.3600,164.0000 L 536.6000,164.0000 L 536.6000,174.5000 L 518.3600,174.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="518.8600" text-length="16.7400px" y="172.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 518.3600,199.0000 L 518.3600,188.5000 L 536.6000,188.5000 L 536.6000,199.0000 L 518.3600,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="518.8600" text-length="16.7400px" y="196.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_120.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_120.svg new file mode 100644 index 0000000..a7e3379 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_120.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,25.0000 L 112.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,29.0000 L 112.0000,25.0000 L 120.0000,21.0000 L 120.0000,29.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 462.9333,25.0000 L 462.9333,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 462.9333,28.0000 L 462.9333,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 410.6667,25.0000 L 410.6667,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 410.6667,28.0000 L 410.6667,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 358.4000,25.0000 L 358.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 358.4000,28.0000 L 358.4000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 306.1333,25.0000 L 306.1333,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 306.1333,28.0000 L 306.1333,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 253.8667,25.0000 L 253.8667,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 253.8667,28.0000 L 253.8667,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 201.6000,25.0000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 201.6000,28.0000 L 201.6000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 515.2000,0.0000 L 515.2000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 519.2000,242.0000 L 515.2000,250.0000 L 511.2000,242.0000 L 519.2000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 516.2000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 516.2000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 516.2000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 518.2000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 516.2000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 516.2000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 516.2000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 518.2000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 516.2000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 516.2000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 201.6000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 516.2000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 201.6000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 518.2000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 516.2000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 201.6000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 516.2000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 201.6000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 516.2000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 201.6000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 518.2000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 516.2000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 201.6000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 516.2000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 201.6000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 516.2000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 518.2000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 489.0667,125.0000 L 489.0667,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 489.0667,125.0000 L 436.8000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 436.8000,125.0000 L 384.5333,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 384.5333,25.0000 L 332.2667,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 332.2667,25.0000 L 280.0000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 280.0000,225.0000 L 227.7333,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="489.0667" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="436.8000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="384.5333" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="332.2667" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="280.0000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="227.7333" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 465.2467,39.0000 L 465.2467,26.5000 L 513.3867,26.5000 L 513.3867,39.0000 L 465.2467,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="465.7467" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_11"><path d=" M 412.9800,39.0000 L 412.9800,26.5000 L 461.1200,26.5000 L 461.1200,39.0000 L 412.9800,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="413.4800" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 360.7133,39.0000 L 360.7133,26.5000 L 408.8533,26.5000 L 408.8533,39.0000 L 360.7133,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="361.2133" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_17"><path d=" M 308.4467,39.0000 L 308.4467,26.5000 L 356.5867,26.5000 L 356.5867,39.0000 L 308.4467,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="308.9467" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_20"><path d=" M 256.1800,39.0000 L 256.1800,26.5000 L 304.3200,26.5000 L 304.3200,39.0000 L 256.1800,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="256.6800" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_23"><path d=" M 203.9133,39.0000 L 203.9133,26.5000 L 252.0533,26.5000 L 252.0533,39.0000 L 203.9133,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="204.4133" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_28"><path d=" M 505.8800,39.0000 L 505.8800,26.5000 L 514.2000,26.5000 L 514.2000,39.0000 L 505.8800,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="506.3800" text-length="6.8200px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 492.2400,79.0000 L 492.2400,66.5000 L 514.2000,66.5000 L 514.2000,79.0000 L 492.2400,79.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="492.7400" text-length="20.4600px" y="76.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 492.2400,119.0000 L 492.2400,106.5000 L 514.2000,106.5000 L 514.2000,119.0000 L 492.2400,119.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="492.7400" text-length="20.4600px" y="116.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 492.2400,159.0000 L 492.2400,146.5000 L 514.2000,146.5000 L 514.2000,159.0000 L 492.2400,159.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="492.7400" text-length="20.4600px" y="156.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 492.2400,199.0000 L 492.2400,186.5000 L 514.2000,186.5000 L 514.2000,199.0000 L 492.2400,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="492.7400" text-length="20.4600px" y="196.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 492.2400,224.0000 L 492.2400,211.5000 L 514.2000,211.5000 L 514.2000,224.0000 L 492.2400,224.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="492.7400" text-length="20.4600px" y="221.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_121.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_121.svg new file mode 100644 index 0000000..2f152b9 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_121.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,200.0000 L 560.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,196.0000 L 560.0000,200.0000 L 552.0000,204.0000 L 552.0000,196.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 220.2667,12.5000 L 220.2667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 220.2667,197.0000 L 220.2667,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 283.7333,12.5000 L 283.7333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 283.7333,197.0000 L 283.7333,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 347.2000,12.5000 L 347.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 347.2000,197.0000 L 347.2000,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 410.6667,12.5000 L 410.6667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 410.6667,197.0000 L 410.6667,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 474.1333,12.5000 L 474.1333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 474.1333,197.0000 L 474.1333,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 537.6000,197.0000 L 537.6000,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 156.8000,250.0000 L 156.8000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 153.8000,6.0000 L 156.8000,0.0000 L 159.8000,6.0000 L 153.8000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,190.6250 L 157.8000,190.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,181.2500 L 157.8000,181.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,171.8750 L 157.8000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,162.5000 L 159.8000,162.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,153.1250 L 157.8000,153.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,143.7500 L 157.8000,143.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,134.3750 L 157.8000,134.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,125.0000 L 159.8000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,115.6250 L 157.8000,115.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,106.2500 L 157.8000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 156.8000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,96.8750 L 157.8000,96.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 156.8000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 156.8000,87.5000 L 159.8000,87.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,78.1250 L 157.8000,78.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 156.8000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,68.7500 L 157.8000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 156.8000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,59.3750 L 157.8000,59.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 156.8000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 156.8000,50.0000 L 159.8000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,40.6250 L 157.8000,40.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 156.8000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,31.2500 L 157.8000,31.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 156.8000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,21.8750 L 157.8000,21.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 156.8000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 156.8000,12.5000 L 159.8000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 188.5333,106.2500 L 188.5333,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 188.5333,106.2500 L 252.0000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 252.0000,106.2500 L 315.4667,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 315.4667,200.0000 L 378.9333,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 378.9333,200.0000 L 442.4000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 442.4000,12.5000 L 505.8667,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="188.5333" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="252.0000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="315.4667" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="378.9333" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="442.4000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="505.8667" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 173.7233,221.1000 L 173.7233,201.5000 L 203.8433,201.5000 L 203.8433,221.1000 L 173.7233,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="174.2233" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="185.7433" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 237.1900,221.1000 L 237.1900,201.5000 L 267.3100,201.5000 L 267.3100,221.1000 L 237.1900,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="237.6900" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="249.2100" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 300.6567,221.1000 L 300.6567,201.5000 L 330.7767,201.5000 L 330.7767,221.1000 L 300.6567,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="301.1567" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="312.6767" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 364.1233,221.1000 L 364.1233,201.5000 L 394.2433,201.5000 L 394.2433,221.1000 L 364.1233,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="364.6233" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="376.1433" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 427.5900,221.1000 L 427.5900,201.5000 L 457.7100,201.5000 L 457.7100,221.1000 L 427.5900,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="428.0900" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="439.6100" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 491.0567,221.1000 L 491.0567,201.5000 L 521.1767,201.5000 L 521.1767,221.1000 L 491.0567,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="491.5567" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="503.0767" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 148.7200,199.0000 L 148.7200,188.5000 L 155.8000,188.5000 L 155.8000,199.0000 L 148.7200,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="149.2200" text-length="5.5800px" y="196.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 137.5600,161.5000 L 137.5600,151.0000 L 155.8000,151.0000 L 155.8000,161.5000 L 137.5600,161.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="138.0600" text-length="16.7400px" y="159.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 137.5600,124.0000 L 137.5600,113.5000 L 155.8000,113.5000 L 155.8000,124.0000 L 137.5600,124.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="138.0600" text-length="16.7400px" y="121.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 137.5600,86.5000 L 137.5600,76.0000 L 155.8000,76.0000 L 155.8000,86.5000 L 137.5600,86.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="138.0600" text-length="16.7400px" y="84.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 137.5600,49.0000 L 137.5600,38.5000 L 155.8000,38.5000 L 155.8000,49.0000 L 137.5600,49.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="138.0600" text-length="16.7400px" y="46.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 137.5600,24.5000 L 137.5600,14.0000 L 155.8000,14.0000 L 155.8000,24.5000 L 137.5600,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="138.0600" text-length="16.7400px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_122.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_122.svg new file mode 100644 index 0000000..ec5d563 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_122.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,12.5000 L 560.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,8.5000 L 560.0000,12.5000 L 552.0000,16.5000 L 552.0000,8.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 220.2667,12.5000 L 220.2667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 220.2667,9.5000 L 220.2667,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 283.7333,12.5000 L 283.7333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 283.7333,9.5000 L 283.7333,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 347.2000,12.5000 L 347.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 347.2000,9.5000 L 347.2000,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 410.6667,12.5000 L 410.6667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 410.6667,9.5000 L 410.6667,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 474.1333,12.5000 L 474.1333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 474.1333,9.5000 L 474.1333,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 537.6000,9.5000 L 537.6000,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 156.8000,0.0000 L 156.8000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 160.3000,243.0000 L 156.8000,250.0000 L 153.3000,243.0000 L 160.3000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 157.8000,21.8750 L 156.8000,21.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 157.8000,31.2500 L 156.8000,31.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 157.8000,40.6250 L 156.8000,40.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 159.8000,50.0000 L 156.8000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 157.8000,59.3750 L 156.8000,59.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 157.8000,68.7500 L 156.8000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 157.8000,78.1250 L 156.8000,78.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 159.8000,87.5000 L 156.8000,87.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 157.8000,96.8750 L 156.8000,96.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 157.8000,106.2500 L 156.8000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 156.8000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 157.8000,115.6250 L 156.8000,115.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 156.8000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 159.8000,125.0000 L 156.8000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 157.8000,134.3750 L 156.8000,134.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 156.8000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 157.8000,143.7500 L 156.8000,143.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 156.8000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 157.8000,153.1250 L 156.8000,153.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 156.8000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 159.8000,162.5000 L 156.8000,162.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 157.8000,171.8750 L 156.8000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 156.8000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 157.8000,181.2500 L 156.8000,181.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 156.8000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 157.8000,190.6250 L 156.8000,190.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 159.8000,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 188.5333,106.2500 L 188.5333,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 188.5333,106.2500 L 252.0000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 252.0000,106.2500 L 315.4667,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 315.4667,12.5000 L 378.9333,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 378.9333,12.5000 L 442.4000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 442.4000,200.0000 L 505.8667,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="188.5333" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="252.0000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="315.4667" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="378.9333" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="442.4000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="505.8667" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 173.7233,33.6000 L 173.7233,14.0000 L 203.8433,14.0000 L 203.8433,33.6000 L 173.7233,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="174.2233" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="185.7433" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 237.1900,33.6000 L 237.1900,14.0000 L 267.3100,14.0000 L 267.3100,33.6000 L 237.1900,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="237.6900" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="249.2100" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 300.6567,33.6000 L 300.6567,14.0000 L 330.7767,14.0000 L 330.7767,33.6000 L 300.6567,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="301.1567" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="312.6767" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 364.1233,33.6000 L 364.1233,14.0000 L 394.2433,14.0000 L 394.2433,33.6000 L 364.1233,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="364.6233" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="376.1433" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 427.5900,33.6000 L 427.5900,14.0000 L 457.7100,14.0000 L 457.7100,33.6000 L 427.5900,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="428.0900" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="439.6100" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 491.0567,33.6000 L 491.0567,14.0000 L 521.1767,14.0000 L 521.1767,33.6000 L 491.0567,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="491.5567" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="503.0767" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 148.7200,24.5000 L 148.7200,14.0000 L 155.8000,14.0000 L 155.8000,24.5000 L 148.7200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="149.2200" text-length="5.5800px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 137.5600,62.0000 L 137.5600,51.5000 L 155.8000,51.5000 L 155.8000,62.0000 L 137.5600,62.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="138.0600" text-length="16.7400px" y="59.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 137.5600,99.5000 L 137.5600,89.0000 L 155.8000,89.0000 L 155.8000,99.5000 L 137.5600,99.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="138.0600" text-length="16.7400px" y="97.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 137.5600,137.0000 L 137.5600,126.5000 L 155.8000,126.5000 L 155.8000,137.0000 L 137.5600,137.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="138.0600" text-length="16.7400px" y="134.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 137.5600,174.5000 L 137.5600,164.0000 L 155.8000,164.0000 L 155.8000,174.5000 L 137.5600,174.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="138.0600" text-length="16.7400px" y="172.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 137.5600,199.0000 L 137.5600,188.5000 L 155.8000,188.5000 L 155.8000,199.0000 L 137.5600,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="138.0600" text-length="16.7400px" y="196.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_123.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_123.svg new file mode 100644 index 0000000..77b5a17 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_123.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,200.0000 L 112.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,204.0000 L 112.0000,200.0000 L 120.0000,196.0000 L 120.0000,204.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 474.1333,12.5000 L 474.1333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 474.1333,203.0000 L 474.1333,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 410.6667,12.5000 L 410.6667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 410.6667,203.0000 L 410.6667,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 347.2000,12.5000 L 347.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 347.2000,203.0000 L 347.2000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 283.7333,12.5000 L 283.7333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 283.7333,203.0000 L 283.7333,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 220.2667,12.5000 L 220.2667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 220.2667,203.0000 L 220.2667,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 156.8000,12.5000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 156.8000,203.0000 L 156.8000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 537.6000,250.0000 L 537.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 534.6000,6.0000 L 537.6000,0.0000 L 540.6000,6.0000 L 534.6000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 537.6000,190.6250 L 538.6000,190.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 537.6000,181.2500 L 538.6000,181.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 537.6000,171.8750 L 538.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 537.6000,162.5000 L 540.6000,162.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 537.6000,153.1250 L 538.6000,153.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 537.6000,143.7500 L 538.6000,143.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 537.6000,134.3750 L 538.6000,134.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 537.6000,125.0000 L 540.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 537.6000,115.6250 L 538.6000,115.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 537.6000,106.2500 L 538.6000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 156.8000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 537.6000,96.8750 L 538.6000,96.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 156.8000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 537.6000,87.5000 L 540.6000,87.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 537.6000,78.1250 L 538.6000,78.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 156.8000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 537.6000,68.7500 L 538.6000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 156.8000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 537.6000,59.3750 L 538.6000,59.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 156.8000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 537.6000,50.0000 L 540.6000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 537.6000,40.6250 L 538.6000,40.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 156.8000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 537.6000,31.2500 L 538.6000,31.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 156.8000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 537.6000,21.8750 L 538.6000,21.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 156.8000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 537.6000,12.5000 L 540.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 505.8667,106.2500 L 505.8667,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 505.8667,106.2500 L 442.4000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 442.4000,106.2500 L 378.9333,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 378.9333,200.0000 L 315.4667,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 315.4667,200.0000 L 252.0000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 252.0000,12.5000 L 188.5333,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="505.8667" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="442.4000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="378.9333" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="315.4667" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="252.0000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="188.5333" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 491.0567,221.1000 L 491.0567,201.5000 L 521.1767,201.5000 L 521.1767,221.1000 L 491.0567,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="491.5567" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="503.0767" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 427.5900,221.1000 L 427.5900,201.5000 L 457.7100,201.5000 L 457.7100,221.1000 L 427.5900,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="428.0900" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="439.6100" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 364.1233,221.1000 L 364.1233,201.5000 L 394.2433,201.5000 L 394.2433,221.1000 L 364.1233,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="364.6233" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="376.1433" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 300.6567,221.1000 L 300.6567,201.5000 L 330.7767,201.5000 L 330.7767,221.1000 L 300.6567,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="301.1567" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="312.6767" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 237.1900,221.1000 L 237.1900,201.5000 L 267.3100,201.5000 L 267.3100,221.1000 L 237.1900,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="237.6900" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="249.2100" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 173.7233,221.1000 L 173.7233,201.5000 L 203.8433,201.5000 L 203.8433,221.1000 L 173.7233,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="174.2233" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="185.7433" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 529.5200,199.0000 L 529.5200,188.5000 L 536.6000,188.5000 L 536.6000,199.0000 L 529.5200,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="530.0200" text-length="5.5800px" y="196.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 518.3600,161.5000 L 518.3600,151.0000 L 536.6000,151.0000 L 536.6000,161.5000 L 518.3600,161.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="518.8600" text-length="16.7400px" y="159.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 518.3600,124.0000 L 518.3600,113.5000 L 536.6000,113.5000 L 536.6000,124.0000 L 518.3600,124.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="518.8600" text-length="16.7400px" y="121.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 518.3600,86.5000 L 518.3600,76.0000 L 536.6000,76.0000 L 536.6000,86.5000 L 518.3600,86.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="518.8600" text-length="16.7400px" y="84.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 518.3600,49.0000 L 518.3600,38.5000 L 536.6000,38.5000 L 536.6000,49.0000 L 518.3600,49.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="518.8600" text-length="16.7400px" y="46.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 518.3600,24.5000 L 518.3600,14.0000 L 536.6000,14.0000 L 536.6000,24.5000 L 518.3600,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="518.8600" text-length="16.7400px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_124.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_124.svg new file mode 100644 index 0000000..9b2b6af --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_124.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,12.5000 L 112.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,16.5000 L 112.0000,12.5000 L 120.0000,8.5000 L 120.0000,16.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 474.1333,12.5000 L 474.1333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 474.1333,15.5000 L 474.1333,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 410.6667,12.5000 L 410.6667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 410.6667,15.5000 L 410.6667,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 347.2000,12.5000 L 347.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 347.2000,15.5000 L 347.2000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 283.7333,12.5000 L 283.7333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 283.7333,15.5000 L 283.7333,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 220.2667,12.5000 L 220.2667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 220.2667,15.5000 L 220.2667,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 156.8000,12.5000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 156.8000,15.5000 L 156.8000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 537.6000,0.0000 L 537.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 541.1000,243.0000 L 537.6000,250.0000 L 534.1000,243.0000 L 541.1000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 538.6000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 538.6000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 538.6000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 540.6000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 538.6000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 538.6000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 538.6000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 540.6000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 538.6000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 538.6000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 156.8000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 538.6000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 156.8000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 540.6000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 538.6000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 156.8000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 538.6000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 156.8000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 538.6000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 156.8000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 540.6000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 538.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 156.8000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 538.6000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 156.8000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 538.6000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 540.6000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 505.8667,106.2500 L 505.8667,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 505.8667,106.2500 L 442.4000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 442.4000,106.2500 L 378.9333,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 378.9333,12.5000 L 315.4667,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 315.4667,12.5000 L 252.0000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 252.0000,200.0000 L 188.5333,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="505.8667" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="442.4000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="378.9333" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="315.4667" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="252.0000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="188.5333" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 491.0567,33.6000 L 491.0567,14.0000 L 521.1767,14.0000 L 521.1767,33.6000 L 491.0567,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="491.5567" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="503.0767" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 427.5900,33.6000 L 427.5900,14.0000 L 457.7100,14.0000 L 457.7100,33.6000 L 427.5900,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="428.0900" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="439.6100" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 364.1233,33.6000 L 364.1233,14.0000 L 394.2433,14.0000 L 394.2433,33.6000 L 364.1233,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="364.6233" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="376.1433" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 300.6567,33.6000 L 300.6567,14.0000 L 330.7767,14.0000 L 330.7767,33.6000 L 300.6567,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="301.1567" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="312.6767" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 237.1900,33.6000 L 237.1900,14.0000 L 267.3100,14.0000 L 267.3100,33.6000 L 237.1900,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="237.6900" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="249.2100" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 173.7233,33.6000 L 173.7233,14.0000 L 203.8433,14.0000 L 203.8433,33.6000 L 173.7233,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="174.2233" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="185.7433" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 529.5200,24.5000 L 529.5200,14.0000 L 536.6000,14.0000 L 536.6000,24.5000 L 529.5200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="530.0200" text-length="5.5800px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 518.3600,62.0000 L 518.3600,51.5000 L 536.6000,51.5000 L 536.6000,62.0000 L 518.3600,62.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="518.8600" text-length="16.7400px" y="59.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 518.3600,99.5000 L 518.3600,89.0000 L 536.6000,89.0000 L 536.6000,99.5000 L 518.3600,99.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="518.8600" text-length="16.7400px" y="97.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 518.3600,137.0000 L 518.3600,126.5000 L 536.6000,126.5000 L 536.6000,137.0000 L 518.3600,137.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="518.8600" text-length="16.7400px" y="134.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 518.3600,174.5000 L 518.3600,164.0000 L 536.6000,164.0000 L 536.6000,174.5000 L 518.3600,174.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="518.8600" text-length="16.7400px" y="172.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 518.3600,199.0000 L 518.3600,188.5000 L 536.6000,188.5000 L 536.6000,199.0000 L 518.3600,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="518.8600" text-length="16.7400px" y="196.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_125.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_125.svg new file mode 100644 index 0000000..5d780ac --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_125.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,200.0000 L 560.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,196.0000 L 560.0000,200.0000 L 552.0000,204.0000 L 552.0000,196.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 216.5333,25.0000 L 216.5333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 216.5333,197.0000 L 216.5333,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 276.2667,25.0000 L 276.2667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 276.2667,197.0000 L 276.2667,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 336.0000,25.0000 L 336.0000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 336.0000,197.0000 L 336.0000,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 395.7333,25.0000 L 395.7333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 395.7333,197.0000 L 395.7333,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 455.4667,25.0000 L 455.4667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 455.4667,197.0000 L 455.4667,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 515.2000,197.0000 L 515.2000,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 156.8000,250.0000 L 156.8000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 153.8000,6.0000 L 156.8000,0.0000 L 159.8000,6.0000 L 153.8000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,191.2500 L 157.8000,191.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,182.5000 L 157.8000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,173.7500 L 157.8000,173.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,165.0000 L 159.8000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,156.2500 L 157.8000,156.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,147.5000 L 157.8000,147.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,138.7500 L 157.8000,138.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,130.0000 L 159.8000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,121.2500 L 157.8000,121.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,112.5000 L 157.8000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 156.8000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,103.7500 L 157.8000,103.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 156.8000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 156.8000,95.0000 L 159.8000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,86.2500 L 157.8000,86.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 156.8000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,77.5000 L 157.8000,77.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 156.8000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,68.7500 L 157.8000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 156.8000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 156.8000,60.0000 L 159.8000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,51.2500 L 157.8000,51.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 156.8000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,42.5000 L 157.8000,42.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 156.8000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,33.7500 L 157.8000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 156.8000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 156.8000,25.0000 L 159.8000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 186.6667,112.5000 L 186.6667,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 186.6667,112.5000 L 246.4000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 246.4000,112.5000 L 306.1333,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 306.1333,200.0000 L 365.8667,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 365.8667,200.0000 L 425.6000,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 425.6000,25.0000 L 485.3333,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="186.6667" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="246.4000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="306.1333" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="365.8667" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="425.6000" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="485.3333" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 164.7017,230.1000 L 164.7017,201.5000 L 209.1317,201.5000 L 209.1317,230.1000 L 164.7017,230.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="165.2017" text-length="42.9300px" y="213.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="182.4817" text-length="8.3700px" y="228.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 224.4350,230.1000 L 224.4350,201.5000 L 268.8650,201.5000 L 268.8650,230.1000 L 224.4350,230.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="224.9350" text-length="42.9300px" y="213.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="242.2150" text-length="8.3700px" y="228.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 284.1683,230.1000 L 284.1683,201.5000 L 328.5983,201.5000 L 328.5983,230.1000 L 284.1683,230.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="284.6683" text-length="42.9300px" y="213.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="301.9483" text-length="8.3700px" y="228.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 343.9017,230.1000 L 343.9017,201.5000 L 388.3317,201.5000 L 388.3317,230.1000 L 343.9017,230.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="344.4017" text-length="42.9300px" y="213.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="361.6817" text-length="8.3700px" y="228.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 403.6350,230.1000 L 403.6350,201.5000 L 448.0650,201.5000 L 448.0650,230.1000 L 403.6350,230.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="404.1350" text-length="42.9300px" y="213.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="421.4150" text-length="8.3700px" y="228.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 463.3683,230.1000 L 463.3683,201.5000 L 507.7983,201.5000 L 507.7983,230.1000 L 463.3683,230.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="463.8683" text-length="42.9300px" y="213.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="481.1483" text-length="8.3700px" y="228.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 145.9300,199.0000 L 145.9300,184.0000 L 155.8000,184.0000 L 155.8000,199.0000 L 145.9300,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="146.4300" text-length="8.3700px" y="195.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 129.1900,164.0000 L 129.1900,149.0000 L 155.8000,149.0000 L 155.8000,164.0000 L 129.1900,164.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="129.6900" text-length="25.1100px" y="160.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 129.1900,129.0000 L 129.1900,114.0000 L 155.8000,114.0000 L 155.8000,129.0000 L 129.1900,129.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="129.6900" text-length="25.1100px" y="125.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 129.1900,94.0000 L 129.1900,79.0000 L 155.8000,79.0000 L 155.8000,94.0000 L 129.1900,94.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="129.6900" text-length="25.1100px" y="90.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 129.1900,59.0000 L 129.1900,44.0000 L 155.8000,44.0000 L 155.8000,59.0000 L 129.1900,59.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="129.6900" text-length="25.1100px" y="55.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 129.1900,41.5000 L 129.1900,26.5000 L 155.8000,26.5000 L 155.8000,41.5000 L 129.1900,41.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="129.6900" text-length="25.1100px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_126.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_126.svg new file mode 100644 index 0000000..bd67f72 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_126.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,25.0000 L 560.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,21.0000 L 560.0000,25.0000 L 552.0000,29.0000 L 552.0000,21.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 216.5333,25.0000 L 216.5333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 216.5333,22.0000 L 216.5333,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 276.2667,25.0000 L 276.2667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 276.2667,22.0000 L 276.2667,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 336.0000,25.0000 L 336.0000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 336.0000,22.0000 L 336.0000,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 395.7333,25.0000 L 395.7333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 395.7333,22.0000 L 395.7333,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 455.4667,25.0000 L 455.4667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 455.4667,22.0000 L 455.4667,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 515.2000,22.0000 L 515.2000,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 156.8000,0.0000 L 156.8000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 160.3000,243.0000 L 156.8000,250.0000 L 153.3000,243.0000 L 160.3000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 157.8000,33.7500 L 156.8000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 157.8000,42.5000 L 156.8000,42.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 157.8000,51.2500 L 156.8000,51.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 159.8000,60.0000 L 156.8000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 157.8000,68.7500 L 156.8000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 157.8000,77.5000 L 156.8000,77.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 157.8000,86.2500 L 156.8000,86.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 159.8000,95.0000 L 156.8000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 157.8000,103.7500 L 156.8000,103.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 157.8000,112.5000 L 156.8000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 156.8000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 157.8000,121.2500 L 156.8000,121.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 156.8000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 159.8000,130.0000 L 156.8000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 157.8000,138.7500 L 156.8000,138.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 156.8000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 157.8000,147.5000 L 156.8000,147.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 156.8000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 157.8000,156.2500 L 156.8000,156.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 156.8000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 159.8000,165.0000 L 156.8000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 157.8000,173.7500 L 156.8000,173.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 156.8000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 157.8000,182.5000 L 156.8000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 156.8000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 157.8000,191.2500 L 156.8000,191.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 159.8000,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 186.6667,112.5000 L 186.6667,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 186.6667,112.5000 L 246.4000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 246.4000,112.5000 L 306.1333,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 306.1333,25.0000 L 365.8667,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 365.8667,25.0000 L 425.6000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 425.6000,200.0000 L 485.3333,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="186.6667" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="246.4000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="306.1333" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="365.8667" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="425.6000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="485.3333" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 164.7017,55.1000 L 164.7017,26.5000 L 209.1317,26.5000 L 209.1317,55.1000 L 164.7017,55.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="165.2017" text-length="42.9300px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="182.4817" text-length="8.3700px" y="53.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 224.4350,55.1000 L 224.4350,26.5000 L 268.8650,26.5000 L 268.8650,55.1000 L 224.4350,55.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="224.9350" text-length="42.9300px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="242.2150" text-length="8.3700px" y="53.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 284.1683,55.1000 L 284.1683,26.5000 L 328.5983,26.5000 L 328.5983,55.1000 L 284.1683,55.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="284.6683" text-length="42.9300px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="301.9483" text-length="8.3700px" y="53.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 343.9017,55.1000 L 343.9017,26.5000 L 388.3317,26.5000 L 388.3317,55.1000 L 343.9017,55.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="344.4017" text-length="42.9300px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="361.6817" text-length="8.3700px" y="53.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 403.6350,55.1000 L 403.6350,26.5000 L 448.0650,26.5000 L 448.0650,55.1000 L 403.6350,55.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="404.1350" text-length="42.9300px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="421.4150" text-length="8.3700px" y="53.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 463.3683,55.1000 L 463.3683,26.5000 L 507.7983,26.5000 L 507.7983,55.1000 L 463.3683,55.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="463.8683" text-length="42.9300px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="481.1483" text-length="8.3700px" y="53.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 145.9300,41.5000 L 145.9300,26.5000 L 155.8000,26.5000 L 155.8000,41.5000 L 145.9300,41.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="146.4300" text-length="8.3700px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 129.1900,76.5000 L 129.1900,61.5000 L 155.8000,61.5000 L 155.8000,76.5000 L 129.1900,76.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="129.6900" text-length="25.1100px" y="73.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 129.1900,111.5000 L 129.1900,96.5000 L 155.8000,96.5000 L 155.8000,111.5000 L 129.1900,111.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="129.6900" text-length="25.1100px" y="108.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 129.1900,146.5000 L 129.1900,131.5000 L 155.8000,131.5000 L 155.8000,146.5000 L 129.1900,146.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="129.6900" text-length="25.1100px" y="143.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 129.1900,181.5000 L 129.1900,166.5000 L 155.8000,166.5000 L 155.8000,181.5000 L 129.1900,181.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="129.6900" text-length="25.1100px" y="178.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 129.1900,199.0000 L 129.1900,184.0000 L 155.8000,184.0000 L 155.8000,199.0000 L 129.1900,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="129.6900" text-length="25.1100px" y="195.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_127.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_127.svg new file mode 100644 index 0000000..53e1f4b --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_127.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,200.0000 L 112.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,204.0000 L 112.0000,200.0000 L 120.0000,196.0000 L 120.0000,204.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 455.4667,25.0000 L 455.4667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 455.4667,203.0000 L 455.4667,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 395.7333,25.0000 L 395.7333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 395.7333,203.0000 L 395.7333,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 336.0000,25.0000 L 336.0000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 336.0000,203.0000 L 336.0000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 276.2667,25.0000 L 276.2667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 276.2667,203.0000 L 276.2667,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 216.5333,25.0000 L 216.5333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 216.5333,203.0000 L 216.5333,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 156.8000,25.0000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 156.8000,203.0000 L 156.8000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 515.2000,250.0000 L 515.2000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 512.2000,6.0000 L 515.2000,0.0000 L 518.2000,6.0000 L 512.2000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 515.2000,191.2500 L 516.2000,191.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 515.2000,182.5000 L 516.2000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 515.2000,173.7500 L 516.2000,173.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 515.2000,165.0000 L 518.2000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 515.2000,156.2500 L 516.2000,156.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 515.2000,147.5000 L 516.2000,147.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 515.2000,138.7500 L 516.2000,138.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 515.2000,130.0000 L 518.2000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 515.2000,121.2500 L 516.2000,121.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 515.2000,112.5000 L 516.2000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 156.8000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 515.2000,103.7500 L 516.2000,103.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 156.8000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 515.2000,95.0000 L 518.2000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 515.2000,86.2500 L 516.2000,86.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 156.8000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 515.2000,77.5000 L 516.2000,77.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 156.8000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 515.2000,68.7500 L 516.2000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 156.8000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 515.2000,60.0000 L 518.2000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 515.2000,51.2500 L 516.2000,51.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 156.8000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 515.2000,42.5000 L 516.2000,42.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 156.8000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 515.2000,33.7500 L 516.2000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 156.8000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 515.2000,25.0000 L 518.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 485.3333,112.5000 L 485.3333,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 485.3333,112.5000 L 425.6000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 425.6000,112.5000 L 365.8667,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 365.8667,200.0000 L 306.1333,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 306.1333,200.0000 L 246.4000,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 246.4000,25.0000 L 186.6667,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="485.3333" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="425.6000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="365.8667" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="306.1333" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="246.4000" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="186.6667" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 463.3683,230.1000 L 463.3683,201.5000 L 507.7983,201.5000 L 507.7983,230.1000 L 463.3683,230.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="463.8683" text-length="42.9300px" y="213.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="481.1483" text-length="8.3700px" y="228.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 403.6350,230.1000 L 403.6350,201.5000 L 448.0650,201.5000 L 448.0650,230.1000 L 403.6350,230.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="404.1350" text-length="42.9300px" y="213.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="421.4150" text-length="8.3700px" y="228.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 343.9017,230.1000 L 343.9017,201.5000 L 388.3317,201.5000 L 388.3317,230.1000 L 343.9017,230.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="344.4017" text-length="42.9300px" y="213.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="361.6817" text-length="8.3700px" y="228.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 284.1683,230.1000 L 284.1683,201.5000 L 328.5983,201.5000 L 328.5983,230.1000 L 284.1683,230.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="284.6683" text-length="42.9300px" y="213.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="301.9483" text-length="8.3700px" y="228.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 224.4350,230.1000 L 224.4350,201.5000 L 268.8650,201.5000 L 268.8650,230.1000 L 224.4350,230.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="224.9350" text-length="42.9300px" y="213.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="242.2150" text-length="8.3700px" y="228.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 164.7017,230.1000 L 164.7017,201.5000 L 209.1317,201.5000 L 209.1317,230.1000 L 164.7017,230.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="165.2017" text-length="42.9300px" y="213.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="182.4817" text-length="8.3700px" y="228.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 504.3300,199.0000 L 504.3300,184.0000 L 514.2000,184.0000 L 514.2000,199.0000 L 504.3300,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="504.8300" text-length="8.3700px" y="195.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 487.5900,164.0000 L 487.5900,149.0000 L 514.2000,149.0000 L 514.2000,164.0000 L 487.5900,164.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="488.0900" text-length="25.1100px" y="160.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 487.5900,129.0000 L 487.5900,114.0000 L 514.2000,114.0000 L 514.2000,129.0000 L 487.5900,129.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="488.0900" text-length="25.1100px" y="125.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 487.5900,94.0000 L 487.5900,79.0000 L 514.2000,79.0000 L 514.2000,94.0000 L 487.5900,94.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="488.0900" text-length="25.1100px" y="90.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 487.5900,59.0000 L 487.5900,44.0000 L 514.2000,44.0000 L 514.2000,59.0000 L 487.5900,59.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="488.0900" text-length="25.1100px" y="55.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 487.5900,41.5000 L 487.5900,26.5000 L 514.2000,26.5000 L 514.2000,41.5000 L 487.5900,41.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="488.0900" text-length="25.1100px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_128.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_128.svg new file mode 100644 index 0000000..2b92937 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_128.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,25.0000 L 112.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,29.0000 L 112.0000,25.0000 L 120.0000,21.0000 L 120.0000,29.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 455.4667,25.0000 L 455.4667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 455.4667,28.0000 L 455.4667,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 395.7333,25.0000 L 395.7333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 395.7333,28.0000 L 395.7333,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 336.0000,25.0000 L 336.0000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 336.0000,28.0000 L 336.0000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 276.2667,25.0000 L 276.2667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 276.2667,28.0000 L 276.2667,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 216.5333,25.0000 L 216.5333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 216.5333,28.0000 L 216.5333,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 156.8000,25.0000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 156.8000,28.0000 L 156.8000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 515.2000,0.0000 L 515.2000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 518.7000,243.0000 L 515.2000,250.0000 L 511.7000,243.0000 L 518.7000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 516.2000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 516.2000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 516.2000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 518.2000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 516.2000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 516.2000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 516.2000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 518.2000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 516.2000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 516.2000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 156.8000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 516.2000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 156.8000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 518.2000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 516.2000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 156.8000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 516.2000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 156.8000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 516.2000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 156.8000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 518.2000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 516.2000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 156.8000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 516.2000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 156.8000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 516.2000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 518.2000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 485.3333,112.5000 L 485.3333,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 485.3333,112.5000 L 425.6000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 425.6000,112.5000 L 365.8667,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 365.8667,25.0000 L 306.1333,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 306.1333,25.0000 L 246.4000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 246.4000,200.0000 L 186.6667,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="485.3333" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="425.6000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="365.8667" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="306.1333" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="246.4000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="186.6667" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 463.3683,55.1000 L 463.3683,26.5000 L 507.7983,26.5000 L 507.7983,55.1000 L 463.3683,55.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="463.8683" text-length="42.9300px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="481.1483" text-length="8.3700px" y="53.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 403.6350,55.1000 L 403.6350,26.5000 L 448.0650,26.5000 L 448.0650,55.1000 L 403.6350,55.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="404.1350" text-length="42.9300px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="421.4150" text-length="8.3700px" y="53.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 343.9017,55.1000 L 343.9017,26.5000 L 388.3317,26.5000 L 388.3317,55.1000 L 343.9017,55.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="344.4017" text-length="42.9300px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="361.6817" text-length="8.3700px" y="53.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 284.1683,55.1000 L 284.1683,26.5000 L 328.5983,26.5000 L 328.5983,55.1000 L 284.1683,55.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="284.6683" text-length="42.9300px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="301.9483" text-length="8.3700px" y="53.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 224.4350,55.1000 L 224.4350,26.5000 L 268.8650,26.5000 L 268.8650,55.1000 L 224.4350,55.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="224.9350" text-length="42.9300px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="242.2150" text-length="8.3700px" y="53.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 164.7017,55.1000 L 164.7017,26.5000 L 209.1317,26.5000 L 209.1317,55.1000 L 164.7017,55.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="165.2017" text-length="42.9300px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="182.4817" text-length="8.3700px" y="53.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 504.3300,41.5000 L 504.3300,26.5000 L 514.2000,26.5000 L 514.2000,41.5000 L 504.3300,41.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="504.8300" text-length="8.3700px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 487.5900,76.5000 L 487.5900,61.5000 L 514.2000,61.5000 L 514.2000,76.5000 L 487.5900,76.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="488.0900" text-length="25.1100px" y="73.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 487.5900,111.5000 L 487.5900,96.5000 L 514.2000,96.5000 L 514.2000,111.5000 L 487.5900,111.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="488.0900" text-length="25.1100px" y="108.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 487.5900,146.5000 L 487.5900,131.5000 L 514.2000,131.5000 L 514.2000,146.5000 L 487.5900,146.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="488.0900" text-length="25.1100px" y="143.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 487.5900,181.5000 L 487.5900,166.5000 L 514.2000,166.5000 L 514.2000,181.5000 L 487.5900,181.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="488.0900" text-length="25.1100px" y="178.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 487.5900,199.0000 L 487.5900,184.0000 L 514.2000,184.0000 L 514.2000,199.0000 L 487.5900,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="488.0900" text-length="25.1100px" y="195.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_129.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_129.svg new file mode 100644 index 0000000..582965d --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_129.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,225.0000 L 560.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,221.0000 L 560.0000,225.0000 L 552.0000,229.0000 L 552.0000,221.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 257.6000,12.5000 L 257.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 257.6000,222.0000 L 257.6000,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 313.6000,12.5000 L 313.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 313.6000,222.0000 L 313.6000,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 369.6000,12.5000 L 369.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 369.6000,222.0000 L 369.6000,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 425.6000,12.5000 L 425.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 425.6000,222.0000 L 425.6000,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 481.6000,12.5000 L 481.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 481.6000,222.0000 L 481.6000,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 537.6000,222.0000 L 537.6000,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 201.6000,250.0000 L 201.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 197.6000,8.0000 L 201.6000,0.0000 L 205.6000,8.0000 L 197.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,225.0000 L 204.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,189.5121 L 537.6000,189.5121" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,189.5121 L 204.6000,189.5121" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,154.0242 L 537.6000,154.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,154.0242 L 204.6000,154.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,118.5363 L 537.6000,118.5363" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,118.5363 L 204.6000,118.5363" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,83.0484 L 537.6000,83.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,83.0484 L 204.6000,83.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,47.5605 L 204.6000,47.5605" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 229.6000,136.2803 L 229.6000,136.2803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 229.6000,136.2803 L 285.6000,136.2803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 285.6000,136.2803 L 341.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 341.6000,225.0000 L 397.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 397.6000,225.0000 L 453.6000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 453.6000,47.5605 L 509.6000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="229.6000" cy="136.2803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="285.6000" cy="136.2803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="341.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="397.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="453.6000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="509.6000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 210.0200,237.0000 L 210.0200,226.5000 L 249.6800,226.5000 L 249.6800,237.0000 L 210.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="210.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_11"><path d=" M 266.0200,237.0000 L 266.0200,226.5000 L 305.6800,226.5000 L 305.6800,237.0000 L 266.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="266.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 322.0200,237.0000 L 322.0200,226.5000 L 361.6800,226.5000 L 361.6800,237.0000 L 322.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="322.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_17"><path d=" M 378.0200,237.0000 L 378.0200,226.5000 L 417.6800,226.5000 L 417.6800,237.0000 L 378.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="378.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_20"><path d=" M 434.0200,237.0000 L 434.0200,226.5000 L 473.6800,226.5000 L 473.6800,237.0000 L 434.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="434.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_23"><path d=" M 490.0200,237.0000 L 490.0200,226.5000 L 529.6800,226.5000 L 529.6800,237.0000 L 490.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="490.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 201.6000 225.0000 )"><path d=" M 195.5200,235.0000 L 195.5200,224.5000 L 202.6000,224.5000 L 202.6000,235.0000 L 195.5200,235.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="196.0200" text-length="5.5800px" y="232.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 201.6000 189.5121 )"><path d=" M 184.3600,199.5121 L 184.3600,189.0121 L 202.6000,189.0121 L 202.6000,199.5121 L 184.3600,199.5121 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="184.8600" text-length="16.7400px" y="197.1621" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 201.6000 154.0242 )"><path d=" M 184.3600,164.0242 L 184.3600,153.5242 L 202.6000,153.5242 L 202.6000,164.0242 L 184.3600,164.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="184.8600" text-length="16.7400px" y="161.6742" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 201.6000 118.5363 )"><path d=" M 184.3600,128.5363 L 184.3600,118.0363 L 202.6000,118.0363 L 202.6000,128.5363 L 184.3600,128.5363 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="184.8600" text-length="16.7400px" y="126.1863" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 201.6000 83.0484 )"><path d=" M 184.3600,93.0484 L 184.3600,82.5484 L 202.6000,82.5484 L 202.6000,93.0484 L 184.3600,93.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="184.8600" text-length="16.7400px" y="90.6984" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43" transform="rotate( 62.21 201.6000 47.5605 )"><path d=" M 184.3600,57.5605 L 184.3600,47.0605 L 202.6000,47.0605 L 202.6000,57.5605 L 184.3600,57.5605 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="184.8600" text-length="16.7400px" y="55.2105" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_13.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_13.svg new file mode 100644 index 0000000..36bd44f --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_13.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,200.0000 L 560.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,196.0000 L 560.0000,200.0000 L 552.0000,204.0000 L 552.0000,196.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 228.4800,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 228.4800,197.0000 L 228.4800,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 300.1600,25.0000 L 300.1600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 300.1600,197.0000 L 300.1600,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 371.8400,25.0000 L 371.8400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 371.8400,197.0000 L 371.8400,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 443.5200,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 443.5200,197.0000 L 443.5200,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 515.2000,197.0000 L 515.2000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 156.8000,250.0000 L 156.8000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 153.8000,6.0000 L 156.8000,0.0000 L 159.8000,6.0000 L 153.8000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 156.8000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 156.8000,191.2500 L 157.8000,191.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 156.8000,182.5000 L 157.8000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,173.7500 L 157.8000,173.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,165.0000 L 159.8000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,156.2500 L 157.8000,156.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 156.8000,147.5000 L 157.8000,147.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,138.7500 L 157.8000,138.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,130.0000 L 159.8000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,121.2500 L 157.8000,121.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 156.8000,112.5000 L 157.8000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 156.8000,103.7500 L 157.8000,103.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 156.8000,95.0000 L 159.8000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 156.8000,86.2500 L 157.8000,86.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 156.8000,77.5000 L 157.8000,77.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 156.8000,68.7500 L 157.8000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 156.8000,60.0000 L 159.8000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 156.8000,51.2500 L 157.8000,51.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 156.8000,42.5000 L 157.8000,42.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 156.8000,33.7500 L 157.8000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 156.8000,25.0000 L 159.8000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,112.5000 L 156.8000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 156.8000,112.5000 L 228.4800,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 228.4800,112.5000 L 300.1600,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 300.1600,200.0000 L 371.8400,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 371.8400,200.0000 L 443.5200,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 443.5200,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="156.8000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="228.4800" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="300.1600" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="371.8400" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="443.5200" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="515.2000" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 206.5150,230.1000 L 206.5150,201.5000 L 250.9450,201.5000 L 250.9450,230.1000 L 206.5150,230.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_10_text" x="207.0150" text-length="42.9300px" y="213.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_10_text" x="224.2950" text-length="8.3700px" y="228.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_13"><path d=" M 278.1950,230.1000 L 278.1950,201.5000 L 322.6250,201.5000 L 322.6250,230.1000 L 278.1950,230.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_13_text" x="278.6950" text-length="42.9300px" y="213.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_13_text" x="295.9750" text-length="8.3700px" y="228.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_16"><path d=" M 349.8750,230.1000 L 349.8750,201.5000 L 394.3050,201.5000 L 394.3050,230.1000 L 349.8750,230.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_16_text" x="350.3750" text-length="42.9300px" y="213.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_16_text" x="367.6550" text-length="8.3700px" y="228.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_19"><path d=" M 421.5550,230.1000 L 421.5550,201.5000 L 465.9850,201.5000 L 465.9850,230.1000 L 421.5550,230.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_19_text" x="422.0550" text-length="42.9300px" y="213.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_19_text" x="439.3350" text-length="8.3700px" y="228.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_22"><path d=" M 493.2350,230.1000 L 493.2350,201.5000 L 537.6650,201.5000 L 537.6650,230.1000 L 493.2350,230.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_22_text" x="493.7350" text-length="42.9300px" y="213.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="511.0150" text-length="8.3700px" y="228.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25"><path d=" M 145.9300,199.0000 L 145.9300,184.0000 L 155.8000,184.0000 L 155.8000,199.0000 L 145.9300,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_25_text" x="146.4300" text-length="8.3700px" y="195.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_34"><path d=" M 129.1900,164.0000 L 129.1900,149.0000 L 155.8000,149.0000 L 155.8000,164.0000 L 129.1900,164.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="129.6900" text-length="25.1100px" y="160.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 129.1900,129.0000 L 129.1900,114.0000 L 155.8000,114.0000 L 155.8000,129.0000 L 129.1900,129.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="129.6900" text-length="25.1100px" y="125.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 129.1900,94.0000 L 129.1900,79.0000 L 155.8000,79.0000 L 155.8000,94.0000 L 129.1900,94.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="129.6900" text-length="25.1100px" y="90.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 129.1900,59.0000 L 129.1900,44.0000 L 155.8000,44.0000 L 155.8000,59.0000 L 129.1900,59.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="129.6900" text-length="25.1100px" y="55.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 129.1900,41.5000 L 129.1900,26.5000 L 155.8000,26.5000 L 155.8000,41.5000 L 129.1900,41.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="129.6900" text-length="25.1100px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_130.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_130.svg new file mode 100644 index 0000000..3feb870 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_130.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,12.5000 L 560.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,8.5000 L 560.0000,12.5000 L 552.0000,16.5000 L 552.0000,8.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 257.6000,12.5000 L 257.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 257.6000,9.5000 L 257.6000,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 313.6000,12.5000 L 313.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 313.6000,9.5000 L 313.6000,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 369.6000,12.5000 L 369.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 369.6000,9.5000 L 369.6000,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 425.6000,12.5000 L 425.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 425.6000,9.5000 L 425.6000,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 481.6000,12.5000 L 481.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 481.6000,9.5000 L 481.6000,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 537.6000,9.5000 L 537.6000,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 201.6000,0.0000 L 201.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 205.6000,242.0000 L 201.6000,250.0000 L 197.6000,242.0000 L 205.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 204.6000,47.5605 L 201.6000,47.5605" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,83.0484 L 537.6000,83.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 204.6000,83.0484 L 201.6000,83.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,118.5363 L 537.6000,118.5363" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 204.6000,118.5363 L 201.6000,118.5363" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,154.0242 L 537.6000,154.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 204.6000,154.0242 L 201.6000,154.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,189.5121 L 537.6000,189.5121" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 204.6000,189.5121 L 201.6000,189.5121" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 204.6000,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 229.6000,136.2803 L 229.6000,136.2803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 229.6000,136.2803 L 285.6000,136.2803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 285.6000,136.2803 L 341.6000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 341.6000,47.5605 L 397.6000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 397.6000,47.5605 L 453.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 453.6000,225.0000 L 509.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="229.6000" cy="136.2803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="285.6000" cy="136.2803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="341.6000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="397.6000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="453.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="509.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 210.0200,24.5000 L 210.0200,14.0000 L 249.6800,14.0000 L 249.6800,24.5000 L 210.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="210.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_11"><path d=" M 266.0200,24.5000 L 266.0200,14.0000 L 305.6800,14.0000 L 305.6800,24.5000 L 266.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="266.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 322.0200,24.5000 L 322.0200,14.0000 L 361.6800,14.0000 L 361.6800,24.5000 L 322.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="322.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_17"><path d=" M 378.0200,24.5000 L 378.0200,14.0000 L 417.6800,14.0000 L 417.6800,24.5000 L 378.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="378.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_20"><path d=" M 434.0200,24.5000 L 434.0200,14.0000 L 473.6800,14.0000 L 473.6800,24.5000 L 434.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="434.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_23"><path d=" M 490.0200,24.5000 L 490.0200,14.0000 L 529.6800,14.0000 L 529.6800,24.5000 L 490.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="490.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 201.6000 47.5605 )"><path d=" M 195.5200,57.5605 L 195.5200,47.0605 L 202.6000,47.0605 L 202.6000,57.5605 L 195.5200,57.5605 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="196.0200" text-length="5.5800px" y="55.2105" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 201.6000 83.0484 )"><path d=" M 184.3600,93.0484 L 184.3600,82.5484 L 202.6000,82.5484 L 202.6000,93.0484 L 184.3600,93.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="184.8600" text-length="16.7400px" y="90.6984" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 201.6000 118.5363 )"><path d=" M 184.3600,128.5363 L 184.3600,118.0363 L 202.6000,118.0363 L 202.6000,128.5363 L 184.3600,128.5363 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="184.8600" text-length="16.7400px" y="126.1863" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 201.6000 154.0242 )"><path d=" M 184.3600,164.0242 L 184.3600,153.5242 L 202.6000,153.5242 L 202.6000,164.0242 L 184.3600,164.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="184.8600" text-length="16.7400px" y="161.6742" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 201.6000 189.5121 )"><path d=" M 184.3600,199.5121 L 184.3600,189.0121 L 202.6000,189.0121 L 202.6000,199.5121 L 184.3600,199.5121 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="184.8600" text-length="16.7400px" y="197.1621" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43" transform="rotate( 62.21 201.6000 225.0000 )"><path d=" M 184.3600,235.0000 L 184.3600,224.5000 L 202.6000,224.5000 L 202.6000,235.0000 L 184.3600,235.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="184.8600" text-length="16.7400px" y="232.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_131.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_131.svg new file mode 100644 index 0000000..d6fad48 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_131.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,225.0000 L 112.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,229.0000 L 112.0000,225.0000 L 120.0000,221.0000 L 120.0000,229.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 481.6000,12.5000 L 481.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 481.6000,228.0000 L 481.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 425.6000,12.5000 L 425.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 425.6000,228.0000 L 425.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 369.6000,12.5000 L 369.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 369.6000,228.0000 L 369.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 313.6000,12.5000 L 313.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 313.6000,228.0000 L 313.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 257.6000,12.5000 L 257.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 257.6000,228.0000 L 257.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 201.6000,12.5000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 201.6000,228.0000 L 201.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 537.6000,250.0000 L 537.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 533.6000,8.0000 L 537.6000,0.0000 L 541.6000,8.0000 L 533.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 537.6000,225.0000 L 540.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,189.5121 L 537.6000,189.5121" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 537.6000,189.5121 L 540.6000,189.5121" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,154.0242 L 537.6000,154.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 537.6000,154.0242 L 540.6000,154.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,118.5363 L 537.6000,118.5363" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 537.6000,118.5363 L 540.6000,118.5363" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,83.0484 L 537.6000,83.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 537.6000,83.0484 L 540.6000,83.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 537.6000,47.5605 L 540.6000,47.5605" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 509.6000,136.2803 L 509.6000,136.2803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 509.6000,136.2803 L 453.6000,136.2803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 453.6000,136.2803 L 397.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 397.6000,225.0000 L 341.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 341.6000,225.0000 L 285.6000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 285.6000,47.5605 L 229.6000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="509.6000" cy="136.2803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="453.6000" cy="136.2803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="397.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="341.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="285.6000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="229.6000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 490.0200,237.0000 L 490.0200,226.5000 L 529.6800,226.5000 L 529.6800,237.0000 L 490.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="490.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_11"><path d=" M 434.0200,237.0000 L 434.0200,226.5000 L 473.6800,226.5000 L 473.6800,237.0000 L 434.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="434.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 378.0200,237.0000 L 378.0200,226.5000 L 417.6800,226.5000 L 417.6800,237.0000 L 378.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="378.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_17"><path d=" M 322.0200,237.0000 L 322.0200,226.5000 L 361.6800,226.5000 L 361.6800,237.0000 L 322.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="322.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_20"><path d=" M 266.0200,237.0000 L 266.0200,226.5000 L 305.6800,226.5000 L 305.6800,237.0000 L 266.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="266.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_23"><path d=" M 210.0200,237.0000 L 210.0200,226.5000 L 249.6800,226.5000 L 249.6800,237.0000 L 210.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="210.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 537.6000 225.0000 )"><path d=" M 531.5200,235.0000 L 531.5200,224.5000 L 538.6000,224.5000 L 538.6000,235.0000 L 531.5200,235.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="532.0200" text-length="5.5800px" y="232.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 537.6000 189.5121 )"><path d=" M 520.3600,199.5121 L 520.3600,189.0121 L 538.6000,189.0121 L 538.6000,199.5121 L 520.3600,199.5121 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="520.8600" text-length="16.7400px" y="197.1621" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 537.6000 154.0242 )"><path d=" M 520.3600,164.0242 L 520.3600,153.5242 L 538.6000,153.5242 L 538.6000,164.0242 L 520.3600,164.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="520.8600" text-length="16.7400px" y="161.6742" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 537.6000 118.5363 )"><path d=" M 520.3600,128.5363 L 520.3600,118.0363 L 538.6000,118.0363 L 538.6000,128.5363 L 520.3600,128.5363 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="520.8600" text-length="16.7400px" y="126.1863" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 537.6000 83.0484 )"><path d=" M 520.3600,93.0484 L 520.3600,82.5484 L 538.6000,82.5484 L 538.6000,93.0484 L 520.3600,93.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="520.8600" text-length="16.7400px" y="90.6984" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43" transform="rotate( 62.21 537.6000 47.5605 )"><path d=" M 520.3600,57.5605 L 520.3600,47.0605 L 538.6000,47.0605 L 538.6000,57.5605 L 520.3600,57.5605 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="520.8600" text-length="16.7400px" y="55.2105" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_132.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_132.svg new file mode 100644 index 0000000..1cf9854 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_132.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,12.5000 L 112.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,16.5000 L 112.0000,12.5000 L 120.0000,8.5000 L 120.0000,16.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 481.6000,12.5000 L 481.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 481.6000,15.5000 L 481.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 425.6000,12.5000 L 425.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 425.6000,15.5000 L 425.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 369.6000,12.5000 L 369.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 369.6000,15.5000 L 369.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 313.6000,12.5000 L 313.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 313.6000,15.5000 L 313.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 257.6000,12.5000 L 257.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 257.6000,15.5000 L 257.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 201.6000,12.5000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 201.6000,15.5000 L 201.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 537.6000,0.0000 L 537.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 541.6000,242.0000 L 537.6000,250.0000 L 533.6000,242.0000 L 541.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 540.6000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,83.0484 L 537.6000,83.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 540.6000,83.0484 L 537.6000,83.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,118.5363 L 537.6000,118.5363" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 540.6000,118.5363 L 537.6000,118.5363" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,154.0242 L 537.6000,154.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 540.6000,154.0242 L 537.6000,154.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,189.5121 L 537.6000,189.5121" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 540.6000,189.5121 L 537.6000,189.5121" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 540.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 509.6000,136.2803 L 509.6000,136.2803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 509.6000,136.2803 L 453.6000,136.2803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 453.6000,136.2803 L 397.6000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 397.6000,47.5605 L 341.6000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 341.6000,47.5605 L 285.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 285.6000,225.0000 L 229.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="509.6000" cy="136.2803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="453.6000" cy="136.2803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="397.6000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="341.6000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="285.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="229.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 490.0200,24.5000 L 490.0200,14.0000 L 529.6800,14.0000 L 529.6800,24.5000 L 490.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="490.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_11"><path d=" M 434.0200,24.5000 L 434.0200,14.0000 L 473.6800,14.0000 L 473.6800,24.5000 L 434.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="434.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 378.0200,24.5000 L 378.0200,14.0000 L 417.6800,14.0000 L 417.6800,24.5000 L 378.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="378.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_17"><path d=" M 322.0200,24.5000 L 322.0200,14.0000 L 361.6800,14.0000 L 361.6800,24.5000 L 322.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="322.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_20"><path d=" M 266.0200,24.5000 L 266.0200,14.0000 L 305.6800,14.0000 L 305.6800,24.5000 L 266.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="266.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_23"><path d=" M 210.0200,24.5000 L 210.0200,14.0000 L 249.6800,14.0000 L 249.6800,24.5000 L 210.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="210.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 537.6000 47.5605 )"><path d=" M 531.5200,57.5605 L 531.5200,47.0605 L 538.6000,47.0605 L 538.6000,57.5605 L 531.5200,57.5605 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="532.0200" text-length="5.5800px" y="55.2105" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 537.6000 83.0484 )"><path d=" M 520.3600,93.0484 L 520.3600,82.5484 L 538.6000,82.5484 L 538.6000,93.0484 L 520.3600,93.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="520.8600" text-length="16.7400px" y="90.6984" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 537.6000 118.5363 )"><path d=" M 520.3600,128.5363 L 520.3600,118.0363 L 538.6000,118.0363 L 538.6000,128.5363 L 520.3600,128.5363 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="520.8600" text-length="16.7400px" y="126.1863" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 537.6000 154.0242 )"><path d=" M 520.3600,164.0242 L 520.3600,153.5242 L 538.6000,153.5242 L 538.6000,164.0242 L 520.3600,164.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="520.8600" text-length="16.7400px" y="161.6742" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 537.6000 189.5121 )"><path d=" M 520.3600,199.5121 L 520.3600,189.0121 L 538.6000,189.0121 L 538.6000,199.5121 L 520.3600,199.5121 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="520.8600" text-length="16.7400px" y="197.1621" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43" transform="rotate( 62.21 537.6000 225.0000 )"><path d=" M 520.3600,235.0000 L 520.3600,224.5000 L 538.6000,224.5000 L 538.6000,235.0000 L 520.3600,235.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="520.8600" text-length="16.7400px" y="232.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_133.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_133.svg new file mode 100644 index 0000000..9c3df17 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_133.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,225.0000 L 560.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,221.0000 L 560.0000,225.0000 L 552.0000,229.0000 L 552.0000,221.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 253.8667,25.0000 L 253.8667,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 253.8667,222.0000 L 253.8667,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 306.1333,25.0000 L 306.1333,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 306.1333,222.0000 L 306.1333,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 358.4000,25.0000 L 358.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 358.4000,222.0000 L 358.4000,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 410.6667,25.0000 L 410.6667,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 410.6667,222.0000 L 410.6667,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 462.9333,25.0000 L 462.9333,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 462.9333,222.0000 L 462.9333,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 515.2000,222.0000 L 515.2000,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 201.6000,250.0000 L 201.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 197.6000,8.0000 L 201.6000,0.0000 L 205.6000,8.0000 L 197.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,225.0000 L 204.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,199.0242 L 515.2000,199.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,199.0242 L 204.6000,199.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,173.0484 L 515.2000,173.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,173.0484 L 204.6000,173.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,147.0726 L 515.2000,147.0726" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,147.0726 L 204.6000,147.0726" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,121.0968 L 515.2000,121.0968" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,121.0968 L 204.6000,121.0968" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,95.1210 L 204.6000,95.1210" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 227.7333,160.0605 L 227.7333,160.0605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 227.7333,160.0605 L 280.0000,160.0605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 280.0000,160.0605 L 332.2667,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 332.2667,225.0000 L 384.5333,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 384.5333,225.0000 L 436.8000,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 436.8000,95.1210 L 489.0667,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="227.7333" cy="160.0605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="280.0000" cy="160.0605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="332.2667" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="384.5333" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="436.8000" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="489.0667" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 203.9133,239.0000 L 203.9133,226.5000 L 252.0533,226.5000 L 252.0533,239.0000 L 203.9133,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="204.4133" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_11"><path d=" M 256.1800,239.0000 L 256.1800,226.5000 L 304.3200,226.5000 L 304.3200,239.0000 L 256.1800,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="256.6800" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 308.4467,239.0000 L 308.4467,226.5000 L 356.5867,226.5000 L 356.5867,239.0000 L 308.4467,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="308.9467" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_17"><path d=" M 360.7133,239.0000 L 360.7133,226.5000 L 408.8533,226.5000 L 408.8533,239.0000 L 360.7133,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="361.2133" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_20"><path d=" M 412.9800,239.0000 L 412.9800,226.5000 L 461.1200,226.5000 L 461.1200,239.0000 L 412.9800,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="413.4800" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_23"><path d=" M 465.2467,239.0000 L 465.2467,226.5000 L 513.3867,226.5000 L 513.3867,239.0000 L 465.2467,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="465.7467" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 201.6000 225.0000 )"><path d=" M 194.2800,237.0000 L 194.2800,224.5000 L 202.6000,224.5000 L 202.6000,237.0000 L 194.2800,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="194.7800" text-length="6.8200px" y="234.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 201.6000 199.0242 )"><path d=" M 180.6400,211.0242 L 180.6400,198.5242 L 202.6000,198.5242 L 202.6000,211.0242 L 180.6400,211.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="181.1400" text-length="20.4600px" y="208.3742" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 201.6000 173.0484 )"><path d=" M 180.6400,185.0484 L 180.6400,172.5484 L 202.6000,172.5484 L 202.6000,185.0484 L 180.6400,185.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="181.1400" text-length="20.4600px" y="182.3984" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 201.6000 147.0726 )"><path d=" M 180.6400,159.0726 L 180.6400,146.5726 L 202.6000,146.5726 L 202.6000,159.0726 L 180.6400,159.0726 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="181.1400" text-length="20.4600px" y="156.4226" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 201.6000 121.0968 )"><path d=" M 180.6400,133.0968 L 180.6400,120.5968 L 202.6000,120.5968 L 202.6000,133.0968 L 180.6400,133.0968 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="181.1400" text-length="20.4600px" y="130.4468" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43" transform="rotate( 62.21 201.6000 95.1210 )"><path d=" M 180.6400,107.1210 L 180.6400,94.6210 L 202.6000,94.6210 L 202.6000,107.1210 L 180.6400,107.1210 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="181.1400" text-length="20.4600px" y="104.4710" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_134.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_134.svg new file mode 100644 index 0000000..a7bca75 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_134.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,25.0000 L 560.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,21.0000 L 560.0000,25.0000 L 552.0000,29.0000 L 552.0000,21.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 253.8667,25.0000 L 253.8667,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 253.8667,22.0000 L 253.8667,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 306.1333,25.0000 L 306.1333,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 306.1333,22.0000 L 306.1333,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 358.4000,25.0000 L 358.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 358.4000,22.0000 L 358.4000,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 410.6667,25.0000 L 410.6667,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 410.6667,22.0000 L 410.6667,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 462.9333,25.0000 L 462.9333,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 462.9333,22.0000 L 462.9333,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 515.2000,22.0000 L 515.2000,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 201.6000,0.0000 L 201.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 205.6000,242.0000 L 201.6000,250.0000 L 197.6000,242.0000 L 205.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 204.6000,95.1210 L 201.6000,95.1210" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,121.0968 L 515.2000,121.0968" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 204.6000,121.0968 L 201.6000,121.0968" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,147.0726 L 515.2000,147.0726" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 204.6000,147.0726 L 201.6000,147.0726" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,173.0484 L 515.2000,173.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 204.6000,173.0484 L 201.6000,173.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,199.0242 L 515.2000,199.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 204.6000,199.0242 L 201.6000,199.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 204.6000,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 227.7333,160.0605 L 227.7333,160.0605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 227.7333,160.0605 L 280.0000,160.0605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 280.0000,160.0605 L 332.2667,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 332.2667,95.1210 L 384.5333,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 384.5333,95.1210 L 436.8000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 436.8000,225.0000 L 489.0667,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="227.7333" cy="160.0605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="280.0000" cy="160.0605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="332.2667" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="384.5333" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="436.8000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="489.0667" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 203.9133,39.0000 L 203.9133,26.5000 L 252.0533,26.5000 L 252.0533,39.0000 L 203.9133,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="204.4133" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_11"><path d=" M 256.1800,39.0000 L 256.1800,26.5000 L 304.3200,26.5000 L 304.3200,39.0000 L 256.1800,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="256.6800" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 308.4467,39.0000 L 308.4467,26.5000 L 356.5867,26.5000 L 356.5867,39.0000 L 308.4467,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="308.9467" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_17"><path d=" M 360.7133,39.0000 L 360.7133,26.5000 L 408.8533,26.5000 L 408.8533,39.0000 L 360.7133,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="361.2133" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_20"><path d=" M 412.9800,39.0000 L 412.9800,26.5000 L 461.1200,26.5000 L 461.1200,39.0000 L 412.9800,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="413.4800" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_23"><path d=" M 465.2467,39.0000 L 465.2467,26.5000 L 513.3867,26.5000 L 513.3867,39.0000 L 465.2467,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="465.7467" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 201.6000 95.1210 )"><path d=" M 194.2800,107.1210 L 194.2800,94.6210 L 202.6000,94.6210 L 202.6000,107.1210 L 194.2800,107.1210 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="194.7800" text-length="6.8200px" y="104.4710" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 201.6000 121.0968 )"><path d=" M 180.6400,133.0968 L 180.6400,120.5968 L 202.6000,120.5968 L 202.6000,133.0968 L 180.6400,133.0968 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="181.1400" text-length="20.4600px" y="130.4468" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 201.6000 147.0726 )"><path d=" M 180.6400,159.0726 L 180.6400,146.5726 L 202.6000,146.5726 L 202.6000,159.0726 L 180.6400,159.0726 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="181.1400" text-length="20.4600px" y="156.4226" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 201.6000 173.0484 )"><path d=" M 180.6400,185.0484 L 180.6400,172.5484 L 202.6000,172.5484 L 202.6000,185.0484 L 180.6400,185.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="181.1400" text-length="20.4600px" y="182.3984" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 201.6000 199.0242 )"><path d=" M 180.6400,211.0242 L 180.6400,198.5242 L 202.6000,198.5242 L 202.6000,211.0242 L 180.6400,211.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="181.1400" text-length="20.4600px" y="208.3742" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43" transform="rotate( 62.21 201.6000 225.0000 )"><path d=" M 180.6400,237.0000 L 180.6400,224.5000 L 202.6000,224.5000 L 202.6000,237.0000 L 180.6400,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="181.1400" text-length="20.4600px" y="234.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_135.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_135.svg new file mode 100644 index 0000000..0e90899 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_135.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,225.0000 L 112.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,229.0000 L 112.0000,225.0000 L 120.0000,221.0000 L 120.0000,229.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 462.9333,25.0000 L 462.9333,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 462.9333,228.0000 L 462.9333,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 410.6667,25.0000 L 410.6667,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 410.6667,228.0000 L 410.6667,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 358.4000,25.0000 L 358.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 358.4000,228.0000 L 358.4000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 306.1333,25.0000 L 306.1333,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 306.1333,228.0000 L 306.1333,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 253.8667,25.0000 L 253.8667,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 253.8667,228.0000 L 253.8667,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 201.6000,25.0000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 201.6000,228.0000 L 201.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 515.2000,250.0000 L 515.2000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 511.2000,8.0000 L 515.2000,0.0000 L 519.2000,8.0000 L 511.2000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 515.2000,225.0000 L 518.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,199.0242 L 515.2000,199.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 515.2000,199.0242 L 518.2000,199.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,173.0484 L 515.2000,173.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 515.2000,173.0484 L 518.2000,173.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,147.0726 L 515.2000,147.0726" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 515.2000,147.0726 L 518.2000,147.0726" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,121.0968 L 515.2000,121.0968" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 515.2000,121.0968 L 518.2000,121.0968" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 515.2000,95.1210 L 518.2000,95.1210" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 489.0667,160.0605 L 489.0667,160.0605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 489.0667,160.0605 L 436.8000,160.0605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 436.8000,160.0605 L 384.5333,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 384.5333,225.0000 L 332.2667,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 332.2667,225.0000 L 280.0000,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 280.0000,95.1210 L 227.7333,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="489.0667" cy="160.0605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="436.8000" cy="160.0605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="384.5333" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="332.2667" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="280.0000" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="227.7333" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 465.2467,239.0000 L 465.2467,226.5000 L 513.3867,226.5000 L 513.3867,239.0000 L 465.2467,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="465.7467" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_11"><path d=" M 412.9800,239.0000 L 412.9800,226.5000 L 461.1200,226.5000 L 461.1200,239.0000 L 412.9800,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="413.4800" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 360.7133,239.0000 L 360.7133,226.5000 L 408.8533,226.5000 L 408.8533,239.0000 L 360.7133,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="361.2133" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_17"><path d=" M 308.4467,239.0000 L 308.4467,226.5000 L 356.5867,226.5000 L 356.5867,239.0000 L 308.4467,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="308.9467" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_20"><path d=" M 256.1800,239.0000 L 256.1800,226.5000 L 304.3200,226.5000 L 304.3200,239.0000 L 256.1800,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="256.6800" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_23"><path d=" M 203.9133,239.0000 L 203.9133,226.5000 L 252.0533,226.5000 L 252.0533,239.0000 L 203.9133,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="204.4133" text-length="46.6400px" y="236.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 515.2000 225.0000 )"><path d=" M 507.8800,237.0000 L 507.8800,224.5000 L 516.2000,224.5000 L 516.2000,237.0000 L 507.8800,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="508.3800" text-length="6.8200px" y="234.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 515.2000 199.0242 )"><path d=" M 494.2400,211.0242 L 494.2400,198.5242 L 516.2000,198.5242 L 516.2000,211.0242 L 494.2400,211.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="494.7400" text-length="20.4600px" y="208.3742" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 515.2000 173.0484 )"><path d=" M 494.2400,185.0484 L 494.2400,172.5484 L 516.2000,172.5484 L 516.2000,185.0484 L 494.2400,185.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="494.7400" text-length="20.4600px" y="182.3984" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 515.2000 147.0726 )"><path d=" M 494.2400,159.0726 L 494.2400,146.5726 L 516.2000,146.5726 L 516.2000,159.0726 L 494.2400,159.0726 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="494.7400" text-length="20.4600px" y="156.4226" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 515.2000 121.0968 )"><path d=" M 494.2400,133.0968 L 494.2400,120.5968 L 516.2000,120.5968 L 516.2000,133.0968 L 494.2400,133.0968 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="494.7400" text-length="20.4600px" y="130.4468" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43" transform="rotate( 62.21 515.2000 95.1210 )"><path d=" M 494.2400,107.1210 L 494.2400,94.6210 L 516.2000,94.6210 L 516.2000,107.1210 L 494.2400,107.1210 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="494.7400" text-length="20.4600px" y="104.4710" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_136.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_136.svg new file mode 100644 index 0000000..103962e --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_136.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,25.0000 L 112.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,29.0000 L 112.0000,25.0000 L 120.0000,21.0000 L 120.0000,29.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 462.9333,25.0000 L 462.9333,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 462.9333,28.0000 L 462.9333,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 410.6667,25.0000 L 410.6667,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 410.6667,28.0000 L 410.6667,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 358.4000,25.0000 L 358.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 358.4000,28.0000 L 358.4000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 306.1333,25.0000 L 306.1333,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 306.1333,28.0000 L 306.1333,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 253.8667,25.0000 L 253.8667,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 253.8667,28.0000 L 253.8667,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 201.6000,25.0000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 201.6000,28.0000 L 201.6000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 515.2000,0.0000 L 515.2000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 519.2000,242.0000 L 515.2000,250.0000 L 511.2000,242.0000 L 519.2000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 518.2000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,121.0968 L 515.2000,121.0968" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 518.2000,121.0968 L 515.2000,121.0968" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,147.0726 L 515.2000,147.0726" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 518.2000,147.0726 L 515.2000,147.0726" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,173.0484 L 515.2000,173.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 518.2000,173.0484 L 515.2000,173.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,199.0242 L 515.2000,199.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 518.2000,199.0242 L 515.2000,199.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 518.2000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 489.0667,160.0605 L 489.0667,160.0605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 489.0667,160.0605 L 436.8000,160.0605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 436.8000,160.0605 L 384.5333,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 384.5333,95.1210 L 332.2667,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 332.2667,95.1210 L 280.0000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 280.0000,225.0000 L 227.7333,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="489.0667" cy="160.0605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="436.8000" cy="160.0605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="384.5333" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="332.2667" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="280.0000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="227.7333" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 465.2467,39.0000 L 465.2467,26.5000 L 513.3867,26.5000 L 513.3867,39.0000 L 465.2467,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="465.7467" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_11"><path d=" M 412.9800,39.0000 L 412.9800,26.5000 L 461.1200,26.5000 L 461.1200,39.0000 L 412.9800,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="413.4800" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 360.7133,39.0000 L 360.7133,26.5000 L 408.8533,26.5000 L 408.8533,39.0000 L 360.7133,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="361.2133" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_17"><path d=" M 308.4467,39.0000 L 308.4467,26.5000 L 356.5867,26.5000 L 356.5867,39.0000 L 308.4467,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="308.9467" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_20"><path d=" M 256.1800,39.0000 L 256.1800,26.5000 L 304.3200,26.5000 L 304.3200,39.0000 L 256.1800,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="256.6800" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_23"><path d=" M 203.9133,39.0000 L 203.9133,26.5000 L 252.0533,26.5000 L 252.0533,39.0000 L 203.9133,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="204.4133" text-length="46.6400px" y="36.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 515.2000 95.1210 )"><path d=" M 507.8800,107.1210 L 507.8800,94.6210 L 516.2000,94.6210 L 516.2000,107.1210 L 507.8800,107.1210 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="508.3800" text-length="6.8200px" y="104.4710" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 515.2000 121.0968 )"><path d=" M 494.2400,133.0968 L 494.2400,120.5968 L 516.2000,120.5968 L 516.2000,133.0968 L 494.2400,133.0968 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="494.7400" text-length="20.4600px" y="130.4468" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 515.2000 147.0726 )"><path d=" M 494.2400,159.0726 L 494.2400,146.5726 L 516.2000,146.5726 L 516.2000,159.0726 L 494.2400,159.0726 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="494.7400" text-length="20.4600px" y="156.4226" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 515.2000 173.0484 )"><path d=" M 494.2400,185.0484 L 494.2400,172.5484 L 516.2000,172.5484 L 516.2000,185.0484 L 494.2400,185.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="494.7400" text-length="20.4600px" y="182.3984" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 515.2000 199.0242 )"><path d=" M 494.2400,211.0242 L 494.2400,198.5242 L 516.2000,198.5242 L 516.2000,211.0242 L 494.2400,211.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="494.7400" text-length="20.4600px" y="208.3742" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43" transform="rotate( 62.21 515.2000 225.0000 )"><path d=" M 494.2400,237.0000 L 494.2400,224.5000 L 516.2000,224.5000 L 516.2000,237.0000 L 494.2400,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="494.7400" text-length="20.4600px" y="234.3500" style="font-size: 11px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_137.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_137.svg new file mode 100644 index 0000000..886a6e5 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_137.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,200.0000 L 560.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,196.0000 L 560.0000,200.0000 L 552.0000,204.0000 L 552.0000,196.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 220.2667,12.5000 L 220.2667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 220.2667,197.0000 L 220.2667,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 283.7333,12.5000 L 283.7333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 283.7333,197.0000 L 283.7333,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 347.2000,12.5000 L 347.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 347.2000,197.0000 L 347.2000,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 410.6667,12.5000 L 410.6667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 410.6667,197.0000 L 410.6667,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 474.1333,12.5000 L 474.1333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 474.1333,197.0000 L 474.1333,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 537.6000,197.0000 L 537.6000,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 156.8000,250.0000 L 156.8000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 153.8000,6.0000 L 156.8000,0.0000 L 159.8000,6.0000 L 153.8000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,200.0000 L 159.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,169.5121 L 537.6000,169.5121" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,169.5121 L 159.8000,169.5121" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,139.0242 L 537.6000,139.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,139.0242 L 159.8000,139.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,108.5363 L 537.6000,108.5363" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,108.5363 L 159.8000,108.5363" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,78.0484 L 537.6000,78.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,78.0484 L 159.8000,78.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,47.5605 L 159.8000,47.5605" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 188.5333,123.7803 L 188.5333,123.7803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 188.5333,123.7803 L 252.0000,123.7803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 252.0000,123.7803 L 315.4667,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 315.4667,200.0000 L 378.9333,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 378.9333,200.0000 L 442.4000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 442.4000,47.5605 L 505.8667,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="188.5333" cy="123.7803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="252.0000" cy="123.7803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="315.4667" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="378.9333" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="442.4000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="505.8667" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 172.1333,223.1000 L 172.1333,201.5000 L 205.4333,201.5000 L 205.4333,223.1000 L 172.1333,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="172.6333" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="185.4333" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 235.6000,223.1000 L 235.6000,201.5000 L 268.9000,201.5000 L 268.9000,223.1000 L 235.6000,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="236.1000" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="248.9000" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 299.0667,223.1000 L 299.0667,201.5000 L 332.3667,201.5000 L 332.3667,223.1000 L 299.0667,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="299.5667" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="312.3667" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 362.5333,223.1000 L 362.5333,201.5000 L 395.8333,201.5000 L 395.8333,223.1000 L 362.5333,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="363.0333" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="375.8333" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 426.0000,223.1000 L 426.0000,201.5000 L 459.3000,201.5000 L 459.3000,223.1000 L 426.0000,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="426.5000" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="439.3000" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 489.4667,223.1000 L 489.4667,201.5000 L 522.7667,201.5000 L 522.7667,223.1000 L 489.4667,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="489.9667" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="502.7667" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 156.8000 200.0000 )"><path d=" M 150.1000,211.0000 L 150.1000,199.5000 L 157.8000,199.5000 L 157.8000,211.0000 L 150.1000,211.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="150.6000" text-length="6.2000px" y="208.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 156.8000 169.5121 )"><path d=" M 137.7000,180.5121 L 137.7000,169.0121 L 157.8000,169.0121 L 157.8000,180.5121 L 137.7000,180.5121 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="138.2000" text-length="18.6000px" y="178.0121" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 156.8000 139.0242 )"><path d=" M 137.7000,150.0242 L 137.7000,138.5242 L 157.8000,138.5242 L 157.8000,150.0242 L 137.7000,150.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="138.2000" text-length="18.6000px" y="147.5242" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 156.8000 108.5363 )"><path d=" M 137.7000,119.5363 L 137.7000,108.0363 L 157.8000,108.0363 L 157.8000,119.5363 L 137.7000,119.5363 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="138.2000" text-length="18.6000px" y="117.0363" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 156.8000 78.0484 )"><path d=" M 137.7000,89.0484 L 137.7000,77.5484 L 157.8000,77.5484 L 157.8000,89.0484 L 137.7000,89.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="138.2000" text-length="18.6000px" y="86.5484" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43" transform="rotate( 62.21 156.8000 47.5605 )"><path d=" M 137.7000,58.5605 L 137.7000,47.0605 L 157.8000,47.0605 L 157.8000,58.5605 L 137.7000,58.5605 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="138.2000" text-length="18.6000px" y="56.0605" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_138.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_138.svg new file mode 100644 index 0000000..ff304f9 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_138.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,12.5000 L 560.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,8.5000 L 560.0000,12.5000 L 552.0000,16.5000 L 552.0000,8.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 220.2667,12.5000 L 220.2667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 220.2667,9.5000 L 220.2667,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 283.7333,12.5000 L 283.7333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 283.7333,9.5000 L 283.7333,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 347.2000,12.5000 L 347.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 347.2000,9.5000 L 347.2000,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 410.6667,12.5000 L 410.6667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 410.6667,9.5000 L 410.6667,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 474.1333,12.5000 L 474.1333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 474.1333,9.5000 L 474.1333,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 537.6000,9.5000 L 537.6000,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 156.8000,0.0000 L 156.8000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 160.3000,243.0000 L 156.8000,250.0000 L 153.3000,243.0000 L 160.3000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 159.8000,47.5605 L 156.8000,47.5605" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,78.0484 L 537.6000,78.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 159.8000,78.0484 L 156.8000,78.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,108.5363 L 537.6000,108.5363" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 159.8000,108.5363 L 156.8000,108.5363" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,139.0242 L 537.6000,139.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 159.8000,139.0242 L 156.8000,139.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,169.5121 L 537.6000,169.5121" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 159.8000,169.5121 L 156.8000,169.5121" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 159.8000,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 188.5333,123.7803 L 188.5333,123.7803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 188.5333,123.7803 L 252.0000,123.7803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 252.0000,123.7803 L 315.4667,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 315.4667,47.5605 L 378.9333,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 378.9333,47.5605 L 442.4000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 442.4000,200.0000 L 505.8667,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="188.5333" cy="123.7803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="252.0000" cy="123.7803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="315.4667" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="378.9333" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="442.4000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="505.8667" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 172.1333,35.6000 L 172.1333,14.0000 L 205.4333,14.0000 L 205.4333,35.6000 L 172.1333,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="172.6333" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="185.4333" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 235.6000,35.6000 L 235.6000,14.0000 L 268.9000,14.0000 L 268.9000,35.6000 L 235.6000,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="236.1000" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="248.9000" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 299.0667,35.6000 L 299.0667,14.0000 L 332.3667,14.0000 L 332.3667,35.6000 L 299.0667,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="299.5667" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="312.3667" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 362.5333,35.6000 L 362.5333,14.0000 L 395.8333,14.0000 L 395.8333,35.6000 L 362.5333,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="363.0333" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="375.8333" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 426.0000,35.6000 L 426.0000,14.0000 L 459.3000,14.0000 L 459.3000,35.6000 L 426.0000,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="426.5000" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="439.3000" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 489.4667,35.6000 L 489.4667,14.0000 L 522.7667,14.0000 L 522.7667,35.6000 L 489.4667,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="489.9667" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="502.7667" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 156.8000 47.5605 )"><path d=" M 150.1000,58.5605 L 150.1000,47.0605 L 157.8000,47.0605 L 157.8000,58.5605 L 150.1000,58.5605 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="150.6000" text-length="6.2000px" y="56.0605" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 156.8000 78.0484 )"><path d=" M 137.7000,89.0484 L 137.7000,77.5484 L 157.8000,77.5484 L 157.8000,89.0484 L 137.7000,89.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="138.2000" text-length="18.6000px" y="86.5484" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 156.8000 108.5363 )"><path d=" M 137.7000,119.5363 L 137.7000,108.0363 L 157.8000,108.0363 L 157.8000,119.5363 L 137.7000,119.5363 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="138.2000" text-length="18.6000px" y="117.0363" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 156.8000 139.0242 )"><path d=" M 137.7000,150.0242 L 137.7000,138.5242 L 157.8000,138.5242 L 157.8000,150.0242 L 137.7000,150.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="138.2000" text-length="18.6000px" y="147.5242" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 156.8000 169.5121 )"><path d=" M 137.7000,180.5121 L 137.7000,169.0121 L 157.8000,169.0121 L 157.8000,180.5121 L 137.7000,180.5121 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="138.2000" text-length="18.6000px" y="178.0121" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43" transform="rotate( 62.21 156.8000 200.0000 )"><path d=" M 137.7000,211.0000 L 137.7000,199.5000 L 157.8000,199.5000 L 157.8000,211.0000 L 137.7000,211.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="138.2000" text-length="18.6000px" y="208.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_139.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_139.svg new file mode 100644 index 0000000..d77a1b5 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_139.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,200.0000 L 112.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,204.0000 L 112.0000,200.0000 L 120.0000,196.0000 L 120.0000,204.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 474.1333,12.5000 L 474.1333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 474.1333,203.0000 L 474.1333,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 410.6667,12.5000 L 410.6667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 410.6667,203.0000 L 410.6667,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 347.2000,12.5000 L 347.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 347.2000,203.0000 L 347.2000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 283.7333,12.5000 L 283.7333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 283.7333,203.0000 L 283.7333,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 220.2667,12.5000 L 220.2667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 220.2667,203.0000 L 220.2667,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 156.8000,12.5000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 156.8000,203.0000 L 156.8000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 537.6000,250.0000 L 537.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 534.6000,6.0000 L 537.6000,0.0000 L 540.6000,6.0000 L 534.6000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 537.6000,200.0000 L 540.6000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,169.5121 L 537.6000,169.5121" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 537.6000,169.5121 L 540.6000,169.5121" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,139.0242 L 537.6000,139.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 537.6000,139.0242 L 540.6000,139.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,108.5363 L 537.6000,108.5363" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 537.6000,108.5363 L 540.6000,108.5363" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,78.0484 L 537.6000,78.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 537.6000,78.0484 L 540.6000,78.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 537.6000,47.5605 L 540.6000,47.5605" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 505.8667,123.7803 L 505.8667,123.7803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 505.8667,123.7803 L 442.4000,123.7803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 442.4000,123.7803 L 378.9333,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 378.9333,200.0000 L 315.4667,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 315.4667,200.0000 L 252.0000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 252.0000,47.5605 L 188.5333,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="505.8667" cy="123.7803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="442.4000" cy="123.7803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="378.9333" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="315.4667" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="252.0000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="188.5333" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 489.4667,223.1000 L 489.4667,201.5000 L 522.7667,201.5000 L 522.7667,223.1000 L 489.4667,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="489.9667" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="502.7667" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 426.0000,223.1000 L 426.0000,201.5000 L 459.3000,201.5000 L 459.3000,223.1000 L 426.0000,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="426.5000" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="439.3000" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 362.5333,223.1000 L 362.5333,201.5000 L 395.8333,201.5000 L 395.8333,223.1000 L 362.5333,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="363.0333" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="375.8333" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 299.0667,223.1000 L 299.0667,201.5000 L 332.3667,201.5000 L 332.3667,223.1000 L 299.0667,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="299.5667" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="312.3667" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 235.6000,223.1000 L 235.6000,201.5000 L 268.9000,201.5000 L 268.9000,223.1000 L 235.6000,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="236.1000" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="248.9000" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 172.1333,223.1000 L 172.1333,201.5000 L 205.4333,201.5000 L 205.4333,223.1000 L 172.1333,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="172.6333" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="185.4333" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 537.6000 200.0000 )"><path d=" M 530.9000,211.0000 L 530.9000,199.5000 L 538.6000,199.5000 L 538.6000,211.0000 L 530.9000,211.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="531.4000" text-length="6.2000px" y="208.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 537.6000 169.5121 )"><path d=" M 518.5000,180.5121 L 518.5000,169.0121 L 538.6000,169.0121 L 538.6000,180.5121 L 518.5000,180.5121 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="519.0000" text-length="18.6000px" y="178.0121" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 537.6000 139.0242 )"><path d=" M 518.5000,150.0242 L 518.5000,138.5242 L 538.6000,138.5242 L 538.6000,150.0242 L 518.5000,150.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="519.0000" text-length="18.6000px" y="147.5242" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 537.6000 108.5363 )"><path d=" M 518.5000,119.5363 L 518.5000,108.0363 L 538.6000,108.0363 L 538.6000,119.5363 L 518.5000,119.5363 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="519.0000" text-length="18.6000px" y="117.0363" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 537.6000 78.0484 )"><path d=" M 518.5000,89.0484 L 518.5000,77.5484 L 538.6000,77.5484 L 538.6000,89.0484 L 518.5000,89.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="519.0000" text-length="18.6000px" y="86.5484" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43" transform="rotate( 62.21 537.6000 47.5605 )"><path d=" M 518.5000,58.5605 L 518.5000,47.0605 L 538.6000,47.0605 L 538.6000,58.5605 L 518.5000,58.5605 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="519.0000" text-length="18.6000px" y="56.0605" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_14.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_14.svg new file mode 100644 index 0000000..bd18299 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_14.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,25.0000 L 560.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,21.0000 L 560.0000,25.0000 L 552.0000,29.0000 L 552.0000,21.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 228.4800,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 228.4800,22.0000 L 228.4800,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 300.1600,25.0000 L 300.1600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 300.1600,22.0000 L 300.1600,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 371.8400,25.0000 L 371.8400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 371.8400,22.0000 L 371.8400,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 443.5200,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 443.5200,22.0000 L 443.5200,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 515.2000,22.0000 L 515.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 156.8000,0.0000 L 156.8000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 160.3000,243.0000 L 156.8000,250.0000 L 153.3000,243.0000 L 160.3000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 156.8000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 157.8000,33.7500 L 156.8000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 157.8000,42.5000 L 156.8000,42.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 157.8000,51.2500 L 156.8000,51.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 159.8000,60.0000 L 156.8000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 157.8000,68.7500 L 156.8000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 157.8000,77.5000 L 156.8000,77.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 157.8000,86.2500 L 156.8000,86.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 159.8000,95.0000 L 156.8000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 157.8000,103.7500 L 156.8000,103.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 157.8000,112.5000 L 156.8000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 157.8000,121.2500 L 156.8000,121.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 159.8000,130.0000 L 156.8000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 157.8000,138.7500 L 156.8000,138.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 157.8000,147.5000 L 156.8000,147.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 157.8000,156.2500 L 156.8000,156.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 159.8000,165.0000 L 156.8000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 157.8000,173.7500 L 156.8000,173.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 157.8000,182.5000 L 156.8000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 157.8000,191.2500 L 156.8000,191.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 159.8000,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,112.5000 L 156.8000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 156.8000,112.5000 L 228.4800,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 228.4800,112.5000 L 300.1600,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 300.1600,25.0000 L 371.8400,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 371.8400,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 443.5200,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="156.8000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="228.4800" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="300.1600" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="371.8400" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="443.5200" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="515.2000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 206.5150,55.1000 L 206.5150,26.5000 L 250.9450,26.5000 L 250.9450,55.1000 L 206.5150,55.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_10_text" x="207.0150" text-length="42.9300px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_10_text" x="224.2950" text-length="8.3700px" y="53.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_13"><path d=" M 278.1950,55.1000 L 278.1950,26.5000 L 322.6250,26.5000 L 322.6250,55.1000 L 278.1950,55.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_13_text" x="278.6950" text-length="42.9300px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_13_text" x="295.9750" text-length="8.3700px" y="53.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_16"><path d=" M 349.8750,55.1000 L 349.8750,26.5000 L 394.3050,26.5000 L 394.3050,55.1000 L 349.8750,55.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_16_text" x="350.3750" text-length="42.9300px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_16_text" x="367.6550" text-length="8.3700px" y="53.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_19"><path d=" M 421.5550,55.1000 L 421.5550,26.5000 L 465.9850,26.5000 L 465.9850,55.1000 L 421.5550,55.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_19_text" x="422.0550" text-length="42.9300px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_19_text" x="439.3350" text-length="8.3700px" y="53.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_22"><path d=" M 493.2350,55.1000 L 493.2350,26.5000 L 537.6650,26.5000 L 537.6650,55.1000 L 493.2350,55.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_22_text" x="493.7350" text-length="42.9300px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="511.0150" text-length="8.3700px" y="53.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25"><path d=" M 145.9300,41.5000 L 145.9300,26.5000 L 155.8000,26.5000 L 155.8000,41.5000 L 145.9300,41.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_25_text" x="146.4300" text-length="8.3700px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_34"><path d=" M 129.1900,76.5000 L 129.1900,61.5000 L 155.8000,61.5000 L 155.8000,76.5000 L 129.1900,76.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="129.6900" text-length="25.1100px" y="73.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 129.1900,111.5000 L 129.1900,96.5000 L 155.8000,96.5000 L 155.8000,111.5000 L 129.1900,111.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="129.6900" text-length="25.1100px" y="108.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 129.1900,146.5000 L 129.1900,131.5000 L 155.8000,131.5000 L 155.8000,146.5000 L 129.1900,146.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="129.6900" text-length="25.1100px" y="143.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 129.1900,181.5000 L 129.1900,166.5000 L 155.8000,166.5000 L 155.8000,181.5000 L 129.1900,181.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="129.6900" text-length="25.1100px" y="178.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 129.1900,199.0000 L 129.1900,184.0000 L 155.8000,184.0000 L 155.8000,199.0000 L 129.1900,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="129.6900" text-length="25.1100px" y="195.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_140.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_140.svg new file mode 100644 index 0000000..105981d --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_140.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,12.5000 L 112.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,16.5000 L 112.0000,12.5000 L 120.0000,8.5000 L 120.0000,16.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 474.1333,12.5000 L 474.1333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 474.1333,15.5000 L 474.1333,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 410.6667,12.5000 L 410.6667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 410.6667,15.5000 L 410.6667,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 347.2000,12.5000 L 347.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 347.2000,15.5000 L 347.2000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 283.7333,12.5000 L 283.7333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 283.7333,15.5000 L 283.7333,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 220.2667,12.5000 L 220.2667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 220.2667,15.5000 L 220.2667,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 156.8000,12.5000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 156.8000,15.5000 L 156.8000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 537.6000,0.0000 L 537.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 541.1000,243.0000 L 537.6000,250.0000 L 534.1000,243.0000 L 541.1000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 540.6000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,78.0484 L 537.6000,78.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 540.6000,78.0484 L 537.6000,78.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,108.5363 L 537.6000,108.5363" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 540.6000,108.5363 L 537.6000,108.5363" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,139.0242 L 537.6000,139.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 540.6000,139.0242 L 537.6000,139.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,169.5121 L 537.6000,169.5121" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 540.6000,169.5121 L 537.6000,169.5121" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 540.6000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 505.8667,123.7803 L 505.8667,123.7803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 505.8667,123.7803 L 442.4000,123.7803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 442.4000,123.7803 L 378.9333,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 378.9333,47.5605 L 315.4667,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 315.4667,47.5605 L 252.0000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 252.0000,200.0000 L 188.5333,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="505.8667" cy="123.7803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="442.4000" cy="123.7803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="378.9333" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="315.4667" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="252.0000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="188.5333" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 489.4667,35.6000 L 489.4667,14.0000 L 522.7667,14.0000 L 522.7667,35.6000 L 489.4667,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="489.9667" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="502.7667" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 426.0000,35.6000 L 426.0000,14.0000 L 459.3000,14.0000 L 459.3000,35.6000 L 426.0000,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="426.5000" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="439.3000" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 362.5333,35.6000 L 362.5333,14.0000 L 395.8333,14.0000 L 395.8333,35.6000 L 362.5333,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="363.0333" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="375.8333" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 299.0667,35.6000 L 299.0667,14.0000 L 332.3667,14.0000 L 332.3667,35.6000 L 299.0667,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="299.5667" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="312.3667" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 235.6000,35.6000 L 235.6000,14.0000 L 268.9000,14.0000 L 268.9000,35.6000 L 235.6000,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="236.1000" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="248.9000" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 172.1333,35.6000 L 172.1333,14.0000 L 205.4333,14.0000 L 205.4333,35.6000 L 172.1333,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="172.6333" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="185.4333" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 537.6000 47.5605 )"><path d=" M 530.9000,58.5605 L 530.9000,47.0605 L 538.6000,47.0605 L 538.6000,58.5605 L 530.9000,58.5605 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="531.4000" text-length="6.2000px" y="56.0605" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 537.6000 78.0484 )"><path d=" M 518.5000,89.0484 L 518.5000,77.5484 L 538.6000,77.5484 L 538.6000,89.0484 L 518.5000,89.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="519.0000" text-length="18.6000px" y="86.5484" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 537.6000 108.5363 )"><path d=" M 518.5000,119.5363 L 518.5000,108.0363 L 538.6000,108.0363 L 538.6000,119.5363 L 518.5000,119.5363 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="519.0000" text-length="18.6000px" y="117.0363" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 537.6000 139.0242 )"><path d=" M 518.5000,150.0242 L 518.5000,138.5242 L 538.6000,138.5242 L 538.6000,150.0242 L 518.5000,150.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="519.0000" text-length="18.6000px" y="147.5242" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 537.6000 169.5121 )"><path d=" M 518.5000,180.5121 L 518.5000,169.0121 L 538.6000,169.0121 L 538.6000,180.5121 L 518.5000,180.5121 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="519.0000" text-length="18.6000px" y="178.0121" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43" transform="rotate( 62.21 537.6000 200.0000 )"><path d=" M 518.5000,211.0000 L 518.5000,199.5000 L 538.6000,199.5000 L 538.6000,211.0000 L 518.5000,211.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="519.0000" text-length="18.6000px" y="208.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_141.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_141.svg new file mode 100644 index 0000000..f2981e4 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_141.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,200.0000 L 560.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,196.0000 L 560.0000,200.0000 L 552.0000,204.0000 L 552.0000,196.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 216.5333,25.0000 L 216.5333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 216.5333,197.0000 L 216.5333,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 276.2667,25.0000 L 276.2667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 276.2667,197.0000 L 276.2667,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 336.0000,25.0000 L 336.0000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 336.0000,197.0000 L 336.0000,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 395.7333,25.0000 L 395.7333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 395.7333,197.0000 L 395.7333,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 455.4667,25.0000 L 455.4667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 455.4667,197.0000 L 455.4667,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 515.2000,197.0000 L 515.2000,203.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 156.8000,250.0000 L 156.8000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 153.8000,6.0000 L 156.8000,0.0000 L 159.8000,6.0000 L 153.8000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,200.0000 L 159.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,179.0242 L 515.2000,179.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,179.0242 L 159.8000,179.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,158.0484 L 515.2000,158.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,158.0484 L 159.8000,158.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,137.0726 L 515.2000,137.0726" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,137.0726 L 159.8000,137.0726" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,116.0968 L 515.2000,116.0968" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,116.0968 L 159.8000,116.0968" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,95.1210 L 159.8000,95.1210" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 186.6667,147.5605 L 186.6667,147.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 186.6667,147.5605 L 246.4000,147.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 246.4000,147.5605 L 306.1333,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 306.1333,200.0000 L 365.8667,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 365.8667,200.0000 L 425.6000,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 425.6000,95.1210 L 485.3333,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="186.6667" cy="147.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="246.4000" cy="147.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="306.1333" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="365.8667" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="425.6000" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="485.3333" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 160.2192,235.7383 L 160.2192,201.5000 L 213.6141,201.5000 L 213.6141,235.7383 L 160.2192,235.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="160.7192" text-length="51.8949px" y="215.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="181.6077" text-length="10.1179px" y="233.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 219.9526,235.7383 L 219.9526,201.5000 L 273.3474,201.5000 L 273.3474,235.7383 L 219.9526,235.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="220.4526" text-length="51.8949px" y="215.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="241.3411" text-length="10.1179px" y="233.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 279.6859,235.7383 L 279.6859,201.5000 L 333.0808,201.5000 L 333.0808,235.7383 L 279.6859,235.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="280.1859" text-length="51.8949px" y="215.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="301.0744" text-length="10.1179px" y="233.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 339.4192,235.7383 L 339.4192,201.5000 L 392.8141,201.5000 L 392.8141,235.7383 L 339.4192,235.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="339.9192" text-length="51.8949px" y="215.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="360.8077" text-length="10.1179px" y="233.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 399.1526,235.7383 L 399.1526,201.5000 L 452.5474,201.5000 L 452.5474,235.7383 L 399.1526,235.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="399.6526" text-length="51.8949px" y="215.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="420.5411" text-length="10.1179px" y="233.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 458.8859,235.7383 L 458.8859,201.5000 L 512.2808,201.5000 L 512.2808,235.7383 L 458.8859,235.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="459.3859" text-length="51.8949px" y="215.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="480.2744" text-length="10.1179px" y="233.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 156.8000 200.0000 )"><path d=" M 146.1821,217.3191 L 146.1821,199.5000 L 157.8000,199.5000 L 157.8000,217.3191 L 146.1821,217.3191 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="146.6821" text-length="10.1179px" y="213.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 156.8000 179.0242 )"><path d=" M 125.9464,196.3433 L 125.9464,178.5242 L 157.8000,178.5242 L 157.8000,196.3433 L 125.9464,196.3433 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="126.4464" text-length="30.3536px" y="192.8955" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 156.8000 158.0484 )"><path d=" M 125.9464,175.3675 L 125.9464,157.5484 L 157.8000,157.5484 L 157.8000,175.3675 L 125.9464,175.3675 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="126.4464" text-length="30.3536px" y="171.9197" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 156.8000 137.0726 )"><path d=" M 125.9464,154.3917 L 125.9464,136.5726 L 157.8000,136.5726 L 157.8000,154.3917 L 125.9464,154.3917 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="126.4464" text-length="30.3536px" y="150.9439" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 156.8000 116.0968 )"><path d=" M 125.9464,133.4159 L 125.9464,115.5968 L 157.8000,115.5968 L 157.8000,133.4159 L 125.9464,133.4159 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="126.4464" text-length="30.3536px" y="129.9681" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43" transform="rotate( 62.21 156.8000 95.1210 )"><path d=" M 125.9464,112.4402 L 125.9464,94.6210 L 157.8000,94.6210 L 157.8000,112.4402 L 125.9464,112.4402 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="126.4464" text-length="30.3536px" y="108.9923" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_142.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_142.svg new file mode 100644 index 0000000..9c884b6 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_142.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,25.0000 L 560.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,21.0000 L 560.0000,25.0000 L 552.0000,29.0000 L 552.0000,21.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 216.5333,25.0000 L 216.5333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 216.5333,22.0000 L 216.5333,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 276.2667,25.0000 L 276.2667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 276.2667,22.0000 L 276.2667,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 336.0000,25.0000 L 336.0000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 336.0000,22.0000 L 336.0000,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 395.7333,25.0000 L 395.7333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 395.7333,22.0000 L 395.7333,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 455.4667,25.0000 L 455.4667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 455.4667,22.0000 L 455.4667,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 515.2000,22.0000 L 515.2000,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 156.8000,0.0000 L 156.8000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 160.3000,243.0000 L 156.8000,250.0000 L 153.3000,243.0000 L 160.3000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 159.8000,95.1210 L 156.8000,95.1210" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,116.0968 L 515.2000,116.0968" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 159.8000,116.0968 L 156.8000,116.0968" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,137.0726 L 515.2000,137.0726" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 159.8000,137.0726 L 156.8000,137.0726" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,158.0484 L 515.2000,158.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 159.8000,158.0484 L 156.8000,158.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,179.0242 L 515.2000,179.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 159.8000,179.0242 L 156.8000,179.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 159.8000,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 186.6667,147.5605 L 186.6667,147.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 186.6667,147.5605 L 246.4000,147.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 246.4000,147.5605 L 306.1333,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 306.1333,95.1210 L 365.8667,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 365.8667,95.1210 L 425.6000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 425.6000,200.0000 L 485.3333,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="186.6667" cy="147.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="246.4000" cy="147.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="306.1333" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="365.8667" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="425.6000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="485.3333" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 160.2192,60.7383 L 160.2192,26.5000 L 213.6141,26.5000 L 213.6141,60.7383 L 160.2192,60.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="160.7192" text-length="51.8949px" y="40.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="181.6077" text-length="10.1179px" y="58.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 219.9526,60.7383 L 219.9526,26.5000 L 273.3474,26.5000 L 273.3474,60.7383 L 219.9526,60.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="220.4526" text-length="51.8949px" y="40.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="241.3411" text-length="10.1179px" y="58.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 279.6859,60.7383 L 279.6859,26.5000 L 333.0808,26.5000 L 333.0808,60.7383 L 279.6859,60.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="280.1859" text-length="51.8949px" y="40.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="301.0744" text-length="10.1179px" y="58.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 339.4192,60.7383 L 339.4192,26.5000 L 392.8141,26.5000 L 392.8141,60.7383 L 339.4192,60.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="339.9192" text-length="51.8949px" y="40.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="360.8077" text-length="10.1179px" y="58.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 399.1526,60.7383 L 399.1526,26.5000 L 452.5474,26.5000 L 452.5474,60.7383 L 399.1526,60.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="399.6526" text-length="51.8949px" y="40.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="420.5411" text-length="10.1179px" y="58.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 458.8859,60.7383 L 458.8859,26.5000 L 512.2808,26.5000 L 512.2808,60.7383 L 458.8859,60.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="459.3859" text-length="51.8949px" y="40.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="480.2744" text-length="10.1179px" y="58.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 156.8000 95.1210 )"><path d=" M 146.1821,112.4402 L 146.1821,94.6210 L 157.8000,94.6210 L 157.8000,112.4402 L 146.1821,112.4402 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="146.6821" text-length="10.1179px" y="108.9923" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 156.8000 116.0968 )"><path d=" M 125.9464,133.4159 L 125.9464,115.5968 L 157.8000,115.5968 L 157.8000,133.4159 L 125.9464,133.4159 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="126.4464" text-length="30.3536px" y="129.9681" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 156.8000 137.0726 )"><path d=" M 125.9464,154.3917 L 125.9464,136.5726 L 157.8000,136.5726 L 157.8000,154.3917 L 125.9464,154.3917 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="126.4464" text-length="30.3536px" y="150.9439" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 156.8000 158.0484 )"><path d=" M 125.9464,175.3675 L 125.9464,157.5484 L 157.8000,157.5484 L 157.8000,175.3675 L 125.9464,175.3675 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="126.4464" text-length="30.3536px" y="171.9197" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 156.8000 179.0242 )"><path d=" M 125.9464,196.3433 L 125.9464,178.5242 L 157.8000,178.5242 L 157.8000,196.3433 L 125.9464,196.3433 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="126.4464" text-length="30.3536px" y="192.8955" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43" transform="rotate( 62.21 156.8000 200.0000 )"><path d=" M 125.9464,217.3191 L 125.9464,199.5000 L 157.8000,199.5000 L 157.8000,217.3191 L 125.9464,217.3191 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="126.4464" text-length="30.3536px" y="213.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_143.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_143.svg new file mode 100644 index 0000000..33797d4 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_143.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,200.0000 L 112.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,204.0000 L 112.0000,200.0000 L 120.0000,196.0000 L 120.0000,204.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 455.4667,25.0000 L 455.4667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 455.4667,203.0000 L 455.4667,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 395.7333,25.0000 L 395.7333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 395.7333,203.0000 L 395.7333,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 336.0000,25.0000 L 336.0000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 336.0000,203.0000 L 336.0000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 276.2667,25.0000 L 276.2667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 276.2667,203.0000 L 276.2667,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 216.5333,25.0000 L 216.5333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 216.5333,203.0000 L 216.5333,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 156.8000,25.0000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 156.8000,203.0000 L 156.8000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 515.2000,250.0000 L 515.2000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 512.2000,6.0000 L 515.2000,0.0000 L 518.2000,6.0000 L 512.2000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 515.2000,200.0000 L 518.2000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,179.0242 L 515.2000,179.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 515.2000,179.0242 L 518.2000,179.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,158.0484 L 515.2000,158.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 515.2000,158.0484 L 518.2000,158.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,137.0726 L 515.2000,137.0726" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 515.2000,137.0726 L 518.2000,137.0726" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,116.0968 L 515.2000,116.0968" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 515.2000,116.0968 L 518.2000,116.0968" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 515.2000,95.1210 L 518.2000,95.1210" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 485.3333,147.5605 L 485.3333,147.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 485.3333,147.5605 L 425.6000,147.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 425.6000,147.5605 L 365.8667,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 365.8667,200.0000 L 306.1333,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 306.1333,200.0000 L 246.4000,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 246.4000,95.1210 L 186.6667,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="485.3333" cy="147.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="425.6000" cy="147.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="365.8667" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="306.1333" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="246.4000" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="186.6667" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 458.8859,235.7383 L 458.8859,201.5000 L 512.2808,201.5000 L 512.2808,235.7383 L 458.8859,235.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="459.3859" text-length="51.8949px" y="215.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="480.2744" text-length="10.1179px" y="233.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 399.1526,235.7383 L 399.1526,201.5000 L 452.5474,201.5000 L 452.5474,235.7383 L 399.1526,235.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="399.6526" text-length="51.8949px" y="215.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="420.5411" text-length="10.1179px" y="233.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 339.4192,235.7383 L 339.4192,201.5000 L 392.8141,201.5000 L 392.8141,235.7383 L 339.4192,235.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="339.9192" text-length="51.8949px" y="215.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="360.8077" text-length="10.1179px" y="233.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 279.6859,235.7383 L 279.6859,201.5000 L 333.0808,201.5000 L 333.0808,235.7383 L 279.6859,235.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="280.1859" text-length="51.8949px" y="215.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="301.0744" text-length="10.1179px" y="233.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 219.9526,235.7383 L 219.9526,201.5000 L 273.3474,201.5000 L 273.3474,235.7383 L 219.9526,235.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="220.4526" text-length="51.8949px" y="215.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="241.3411" text-length="10.1179px" y="233.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 160.2192,235.7383 L 160.2192,201.5000 L 213.6141,201.5000 L 213.6141,235.7383 L 160.2192,235.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="160.7192" text-length="51.8949px" y="215.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="181.6077" text-length="10.1179px" y="233.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 515.2000 200.0000 )"><path d=" M 504.5821,217.3191 L 504.5821,199.5000 L 516.2000,199.5000 L 516.2000,217.3191 L 504.5821,217.3191 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="505.0821" text-length="10.1179px" y="213.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 515.2000 179.0242 )"><path d=" M 484.3464,196.3433 L 484.3464,178.5242 L 516.2000,178.5242 L 516.2000,196.3433 L 484.3464,196.3433 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="484.8464" text-length="30.3536px" y="192.8955" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 515.2000 158.0484 )"><path d=" M 484.3464,175.3675 L 484.3464,157.5484 L 516.2000,157.5484 L 516.2000,175.3675 L 484.3464,175.3675 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="484.8464" text-length="30.3536px" y="171.9197" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 515.2000 137.0726 )"><path d=" M 484.3464,154.3917 L 484.3464,136.5726 L 516.2000,136.5726 L 516.2000,154.3917 L 484.3464,154.3917 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="484.8464" text-length="30.3536px" y="150.9439" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 515.2000 116.0968 )"><path d=" M 484.3464,133.4159 L 484.3464,115.5968 L 516.2000,115.5968 L 516.2000,133.4159 L 484.3464,133.4159 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="484.8464" text-length="30.3536px" y="129.9681" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43" transform="rotate( 62.21 515.2000 95.1210 )"><path d=" M 484.3464,112.4402 L 484.3464,94.6210 L 516.2000,94.6210 L 516.2000,112.4402 L 484.3464,112.4402 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="484.8464" text-length="30.3536px" y="108.9923" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_144.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_144.svg new file mode 100644 index 0000000..29038cc --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_144.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,25.0000 L 112.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,29.0000 L 112.0000,25.0000 L 120.0000,21.0000 L 120.0000,29.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 455.4667,25.0000 L 455.4667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 455.4667,28.0000 L 455.4667,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 395.7333,25.0000 L 395.7333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 395.7333,28.0000 L 395.7333,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 336.0000,25.0000 L 336.0000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 336.0000,28.0000 L 336.0000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 276.2667,25.0000 L 276.2667,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 276.2667,28.0000 L 276.2667,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 216.5333,25.0000 L 216.5333,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 216.5333,28.0000 L 216.5333,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 156.8000,25.0000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 156.8000,28.0000 L 156.8000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 515.2000,0.0000 L 515.2000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 518.7000,243.0000 L 515.2000,250.0000 L 511.7000,243.0000 L 518.7000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 518.2000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,116.0968 L 515.2000,116.0968" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 518.2000,116.0968 L 515.2000,116.0968" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,137.0726 L 515.2000,137.0726" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 518.2000,137.0726 L 515.2000,137.0726" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,158.0484 L 515.2000,158.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 518.2000,158.0484 L 515.2000,158.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,179.0242 L 515.2000,179.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 518.2000,179.0242 L 515.2000,179.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 518.2000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 485.3333,147.5605 L 485.3333,147.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 485.3333,147.5605 L 425.6000,147.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 425.6000,147.5605 L 365.8667,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 365.8667,95.1210 L 306.1333,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 306.1333,95.1210 L 246.4000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 246.4000,200.0000 L 186.6667,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="485.3333" cy="147.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="425.6000" cy="147.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="365.8667" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="306.1333" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="246.4000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="186.6667" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 458.8859,60.7383 L 458.8859,26.5000 L 512.2808,26.5000 L 512.2808,60.7383 L 458.8859,60.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="459.3859" text-length="51.8949px" y="40.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="480.2744" text-length="10.1179px" y="58.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 399.1526,60.7383 L 399.1526,26.5000 L 452.5474,26.5000 L 452.5474,60.7383 L 399.1526,60.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="399.6526" text-length="51.8949px" y="40.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="420.5411" text-length="10.1179px" y="58.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 339.4192,60.7383 L 339.4192,26.5000 L 392.8141,26.5000 L 392.8141,60.7383 L 339.4192,60.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="339.9192" text-length="51.8949px" y="40.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="360.8077" text-length="10.1179px" y="58.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 279.6859,60.7383 L 279.6859,26.5000 L 333.0808,26.5000 L 333.0808,60.7383 L 279.6859,60.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="280.1859" text-length="51.8949px" y="40.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="301.0744" text-length="10.1179px" y="58.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 219.9526,60.7383 L 219.9526,26.5000 L 273.3474,26.5000 L 273.3474,60.7383 L 219.9526,60.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="220.4526" text-length="51.8949px" y="40.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="241.3411" text-length="10.1179px" y="58.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 160.2192,60.7383 L 160.2192,26.5000 L 213.6141,26.5000 L 213.6141,60.7383 L 160.2192,60.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="160.7192" text-length="51.8949px" y="40.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="181.6077" text-length="10.1179px" y="58.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 515.2000 95.1210 )"><path d=" M 504.5821,112.4402 L 504.5821,94.6210 L 516.2000,94.6210 L 516.2000,112.4402 L 504.5821,112.4402 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="505.0821" text-length="10.1179px" y="108.9923" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 515.2000 116.0968 )"><path d=" M 484.3464,133.4159 L 484.3464,115.5968 L 516.2000,115.5968 L 516.2000,133.4159 L 484.3464,133.4159 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="484.8464" text-length="30.3536px" y="129.9681" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 515.2000 137.0726 )"><path d=" M 484.3464,154.3917 L 484.3464,136.5726 L 516.2000,136.5726 L 516.2000,154.3917 L 484.3464,154.3917 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="484.8464" text-length="30.3536px" y="150.9439" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 515.2000 158.0484 )"><path d=" M 484.3464,175.3675 L 484.3464,157.5484 L 516.2000,157.5484 L 516.2000,175.3675 L 484.3464,175.3675 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="484.8464" text-length="30.3536px" y="171.9197" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 515.2000 179.0242 )"><path d=" M 484.3464,196.3433 L 484.3464,178.5242 L 516.2000,178.5242 L 516.2000,196.3433 L 484.3464,196.3433 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="484.8464" text-length="30.3536px" y="192.8955" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43" transform="rotate( 62.21 515.2000 200.0000 )"><path d=" M 484.3464,217.3191 L 484.3464,199.5000 L 516.2000,199.5000 L 516.2000,217.3191 L 484.3464,217.3191 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="484.8464" text-length="30.3536px" y="213.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_145.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_145.svg new file mode 100644 index 0000000..b56d60d --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_145.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,225.0000 L 560.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,221.0000 L 560.0000,225.0000 L 552.0000,229.0000 L 552.0000,221.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 240.7300,12.5000 L 240.7300,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 240.7300,222.0000 L 240.7300,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 300.1040,12.5000 L 300.1040,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 300.1040,222.0000 L 300.1040,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 359.4780,12.5000 L 359.4780,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 359.4780,222.0000 L 359.4780,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 418.8520,12.5000 L 418.8520,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 418.8520,222.0000 L 418.8520,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 478.2260,12.5000 L 478.2260,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 478.2260,222.0000 L 478.2260,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 537.6000,222.0000 L 537.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 201.6000,250.0000 L 201.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 197.6000,8.0000 L 201.6000,0.0000 L 205.6000,8.0000 L 197.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 201.6000,214.3750 L 202.6000,214.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,203.7500 L 202.6000,203.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,193.1250 L 202.6000,193.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,182.5000 L 204.6000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 201.6000,171.8750 L 202.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,161.2500 L 202.6000,161.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,150.6250 L 202.6000,150.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,140.0000 L 204.6000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 201.6000,129.3750 L 202.6000,129.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 201.6000,118.7500 L 202.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 201.6000,108.1250 L 202.6000,108.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 201.6000,97.5000 L 204.6000,97.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 201.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 201.6000,86.8750 L 202.6000,86.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 201.6000,76.2500 L 202.6000,76.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 201.6000,65.6250 L 202.6000,65.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 201.6000,55.0000 L 204.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 201.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 201.6000,44.3750 L 202.6000,44.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 201.6000,33.7500 L 202.6000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 201.6000,23.1250 L 202.6000,23.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 201.6000,12.5000 L 204.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 240.7300,118.7500 L 240.7300,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 240.7300,118.7500 L 300.1040,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 300.1040,118.7500 L 359.4780,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 359.4780,225.0000 L 418.8520,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 418.8520,225.0000 L 478.2260,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 478.2260,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="240.7300" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="300.1040" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="359.4780" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="418.8520" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="478.2260" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="537.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( -27.79 240.7300 225.0000 )"><path d=" M 221.1500,238.1000 L 221.1500,224.5000 L 241.7300,224.5000 L 241.7300,238.1000 L 221.1500,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="221.6500" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="237.0100" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( -27.79 300.1040 225.0000 )"><path d=" M 280.5240,238.1000 L 280.5240,224.5000 L 301.1040,224.5000 L 301.1040,238.1000 L 280.5240,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="281.0240" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="296.3840" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( -27.79 359.4780 225.0000 )"><path d=" M 339.8980,238.1000 L 339.8980,224.5000 L 360.4780,224.5000 L 360.4780,238.1000 L 339.8980,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="340.3980" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="355.7580" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( -27.79 418.8520 225.0000 )"><path d=" M 399.2720,238.1000 L 399.2720,224.5000 L 419.8520,224.5000 L 419.8520,238.1000 L 399.2720,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="399.7720" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="415.1320" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( -27.79 478.2260 225.0000 )"><path d=" M 458.6460,238.1000 L 458.6460,224.5000 L 479.2260,224.5000 L 479.2260,238.1000 L 458.6460,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="459.1460" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="474.5060" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( -27.79 537.6000 225.0000 )"><path d=" M 518.0200,238.1000 L 518.0200,224.5000 L 538.6000,224.5000 L 538.6000,238.1000 L 518.0200,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="518.5200" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="533.8800" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_36"><path d=" M 187.9400,186.5000 L 187.9400,179.0000 L 200.6000,179.0000 L 200.6000,186.5000 L 187.9400,186.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="188.4400" text-length="11.1600px" y="184.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 187.9400,144.0000 L 187.9400,136.5000 L 200.6000,136.5000 L 200.6000,144.0000 L 187.9400,144.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="188.4400" text-length="11.1600px" y="142.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 187.9400,101.5000 L 187.9400,94.0000 L 200.6000,94.0000 L 200.6000,101.5000 L 187.9400,101.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="188.4400" text-length="11.1600px" y="99.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 187.9400,59.0000 L 187.9400,51.5000 L 200.6000,51.5000 L 200.6000,59.0000 L 187.9400,59.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="188.4400" text-length="11.1600px" y="57.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 187.9400,16.5000 L 187.9400,9.0000 L 200.6000,9.0000 L 200.6000,16.5000 L 187.9400,16.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="188.4400" text-length="11.1600px" y="14.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_146.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_146.svg new file mode 100644 index 0000000..74915a3 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_146.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,12.5000 L 560.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,8.5000 L 560.0000,12.5000 L 552.0000,16.5000 L 552.0000,8.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 240.7300,12.5000 L 240.7300,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 240.7300,9.5000 L 240.7300,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 300.1040,12.5000 L 300.1040,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 300.1040,9.5000 L 300.1040,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 359.4780,12.5000 L 359.4780,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 359.4780,9.5000 L 359.4780,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 418.8520,12.5000 L 418.8520,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 418.8520,9.5000 L 418.8520,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 478.2260,12.5000 L 478.2260,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 478.2260,9.5000 L 478.2260,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 537.6000,9.5000 L 537.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 201.6000,0.0000 L 201.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 205.6000,242.0000 L 201.6000,250.0000 L 197.6000,242.0000 L 205.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 202.6000,23.1250 L 201.6000,23.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 202.6000,33.7500 L 201.6000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 202.6000,44.3750 L 201.6000,44.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 204.6000,55.0000 L 201.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 202.6000,65.6250 L 201.6000,65.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 202.6000,76.2500 L 201.6000,76.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 202.6000,86.8750 L 201.6000,86.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 204.6000,97.5000 L 201.6000,97.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 202.6000,108.1250 L 201.6000,108.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 202.6000,118.7500 L 201.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 202.6000,129.3750 L 201.6000,129.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 204.6000,140.0000 L 201.6000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 201.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 202.6000,150.6250 L 201.6000,150.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 202.6000,161.2500 L 201.6000,161.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 202.6000,171.8750 L 201.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 204.6000,182.5000 L 201.6000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 201.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 202.6000,193.1250 L 201.6000,193.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 202.6000,203.7500 L 201.6000,203.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 202.6000,214.3750 L 201.6000,214.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 204.6000,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 240.7300,118.7500 L 240.7300,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 240.7300,118.7500 L 300.1040,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 300.1040,118.7500 L 359.4780,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 359.4780,12.5000 L 418.8520,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 418.8520,12.5000 L 478.2260,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 478.2260,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="240.7300" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="300.1040" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="359.4780" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="418.8520" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="478.2260" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="537.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( -27.79 240.7300 12.5000 )"><path d=" M 221.1500,25.6000 L 221.1500,12.0000 L 241.7300,12.0000 L 241.7300,25.6000 L 221.1500,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="221.6500" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="237.0100" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( -27.79 300.1040 12.5000 )"><path d=" M 280.5240,25.6000 L 280.5240,12.0000 L 301.1040,12.0000 L 301.1040,25.6000 L 280.5240,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="281.0240" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="296.3840" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( -27.79 359.4780 12.5000 )"><path d=" M 339.8980,25.6000 L 339.8980,12.0000 L 360.4780,12.0000 L 360.4780,25.6000 L 339.8980,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="340.3980" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="355.7580" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( -27.79 418.8520 12.5000 )"><path d=" M 399.2720,25.6000 L 399.2720,12.0000 L 419.8520,12.0000 L 419.8520,25.6000 L 399.2720,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="399.7720" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="415.1320" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( -27.79 478.2260 12.5000 )"><path d=" M 458.6460,25.6000 L 458.6460,12.0000 L 479.2260,12.0000 L 479.2260,25.6000 L 458.6460,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="459.1460" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="474.5060" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( -27.79 537.6000 12.5000 )"><path d=" M 518.0200,25.6000 L 518.0200,12.0000 L 538.6000,12.0000 L 538.6000,25.6000 L 518.0200,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="518.5200" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="533.8800" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_36"><path d=" M 187.9400,59.0000 L 187.9400,51.5000 L 200.6000,51.5000 L 200.6000,59.0000 L 187.9400,59.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="188.4400" text-length="11.1600px" y="57.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 187.9400,101.5000 L 187.9400,94.0000 L 200.6000,94.0000 L 200.6000,101.5000 L 187.9400,101.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="188.4400" text-length="11.1600px" y="99.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 187.9400,144.0000 L 187.9400,136.5000 L 200.6000,136.5000 L 200.6000,144.0000 L 187.9400,144.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="188.4400" text-length="11.1600px" y="142.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 187.9400,186.5000 L 187.9400,179.0000 L 200.6000,179.0000 L 200.6000,186.5000 L 187.9400,186.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="188.4400" text-length="11.1600px" y="184.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 187.9400,229.0000 L 187.9400,221.5000 L 200.6000,221.5000 L 200.6000,229.0000 L 187.9400,229.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="188.4400" text-length="11.1600px" y="227.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_147.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_147.svg new file mode 100644 index 0000000..aa3620f --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_147.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,225.0000 L 112.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,229.0000 L 112.0000,225.0000 L 120.0000,221.0000 L 120.0000,229.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 537.6000,225.0000 L 537.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 478.2260,12.5000 L 478.2260,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 478.2260,225.0000 L 478.2260,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 418.8520,12.5000 L 418.8520,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 418.8520,225.0000 L 418.8520,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 359.4780,12.5000 L 359.4780,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 359.4780,225.0000 L 359.4780,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 300.1040,12.5000 L 300.1040,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 300.1040,225.0000 L 300.1040,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 240.7300,12.5000 L 240.7300,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 240.7300,225.0000 L 240.7300,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 537.6000,250.0000 L 537.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 533.6000,8.0000 L 537.6000,0.0000 L 541.6000,8.0000 L 533.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 537.6000,214.3750 L 538.6000,214.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 537.6000,203.7500 L 538.6000,203.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 537.6000,193.1250 L 538.6000,193.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 537.6000,182.5000 L 540.6000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 537.6000,171.8750 L 538.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 537.6000,161.2500 L 538.6000,161.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 537.6000,150.6250 L 538.6000,150.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 537.6000,140.0000 L 540.6000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 537.6000,129.3750 L 538.6000,129.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 537.6000,118.7500 L 538.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 537.6000,108.1250 L 538.6000,108.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 537.6000,97.5000 L 540.6000,97.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 201.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 537.6000,86.8750 L 538.6000,86.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 537.6000,76.2500 L 538.6000,76.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 537.6000,65.6250 L 538.6000,65.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 537.6000,55.0000 L 540.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 201.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 537.6000,44.3750 L 538.6000,44.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 537.6000,33.7500 L 538.6000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 537.6000,23.1250 L 538.6000,23.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 537.6000,12.5000 L 540.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 537.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 537.6000,118.7500 L 478.2260,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 478.2260,118.7500 L 418.8520,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 418.8520,225.0000 L 359.4780,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 359.4780,225.0000 L 300.1040,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 300.1040,12.5000 L 240.7300,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="537.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="478.2260" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="418.8520" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="359.4780" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="300.1040" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="240.7300" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( 332.21 537.6000 225.0000 )"><path d=" M 515.7676,238.1000 L 515.7676,224.5000 L 536.3476,224.5000 L 536.3476,238.1000 L 515.7676,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="516.2676" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="516.2676" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( 332.21 478.2260 225.0000 )"><path d=" M 456.3936,238.1000 L 456.3936,224.5000 L 476.9736,224.5000 L 476.9736,238.1000 L 456.3936,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="456.8936" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="456.8936" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( 332.21 418.8520 225.0000 )"><path d=" M 397.0196,238.1000 L 397.0196,224.5000 L 417.5996,224.5000 L 417.5996,238.1000 L 397.0196,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="397.5196" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="397.5196" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( 332.21 359.4780 225.0000 )"><path d=" M 337.6456,238.1000 L 337.6456,224.5000 L 358.2256,224.5000 L 358.2256,238.1000 L 337.6456,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="338.1456" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="338.1456" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( 332.21 300.1040 225.0000 )"><path d=" M 278.2716,238.1000 L 278.2716,224.5000 L 298.8516,224.5000 L 298.8516,238.1000 L 278.2716,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="278.7716" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="278.7716" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( 332.21 240.7300 225.0000 )"><path d=" M 218.8976,238.1000 L 218.8976,224.5000 L 239.4776,224.5000 L 239.4776,238.1000 L 218.8976,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="219.3976" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="219.3976" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_36"><path d=" M 523.9400,186.5000 L 523.9400,179.0000 L 536.6000,179.0000 L 536.6000,186.5000 L 523.9400,186.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="524.4400" text-length="11.1600px" y="184.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 523.9400,144.0000 L 523.9400,136.5000 L 536.6000,136.5000 L 536.6000,144.0000 L 523.9400,144.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="524.4400" text-length="11.1600px" y="142.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 523.9400,101.5000 L 523.9400,94.0000 L 536.6000,94.0000 L 536.6000,101.5000 L 523.9400,101.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="524.4400" text-length="11.1600px" y="99.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 523.9400,59.0000 L 523.9400,51.5000 L 536.6000,51.5000 L 536.6000,59.0000 L 523.9400,59.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="524.4400" text-length="11.1600px" y="57.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 523.9400,16.5000 L 523.9400,9.0000 L 536.6000,9.0000 L 536.6000,16.5000 L 523.9400,16.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="524.4400" text-length="11.1600px" y="14.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_148.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_148.svg new file mode 100644 index 0000000..8370d8c --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_148.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,12.5000 L 112.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,16.5000 L 112.0000,12.5000 L 120.0000,8.5000 L 120.0000,16.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 537.6000,12.5000 L 537.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 478.2260,12.5000 L 478.2260,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 478.2260,12.5000 L 478.2260,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 418.8520,12.5000 L 418.8520,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 418.8520,12.5000 L 418.8520,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 359.4780,12.5000 L 359.4780,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 359.4780,12.5000 L 359.4780,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 300.1040,12.5000 L 300.1040,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 300.1040,12.5000 L 300.1040,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 240.7300,12.5000 L 240.7300,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 240.7300,12.5000 L 240.7300,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 537.6000,0.0000 L 537.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 541.6000,242.0000 L 537.6000,250.0000 L 533.6000,242.0000 L 541.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 538.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 538.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 538.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 540.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 538.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 538.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 538.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 540.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 538.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 538.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 538.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 540.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 201.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 538.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 538.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 538.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 540.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 201.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 538.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 538.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 538.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 540.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 537.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 537.6000,118.7500 L 478.2260,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 478.2260,118.7500 L 418.8520,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 418.8520,12.5000 L 359.4780,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 359.4780,12.5000 L 300.1040,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 300.1040,225.0000 L 240.7300,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="537.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="478.2260" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="418.8520" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="359.4780" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="300.1040" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="240.7300" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( 332.21 537.6000 12.5000 )"><path d=" M 515.7676,25.6000 L 515.7676,12.0000 L 536.3476,12.0000 L 536.3476,25.6000 L 515.7676,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="516.2676" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="516.2676" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( 332.21 478.2260 12.5000 )"><path d=" M 456.3936,25.6000 L 456.3936,12.0000 L 476.9736,12.0000 L 476.9736,25.6000 L 456.3936,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="456.8936" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="456.8936" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( 332.21 418.8520 12.5000 )"><path d=" M 397.0196,25.6000 L 397.0196,12.0000 L 417.5996,12.0000 L 417.5996,25.6000 L 397.0196,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="397.5196" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="397.5196" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( 332.21 359.4780 12.5000 )"><path d=" M 337.6456,25.6000 L 337.6456,12.0000 L 358.2256,12.0000 L 358.2256,25.6000 L 337.6456,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="338.1456" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="338.1456" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( 332.21 300.1040 12.5000 )"><path d=" M 278.2716,25.6000 L 278.2716,12.0000 L 298.8516,12.0000 L 298.8516,25.6000 L 278.2716,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="278.7716" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="278.7716" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( 332.21 240.7300 12.5000 )"><path d=" M 218.8976,25.6000 L 218.8976,12.0000 L 239.4776,12.0000 L 239.4776,25.6000 L 218.8976,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="219.3976" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="219.3976" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_36"><path d=" M 523.9400,59.0000 L 523.9400,51.5000 L 536.6000,51.5000 L 536.6000,59.0000 L 523.9400,59.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="524.4400" text-length="11.1600px" y="57.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 523.9400,101.5000 L 523.9400,94.0000 L 536.6000,94.0000 L 536.6000,101.5000 L 523.9400,101.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="524.4400" text-length="11.1600px" y="99.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 523.9400,144.0000 L 523.9400,136.5000 L 536.6000,136.5000 L 536.6000,144.0000 L 523.9400,144.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="524.4400" text-length="11.1600px" y="142.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 523.9400,186.5000 L 523.9400,179.0000 L 536.6000,179.0000 L 536.6000,186.5000 L 523.9400,186.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="524.4400" text-length="11.1600px" y="184.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 523.9400,229.0000 L 523.9400,221.5000 L 536.6000,221.5000 L 536.6000,229.0000 L 523.9400,229.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="524.4400" text-length="11.1600px" y="227.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_149.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_149.svg new file mode 100644 index 0000000..336103d --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_149.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,225.0000 L 560.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,221.0000 L 560.0000,225.0000 L 552.0000,229.0000 L 552.0000,221.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 240.7300,25.0000 L 240.7300,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 240.7300,222.0000 L 240.7300,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 295.6240,25.0000 L 295.6240,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 295.6240,222.0000 L 295.6240,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 350.5180,25.0000 L 350.5180,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 350.5180,222.0000 L 350.5180,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 405.4120,25.0000 L 405.4120,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 405.4120,222.0000 L 405.4120,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 460.3060,25.0000 L 460.3060,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 460.3060,222.0000 L 460.3060,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 515.2000,222.0000 L 515.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 201.6000,250.0000 L 201.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 197.6000,8.0000 L 201.6000,0.0000 L 205.6000,8.0000 L 197.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 201.6000,215.0000 L 202.6000,215.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,205.0000 L 202.6000,205.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,195.0000 L 202.6000,195.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,185.0000 L 204.6000,185.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 201.6000,175.0000 L 202.6000,175.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,165.0000 L 202.6000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,155.0000 L 202.6000,155.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,145.0000 L 204.6000,145.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 201.6000,135.0000 L 202.6000,135.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 201.6000,125.0000 L 202.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 201.6000,115.0000 L 202.6000,115.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 201.6000,105.0000 L 204.6000,105.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 201.6000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 201.6000,95.0000 L 202.6000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 201.6000,85.0000 L 202.6000,85.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 201.6000,75.0000 L 202.6000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 201.6000,65.0000 L 204.6000,65.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 201.6000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 201.6000,55.0000 L 202.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 201.6000,45.0000 L 202.6000,45.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 201.6000,35.0000 L 202.6000,35.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 201.6000,25.0000 L 204.6000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 240.7300,125.0000 L 240.7300,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 240.7300,125.0000 L 295.6240,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 295.6240,125.0000 L 350.5180,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 350.5180,225.0000 L 405.4120,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 405.4120,225.0000 L 460.3060,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 460.3060,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="240.7300" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="295.6240" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="350.5180" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="405.4120" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="460.3060" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="515.2000" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( -27.79 240.7300 225.0000 )"><path d=" M 221.1500,238.1000 L 221.1500,224.5000 L 241.7300,224.5000 L 241.7300,238.1000 L 221.1500,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="221.6500" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="237.0100" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( -27.79 295.6240 225.0000 )"><path d=" M 276.0440,238.1000 L 276.0440,224.5000 L 296.6240,224.5000 L 296.6240,238.1000 L 276.0440,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="276.5440" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="291.9040" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( -27.79 350.5180 225.0000 )"><path d=" M 330.9380,238.1000 L 330.9380,224.5000 L 351.5180,224.5000 L 351.5180,238.1000 L 330.9380,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="331.4380" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="346.7980" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( -27.79 405.4120 225.0000 )"><path d=" M 385.8320,238.1000 L 385.8320,224.5000 L 406.4120,224.5000 L 406.4120,238.1000 L 385.8320,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="386.3320" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="401.6920" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( -27.79 460.3060 225.0000 )"><path d=" M 440.7260,238.1000 L 440.7260,224.5000 L 461.3060,224.5000 L 461.3060,238.1000 L 440.7260,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="441.2260" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="456.5860" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( -27.79 515.2000 225.0000 )"><path d=" M 495.6200,238.1000 L 495.6200,224.5000 L 516.2000,224.5000 L 516.2000,238.1000 L 495.6200,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="496.1200" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="511.4800" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_36"><path d=" M 187.9400,189.0000 L 187.9400,181.5000 L 200.6000,181.5000 L 200.6000,189.0000 L 187.9400,189.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="188.4400" text-length="11.1600px" y="187.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 187.9400,149.0000 L 187.9400,141.5000 L 200.6000,141.5000 L 200.6000,149.0000 L 187.9400,149.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="188.4400" text-length="11.1600px" y="147.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 187.9400,109.0000 L 187.9400,101.5000 L 200.6000,101.5000 L 200.6000,109.0000 L 187.9400,109.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="188.4400" text-length="11.1600px" y="107.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 187.9400,69.0000 L 187.9400,61.5000 L 200.6000,61.5000 L 200.6000,69.0000 L 187.9400,69.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="188.4400" text-length="11.1600px" y="67.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 187.9400,29.0000 L 187.9400,21.5000 L 200.6000,21.5000 L 200.6000,29.0000 L 187.9400,29.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="188.4400" text-length="11.1600px" y="27.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_15.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_15.svg new file mode 100644 index 0000000..a34c4e5 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_15.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,200.0000 L 112.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,204.0000 L 112.0000,200.0000 L 120.0000,196.0000 L 120.0000,204.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 443.5200,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 443.5200,200.0000 L 443.5200,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 371.8400,25.0000 L 371.8400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 371.8400,200.0000 L 371.8400,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 300.1600,25.0000 L 300.1600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 300.1600,200.0000 L 300.1600,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 228.4800,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 228.4800,200.0000 L 228.4800,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 156.8000,25.0000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 156.8000,200.0000 L 156.8000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 515.2000,250.0000 L 515.2000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 512.2000,6.0000 L 515.2000,0.0000 L 518.2000,6.0000 L 512.2000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 156.8000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 515.2000,191.2500 L 516.2000,191.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 515.2000,182.5000 L 516.2000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 515.2000,173.7500 L 516.2000,173.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 515.2000,165.0000 L 518.2000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 515.2000,156.2500 L 516.2000,156.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 515.2000,147.5000 L 516.2000,147.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 515.2000,138.7500 L 516.2000,138.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 515.2000,130.0000 L 518.2000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 515.2000,121.2500 L 516.2000,121.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 515.2000,112.5000 L 516.2000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 515.2000,103.7500 L 516.2000,103.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 515.2000,95.0000 L 518.2000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 515.2000,86.2500 L 516.2000,86.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 515.2000,77.5000 L 516.2000,77.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 515.2000,68.7500 L 516.2000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 515.2000,60.0000 L 518.2000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 515.2000,51.2500 L 516.2000,51.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 515.2000,42.5000 L 516.2000,42.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 515.2000,33.7500 L 516.2000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 515.2000,25.0000 L 518.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 515.2000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 515.2000,112.5000 L 443.5200,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 443.5200,112.5000 L 371.8400,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 371.8400,200.0000 L 300.1600,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 300.1600,200.0000 L 228.4800,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 228.4800,25.0000 L 156.8000,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="515.2000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="443.5200" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="371.8400" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="300.1600" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="228.4800" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="156.8000" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 421.5550,230.1000 L 421.5550,201.5000 L 465.9850,201.5000 L 465.9850,230.1000 L 421.5550,230.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_10_text" x="422.0550" text-length="42.9300px" y="213.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_10_text" x="439.3350" text-length="8.3700px" y="228.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_13"><path d=" M 349.8750,230.1000 L 349.8750,201.5000 L 394.3050,201.5000 L 394.3050,230.1000 L 349.8750,230.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_13_text" x="350.3750" text-length="42.9300px" y="213.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_13_text" x="367.6550" text-length="8.3700px" y="228.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_16"><path d=" M 278.1950,230.1000 L 278.1950,201.5000 L 322.6250,201.5000 L 322.6250,230.1000 L 278.1950,230.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_16_text" x="278.6950" text-length="42.9300px" y="213.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_16_text" x="295.9750" text-length="8.3700px" y="228.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_19"><path d=" M 206.5150,230.1000 L 206.5150,201.5000 L 250.9450,201.5000 L 250.9450,230.1000 L 206.5150,230.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_19_text" x="207.0150" text-length="42.9300px" y="213.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_19_text" x="224.2950" text-length="8.3700px" y="228.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_22"><path d=" M 134.8350,230.1000 L 134.8350,201.5000 L 179.2650,201.5000 L 179.2650,230.1000 L 134.8350,230.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_22_text" x="135.3350" text-length="42.9300px" y="213.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="152.6150" text-length="8.3700px" y="228.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25"><path d=" M 504.3300,199.0000 L 504.3300,184.0000 L 514.2000,184.0000 L 514.2000,199.0000 L 504.3300,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_25_text" x="504.8300" text-length="8.3700px" y="195.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_34"><path d=" M 487.5900,164.0000 L 487.5900,149.0000 L 514.2000,149.0000 L 514.2000,164.0000 L 487.5900,164.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="488.0900" text-length="25.1100px" y="160.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 487.5900,129.0000 L 487.5900,114.0000 L 514.2000,114.0000 L 514.2000,129.0000 L 487.5900,129.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="488.0900" text-length="25.1100px" y="125.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 487.5900,94.0000 L 487.5900,79.0000 L 514.2000,79.0000 L 514.2000,94.0000 L 487.5900,94.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="488.0900" text-length="25.1100px" y="90.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 487.5900,59.0000 L 487.5900,44.0000 L 514.2000,44.0000 L 514.2000,59.0000 L 487.5900,59.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="488.0900" text-length="25.1100px" y="55.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 487.5900,41.5000 L 487.5900,26.5000 L 514.2000,26.5000 L 514.2000,41.5000 L 487.5900,41.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="488.0900" text-length="25.1100px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_150.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_150.svg new file mode 100644 index 0000000..9d4ab6a --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_150.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,25.0000 L 560.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,21.0000 L 560.0000,25.0000 L 552.0000,29.0000 L 552.0000,21.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 240.7300,25.0000 L 240.7300,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 240.7300,22.0000 L 240.7300,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 295.6240,25.0000 L 295.6240,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 295.6240,22.0000 L 295.6240,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 350.5180,25.0000 L 350.5180,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 350.5180,22.0000 L 350.5180,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 405.4120,25.0000 L 405.4120,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 405.4120,22.0000 L 405.4120,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 460.3060,25.0000 L 460.3060,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 460.3060,22.0000 L 460.3060,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 515.2000,22.0000 L 515.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 201.6000,0.0000 L 201.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 205.6000,242.0000 L 201.6000,250.0000 L 197.6000,242.0000 L 205.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 202.6000,35.0000 L 201.6000,35.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 202.6000,45.0000 L 201.6000,45.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 202.6000,55.0000 L 201.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 204.6000,65.0000 L 201.6000,65.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 202.6000,75.0000 L 201.6000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 202.6000,85.0000 L 201.6000,85.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 202.6000,95.0000 L 201.6000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 204.6000,105.0000 L 201.6000,105.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 202.6000,115.0000 L 201.6000,115.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 202.6000,125.0000 L 201.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 202.6000,135.0000 L 201.6000,135.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 204.6000,145.0000 L 201.6000,145.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 201.6000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 202.6000,155.0000 L 201.6000,155.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 202.6000,165.0000 L 201.6000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 202.6000,175.0000 L 201.6000,175.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 204.6000,185.0000 L 201.6000,185.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 201.6000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 202.6000,195.0000 L 201.6000,195.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 202.6000,205.0000 L 201.6000,205.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 202.6000,215.0000 L 201.6000,215.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 204.6000,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 240.7300,125.0000 L 240.7300,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 240.7300,125.0000 L 295.6240,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 295.6240,125.0000 L 350.5180,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 350.5180,25.0000 L 405.4120,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 405.4120,25.0000 L 460.3060,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 460.3060,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="240.7300" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="295.6240" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="350.5180" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="405.4120" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="460.3060" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="515.2000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( -27.79 240.7300 25.0000 )"><path d=" M 221.1500,38.1000 L 221.1500,24.5000 L 241.7300,24.5000 L 241.7300,38.1000 L 221.1500,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="221.6500" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="237.0100" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( -27.79 295.6240 25.0000 )"><path d=" M 276.0440,38.1000 L 276.0440,24.5000 L 296.6240,24.5000 L 296.6240,38.1000 L 276.0440,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="276.5440" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="291.9040" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( -27.79 350.5180 25.0000 )"><path d=" M 330.9380,38.1000 L 330.9380,24.5000 L 351.5180,24.5000 L 351.5180,38.1000 L 330.9380,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="331.4380" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="346.7980" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( -27.79 405.4120 25.0000 )"><path d=" M 385.8320,38.1000 L 385.8320,24.5000 L 406.4120,24.5000 L 406.4120,38.1000 L 385.8320,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="386.3320" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="401.6920" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( -27.79 460.3060 25.0000 )"><path d=" M 440.7260,38.1000 L 440.7260,24.5000 L 461.3060,24.5000 L 461.3060,38.1000 L 440.7260,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="441.2260" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="456.5860" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( -27.79 515.2000 25.0000 )"><path d=" M 495.6200,38.1000 L 495.6200,24.5000 L 516.2000,24.5000 L 516.2000,38.1000 L 495.6200,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="496.1200" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="511.4800" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_36"><path d=" M 187.9400,69.0000 L 187.9400,61.5000 L 200.6000,61.5000 L 200.6000,69.0000 L 187.9400,69.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="188.4400" text-length="11.1600px" y="67.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 187.9400,109.0000 L 187.9400,101.5000 L 200.6000,101.5000 L 200.6000,109.0000 L 187.9400,109.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="188.4400" text-length="11.1600px" y="107.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 187.9400,149.0000 L 187.9400,141.5000 L 200.6000,141.5000 L 200.6000,149.0000 L 187.9400,149.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="188.4400" text-length="11.1600px" y="147.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 187.9400,189.0000 L 187.9400,181.5000 L 200.6000,181.5000 L 200.6000,189.0000 L 187.9400,189.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="188.4400" text-length="11.1600px" y="187.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 187.9400,229.0000 L 187.9400,221.5000 L 200.6000,221.5000 L 200.6000,229.0000 L 187.9400,229.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="188.4400" text-length="11.1600px" y="227.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_151.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_151.svg new file mode 100644 index 0000000..beebc05 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_151.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,225.0000 L 112.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,229.0000 L 112.0000,225.0000 L 120.0000,221.0000 L 120.0000,229.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 515.2000,225.0000 L 515.2000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 460.3060,25.0000 L 460.3060,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 460.3060,225.0000 L 460.3060,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 405.4120,25.0000 L 405.4120,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 405.4120,225.0000 L 405.4120,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 350.5180,25.0000 L 350.5180,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 350.5180,225.0000 L 350.5180,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 295.6240,25.0000 L 295.6240,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 295.6240,225.0000 L 295.6240,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 240.7300,25.0000 L 240.7300,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 240.7300,225.0000 L 240.7300,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 515.2000,250.0000 L 515.2000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 511.2000,8.0000 L 515.2000,0.0000 L 519.2000,8.0000 L 511.2000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 515.2000,215.0000 L 516.2000,215.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 515.2000,205.0000 L 516.2000,205.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 515.2000,195.0000 L 516.2000,195.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 515.2000,185.0000 L 518.2000,185.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 515.2000,175.0000 L 516.2000,175.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 515.2000,165.0000 L 516.2000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 515.2000,155.0000 L 516.2000,155.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 515.2000,145.0000 L 518.2000,145.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 515.2000,135.0000 L 516.2000,135.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 515.2000,125.0000 L 516.2000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 515.2000,115.0000 L 516.2000,115.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 515.2000,105.0000 L 518.2000,105.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 201.6000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 515.2000,95.0000 L 516.2000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 515.2000,85.0000 L 516.2000,85.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 515.2000,75.0000 L 516.2000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 515.2000,65.0000 L 518.2000,65.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 201.6000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 515.2000,55.0000 L 516.2000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 515.2000,45.0000 L 516.2000,45.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 515.2000,35.0000 L 516.2000,35.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 515.2000,25.0000 L 518.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 515.2000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 515.2000,125.0000 L 460.3060,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 460.3060,125.0000 L 405.4120,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 405.4120,225.0000 L 350.5180,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 350.5180,225.0000 L 295.6240,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 295.6240,25.0000 L 240.7300,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="515.2000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="460.3060" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="405.4120" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="350.5180" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="295.6240" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="240.7300" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( 332.21 515.2000 225.0000 )"><path d=" M 493.4992,238.1000 L 493.4992,224.5000 L 514.0792,224.5000 L 514.0792,238.1000 L 493.4992,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="493.9992" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="493.9992" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( 332.21 460.3060 225.0000 )"><path d=" M 438.6052,238.1000 L 438.6052,224.5000 L 459.1852,224.5000 L 459.1852,238.1000 L 438.6052,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="439.1052" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="439.1052" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( 332.21 405.4120 225.0000 )"><path d=" M 383.7112,238.1000 L 383.7112,224.5000 L 404.2912,224.5000 L 404.2912,238.1000 L 383.7112,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="384.2112" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="384.2112" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( 332.21 350.5180 225.0000 )"><path d=" M 328.8172,238.1000 L 328.8172,224.5000 L 349.3972,224.5000 L 349.3972,238.1000 L 328.8172,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="329.3172" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="329.3172" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( 332.21 295.6240 225.0000 )"><path d=" M 273.9232,238.1000 L 273.9232,224.5000 L 294.5032,224.5000 L 294.5032,238.1000 L 273.9232,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="274.4232" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="274.4232" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( 332.21 240.7300 225.0000 )"><path d=" M 219.0293,238.1000 L 219.0293,224.5000 L 239.6093,224.5000 L 239.6093,238.1000 L 219.0293,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="219.5293" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="219.5293" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_36"><path d=" M 501.5400,189.0000 L 501.5400,181.5000 L 514.2000,181.5000 L 514.2000,189.0000 L 501.5400,189.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="502.0400" text-length="11.1600px" y="187.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 501.5400,149.0000 L 501.5400,141.5000 L 514.2000,141.5000 L 514.2000,149.0000 L 501.5400,149.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="502.0400" text-length="11.1600px" y="147.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 501.5400,109.0000 L 501.5400,101.5000 L 514.2000,101.5000 L 514.2000,109.0000 L 501.5400,109.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="502.0400" text-length="11.1600px" y="107.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 501.5400,69.0000 L 501.5400,61.5000 L 514.2000,61.5000 L 514.2000,69.0000 L 501.5400,69.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="502.0400" text-length="11.1600px" y="67.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 501.5400,29.0000 L 501.5400,21.5000 L 514.2000,21.5000 L 514.2000,29.0000 L 501.5400,29.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="502.0400" text-length="11.1600px" y="27.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_152.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_152.svg new file mode 100644 index 0000000..ef26b06 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_152.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,25.0000 L 112.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,29.0000 L 112.0000,25.0000 L 120.0000,21.0000 L 120.0000,29.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 515.2000,25.0000 L 515.2000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 460.3060,25.0000 L 460.3060,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 460.3060,25.0000 L 460.3060,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 405.4120,25.0000 L 405.4120,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 405.4120,25.0000 L 405.4120,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 350.5180,25.0000 L 350.5180,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 350.5180,25.0000 L 350.5180,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 295.6240,25.0000 L 295.6240,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 295.6240,25.0000 L 295.6240,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 240.7300,25.0000 L 240.7300,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 240.7300,25.0000 L 240.7300,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 515.2000,0.0000 L 515.2000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 519.2000,242.0000 L 515.2000,250.0000 L 511.2000,242.0000 L 519.2000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 516.2000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 516.2000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 516.2000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 518.2000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 516.2000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 516.2000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 516.2000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 518.2000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 516.2000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 516.2000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 516.2000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 518.2000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 201.6000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 516.2000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 516.2000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 516.2000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 518.2000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 201.6000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 516.2000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 516.2000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 516.2000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 518.2000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 515.2000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 515.2000,125.0000 L 460.3060,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 460.3060,125.0000 L 405.4120,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 405.4120,25.0000 L 350.5180,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 350.5180,25.0000 L 295.6240,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 295.6240,225.0000 L 240.7300,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="515.2000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="460.3060" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="405.4120" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="350.5180" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="295.6240" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="240.7300" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( 332.21 515.2000 25.0000 )"><path d=" M 493.4992,38.1000 L 493.4992,24.5000 L 514.0792,24.5000 L 514.0792,38.1000 L 493.4992,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="493.9992" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="493.9992" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( 332.21 460.3060 25.0000 )"><path d=" M 438.6052,38.1000 L 438.6052,24.5000 L 459.1852,24.5000 L 459.1852,38.1000 L 438.6052,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="439.1052" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="439.1052" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( 332.21 405.4120 25.0000 )"><path d=" M 383.7112,38.1000 L 383.7112,24.5000 L 404.2912,24.5000 L 404.2912,38.1000 L 383.7112,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="384.2112" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="384.2112" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( 332.21 350.5180 25.0000 )"><path d=" M 328.8172,38.1000 L 328.8172,24.5000 L 349.3972,24.5000 L 349.3972,38.1000 L 328.8172,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="329.3172" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="329.3172" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( 332.21 295.6240 25.0000 )"><path d=" M 273.9232,38.1000 L 273.9232,24.5000 L 294.5032,24.5000 L 294.5032,38.1000 L 273.9232,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="274.4232" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="274.4232" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( 332.21 240.7300 25.0000 )"><path d=" M 219.0293,38.1000 L 219.0293,24.5000 L 239.6093,24.5000 L 239.6093,38.1000 L 219.0293,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="219.5293" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="219.5293" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_36"><path d=" M 501.5400,69.0000 L 501.5400,61.5000 L 514.2000,61.5000 L 514.2000,69.0000 L 501.5400,69.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="502.0400" text-length="11.1600px" y="67.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 501.5400,109.0000 L 501.5400,101.5000 L 514.2000,101.5000 L 514.2000,109.0000 L 501.5400,109.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="502.0400" text-length="11.1600px" y="107.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 501.5400,149.0000 L 501.5400,141.5000 L 514.2000,141.5000 L 514.2000,149.0000 L 501.5400,149.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="502.0400" text-length="11.1600px" y="147.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 501.5400,189.0000 L 501.5400,181.5000 L 514.2000,181.5000 L 514.2000,189.0000 L 501.5400,189.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="502.0400" text-length="11.1600px" y="187.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 501.5400,229.0000 L 501.5400,221.5000 L 514.2000,221.5000 L 514.2000,229.0000 L 501.5400,229.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="502.0400" text-length="11.1600px" y="227.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_153.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_153.svg new file mode 100644 index 0000000..8277d70 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_153.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,200.0000 L 560.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,196.0000 L 560.0000,200.0000 L 552.0000,204.0000 L 552.0000,196.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 235.0601,12.5000 L 235.0601,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 235.0601,197.0000 L 235.0601,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 295.5680,12.5000 L 295.5680,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 295.5680,197.0000 L 295.5680,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 356.0760,12.5000 L 356.0760,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 356.0760,197.0000 L 356.0760,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 416.5840,12.5000 L 416.5840,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 416.5840,197.0000 L 416.5840,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 477.0920,12.5000 L 477.0920,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 477.0920,197.0000 L 477.0920,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 537.6000,197.0000 L 537.6000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 156.8000,250.0000 L 156.8000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 153.8000,6.0000 L 156.8000,0.0000 L 159.8000,6.0000 L 153.8000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 156.8000,190.6250 L 157.8000,190.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,181.2500 L 157.8000,181.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,171.8750 L 157.8000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,162.5000 L 159.8000,162.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 156.8000,153.1250 L 157.8000,153.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,143.7500 L 157.8000,143.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,134.3750 L 157.8000,134.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,125.0000 L 159.8000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 156.8000,115.6250 L 157.8000,115.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 156.8000,106.2500 L 157.8000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 156.8000,96.8750 L 157.8000,96.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 156.8000,87.5000 L 159.8000,87.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 156.8000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 156.8000,78.1250 L 157.8000,78.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 156.8000,68.7500 L 157.8000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 156.8000,59.3750 L 157.8000,59.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 156.8000,50.0000 L 159.8000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 156.8000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 156.8000,40.6250 L 157.8000,40.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 156.8000,31.2500 L 157.8000,31.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 156.8000,21.8750 L 157.8000,21.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 156.8000,12.5000 L 159.8000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 235.0601,106.2500 L 235.0601,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 235.0601,106.2500 L 295.5680,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 295.5680,106.2500 L 356.0760,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 356.0760,200.0000 L 416.5840,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 416.5840,200.0000 L 477.0920,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 477.0920,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="235.0601" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="295.5680" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="356.0760" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="416.5840" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="477.0920" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="537.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( -27.79 235.0601 200.0000 )"><path d=" M 205.9401,219.1000 L 205.9401,199.5000 L 236.0601,199.5000 L 236.0601,219.1000 L 205.9401,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="206.4401" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="229.4801" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( -27.79 295.5680 200.0000 )"><path d=" M 266.4480,219.1000 L 266.4480,199.5000 L 296.5680,199.5000 L 296.5680,219.1000 L 266.4480,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="266.9480" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="289.9880" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( -27.79 356.0760 200.0000 )"><path d=" M 326.9560,219.1000 L 326.9560,199.5000 L 357.0760,199.5000 L 357.0760,219.1000 L 326.9560,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="327.4560" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="350.4960" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( -27.79 416.5840 200.0000 )"><path d=" M 387.4640,219.1000 L 387.4640,199.5000 L 417.5840,199.5000 L 417.5840,219.1000 L 387.4640,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="387.9640" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="411.0040" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( -27.79 477.0920 200.0000 )"><path d=" M 447.9720,219.1000 L 447.9720,199.5000 L 478.0920,199.5000 L 478.0920,219.1000 L 447.9720,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="448.4720" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="471.5120" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( -27.79 537.6000 200.0000 )"><path d=" M 508.4800,219.1000 L 508.4800,199.5000 L 538.6000,199.5000 L 538.6000,219.1000 L 508.4800,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="508.9800" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="532.0200" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_36"><path d=" M 137.5600,168.0000 L 137.5600,157.5000 L 155.8000,157.5000 L 155.8000,168.0000 L 137.5600,168.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="138.0600" text-length="16.7400px" y="165.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 137.5600,130.5000 L 137.5600,120.0000 L 155.8000,120.0000 L 155.8000,130.5000 L 137.5600,130.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="138.0600" text-length="16.7400px" y="128.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 137.5600,93.0000 L 137.5600,82.5000 L 155.8000,82.5000 L 155.8000,93.0000 L 137.5600,93.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="138.0600" text-length="16.7400px" y="90.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 137.5600,55.5000 L 137.5600,45.0000 L 155.8000,45.0000 L 155.8000,55.5000 L 137.5600,55.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="138.0600" text-length="16.7400px" y="53.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 137.5600,18.0000 L 137.5600,7.5000 L 155.8000,7.5000 L 155.8000,18.0000 L 137.5600,18.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="138.0600" text-length="16.7400px" y="15.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_154.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_154.svg new file mode 100644 index 0000000..5e6c9e6 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_154.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,12.5000 L 560.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,8.5000 L 560.0000,12.5000 L 552.0000,16.5000 L 552.0000,8.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 235.0601,12.5000 L 235.0601,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 235.0601,9.5000 L 235.0601,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 295.5680,12.5000 L 295.5680,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 295.5680,9.5000 L 295.5680,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 356.0760,12.5000 L 356.0760,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 356.0760,9.5000 L 356.0760,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 416.5840,12.5000 L 416.5840,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 416.5840,9.5000 L 416.5840,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 477.0920,12.5000 L 477.0920,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 477.0920,9.5000 L 477.0920,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 537.6000,9.5000 L 537.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 156.8000,0.0000 L 156.8000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 160.3000,243.0000 L 156.8000,250.0000 L 153.3000,243.0000 L 160.3000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 157.8000,21.8750 L 156.8000,21.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 157.8000,31.2500 L 156.8000,31.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 157.8000,40.6250 L 156.8000,40.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 159.8000,50.0000 L 156.8000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 157.8000,59.3750 L 156.8000,59.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 157.8000,68.7500 L 156.8000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 157.8000,78.1250 L 156.8000,78.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 159.8000,87.5000 L 156.8000,87.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 157.8000,96.8750 L 156.8000,96.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 157.8000,106.2500 L 156.8000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 157.8000,115.6250 L 156.8000,115.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 159.8000,125.0000 L 156.8000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 156.8000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 157.8000,134.3750 L 156.8000,134.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 157.8000,143.7500 L 156.8000,143.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 157.8000,153.1250 L 156.8000,153.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 159.8000,162.5000 L 156.8000,162.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 156.8000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 157.8000,171.8750 L 156.8000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 157.8000,181.2500 L 156.8000,181.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 157.8000,190.6250 L 156.8000,190.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 159.8000,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 235.0601,106.2500 L 235.0601,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 235.0601,106.2500 L 295.5680,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 295.5680,106.2500 L 356.0760,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 356.0760,12.5000 L 416.5840,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 416.5840,12.5000 L 477.0920,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 477.0920,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="235.0601" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="295.5680" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="356.0760" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="416.5840" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="477.0920" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="537.6000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( -27.79 235.0601 12.5000 )"><path d=" M 205.9401,31.6000 L 205.9401,12.0000 L 236.0601,12.0000 L 236.0601,31.6000 L 205.9401,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="206.4401" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="229.4801" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( -27.79 295.5680 12.5000 )"><path d=" M 266.4480,31.6000 L 266.4480,12.0000 L 296.5680,12.0000 L 296.5680,31.6000 L 266.4480,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="266.9480" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="289.9880" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( -27.79 356.0760 12.5000 )"><path d=" M 326.9560,31.6000 L 326.9560,12.0000 L 357.0760,12.0000 L 357.0760,31.6000 L 326.9560,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="327.4560" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="350.4960" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( -27.79 416.5840 12.5000 )"><path d=" M 387.4640,31.6000 L 387.4640,12.0000 L 417.5840,12.0000 L 417.5840,31.6000 L 387.4640,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="387.9640" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="411.0040" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( -27.79 477.0920 12.5000 )"><path d=" M 447.9720,31.6000 L 447.9720,12.0000 L 478.0920,12.0000 L 478.0920,31.6000 L 447.9720,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="448.4720" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="471.5120" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( -27.79 537.6000 12.5000 )"><path d=" M 508.4800,31.6000 L 508.4800,12.0000 L 538.6000,12.0000 L 538.6000,31.6000 L 508.4800,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="508.9800" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="532.0200" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_36"><path d=" M 137.5600,55.5000 L 137.5600,45.0000 L 155.8000,45.0000 L 155.8000,55.5000 L 137.5600,55.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="138.0600" text-length="16.7400px" y="53.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 137.5600,93.0000 L 137.5600,82.5000 L 155.8000,82.5000 L 155.8000,93.0000 L 137.5600,93.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="138.0600" text-length="16.7400px" y="90.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 137.5600,130.5000 L 137.5600,120.0000 L 155.8000,120.0000 L 155.8000,130.5000 L 137.5600,130.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="138.0600" text-length="16.7400px" y="128.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 137.5600,168.0000 L 137.5600,157.5000 L 155.8000,157.5000 L 155.8000,168.0000 L 137.5600,168.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="138.0600" text-length="16.7400px" y="165.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 137.5600,205.5000 L 137.5600,195.0000 L 155.8000,195.0000 L 155.8000,205.5000 L 137.5600,205.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="138.0600" text-length="16.7400px" y="203.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_155.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_155.svg new file mode 100644 index 0000000..47d73b3 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_155.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,200.0000 L 112.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,204.0000 L 112.0000,200.0000 L 120.0000,196.0000 L 120.0000,204.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 537.6000,200.0000 L 537.6000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 477.0920,12.5000 L 477.0920,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 477.0920,200.0000 L 477.0920,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 416.5840,12.5000 L 416.5840,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 416.5840,200.0000 L 416.5840,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 356.0760,12.5000 L 356.0760,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 356.0760,200.0000 L 356.0760,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 295.5680,12.5000 L 295.5680,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 295.5680,200.0000 L 295.5680,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 235.0601,12.5000 L 235.0601,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 235.0601,200.0000 L 235.0601,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 537.6000,250.0000 L 537.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 534.6000,6.0000 L 537.6000,0.0000 L 540.6000,6.0000 L 534.6000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 537.6000,190.6250 L 538.6000,190.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 537.6000,181.2500 L 538.6000,181.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 537.6000,171.8750 L 538.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 537.6000,162.5000 L 540.6000,162.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 537.6000,153.1250 L 538.6000,153.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 537.6000,143.7500 L 538.6000,143.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 537.6000,134.3750 L 538.6000,134.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 537.6000,125.0000 L 540.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 537.6000,115.6250 L 538.6000,115.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 537.6000,106.2500 L 538.6000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 537.6000,96.8750 L 538.6000,96.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 537.6000,87.5000 L 540.6000,87.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 156.8000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 537.6000,78.1250 L 538.6000,78.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 537.6000,68.7500 L 538.6000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 537.6000,59.3750 L 538.6000,59.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 537.6000,50.0000 L 540.6000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 156.8000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 537.6000,40.6250 L 538.6000,40.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 537.6000,31.2500 L 538.6000,31.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 537.6000,21.8750 L 538.6000,21.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 537.6000,12.5000 L 540.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 537.6000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 537.6000,106.2500 L 477.0920,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 477.0920,106.2500 L 416.5840,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 416.5840,200.0000 L 356.0760,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 356.0760,200.0000 L 295.5680,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 295.5680,12.5000 L 235.0601,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="537.6000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="477.0920" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="416.5840" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="356.0760" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="295.5680" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="235.0601" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( 332.21 537.6000 200.0000 )"><path d=" M 491.0007,219.1000 L 491.0007,199.5000 L 521.1207,199.5000 L 521.1207,219.1000 L 491.0007,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="491.5007" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="491.5007" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( 332.21 477.0920 200.0000 )"><path d=" M 430.4927,219.1000 L 430.4927,199.5000 L 460.6127,199.5000 L 460.6127,219.1000 L 430.4927,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="430.9927" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="430.9927" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( 332.21 416.5840 200.0000 )"><path d=" M 369.9847,219.1000 L 369.9847,199.5000 L 400.1047,199.5000 L 400.1047,219.1000 L 369.9847,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="370.4847" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="370.4847" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( 332.21 356.0760 200.0000 )"><path d=" M 309.4767,219.1000 L 309.4767,199.5000 L 339.5967,199.5000 L 339.5967,219.1000 L 309.4767,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="309.9767" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="309.9767" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( 332.21 295.5680 200.0000 )"><path d=" M 248.9687,219.1000 L 248.9687,199.5000 L 279.0887,199.5000 L 279.0887,219.1000 L 248.9687,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="249.4687" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="249.4687" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( 332.21 235.0601 200.0000 )"><path d=" M 188.4608,219.1000 L 188.4608,199.5000 L 218.5808,199.5000 L 218.5808,219.1000 L 188.4608,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="188.9608" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="188.9608" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_36"><path d=" M 518.3600,168.0000 L 518.3600,157.5000 L 536.6000,157.5000 L 536.6000,168.0000 L 518.3600,168.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="518.8600" text-length="16.7400px" y="165.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 518.3600,130.5000 L 518.3600,120.0000 L 536.6000,120.0000 L 536.6000,130.5000 L 518.3600,130.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="518.8600" text-length="16.7400px" y="128.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 518.3600,93.0000 L 518.3600,82.5000 L 536.6000,82.5000 L 536.6000,93.0000 L 518.3600,93.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="518.8600" text-length="16.7400px" y="90.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 518.3600,55.5000 L 518.3600,45.0000 L 536.6000,45.0000 L 536.6000,55.5000 L 518.3600,55.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="518.8600" text-length="16.7400px" y="53.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 518.3600,18.0000 L 518.3600,7.5000 L 536.6000,7.5000 L 536.6000,18.0000 L 518.3600,18.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="518.8600" text-length="16.7400px" y="15.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_156.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_156.svg new file mode 100644 index 0000000..86e4176 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_156.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,12.5000 L 112.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,16.5000 L 112.0000,12.5000 L 120.0000,8.5000 L 120.0000,16.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 537.6000,12.5000 L 537.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 477.0920,12.5000 L 477.0920,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 477.0920,12.5000 L 477.0920,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 416.5840,12.5000 L 416.5840,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 416.5840,12.5000 L 416.5840,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 356.0760,12.5000 L 356.0760,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 356.0760,12.5000 L 356.0760,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 295.5680,12.5000 L 295.5680,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 295.5680,12.5000 L 295.5680,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 235.0601,12.5000 L 235.0601,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 235.0601,12.5000 L 235.0601,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 537.6000,0.0000 L 537.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 541.1000,243.0000 L 537.6000,250.0000 L 534.1000,243.0000 L 541.1000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 538.6000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 538.6000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 538.6000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 540.6000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 538.6000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 538.6000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 538.6000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 540.6000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 538.6000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 538.6000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 538.6000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 540.6000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 156.8000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 538.6000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 538.6000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 538.6000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 540.6000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 156.8000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 538.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 538.6000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 538.6000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 540.6000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 537.6000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 537.6000,106.2500 L 477.0920,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 477.0920,106.2500 L 416.5840,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 416.5840,12.5000 L 356.0760,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 356.0760,12.5000 L 295.5680,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 295.5680,200.0000 L 235.0601,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="537.6000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="477.0920" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="416.5840" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="356.0760" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="295.5680" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="235.0601" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( 332.21 537.6000 12.5000 )"><path d=" M 491.0007,31.6000 L 491.0007,12.0000 L 521.1207,12.0000 L 521.1207,31.6000 L 491.0007,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="491.5007" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="491.5007" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( 332.21 477.0920 12.5000 )"><path d=" M 430.4927,31.6000 L 430.4927,12.0000 L 460.6127,12.0000 L 460.6127,31.6000 L 430.4927,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="430.9927" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="430.9927" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( 332.21 416.5840 12.5000 )"><path d=" M 369.9847,31.6000 L 369.9847,12.0000 L 400.1047,12.0000 L 400.1047,31.6000 L 369.9847,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="370.4847" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="370.4847" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( 332.21 356.0760 12.5000 )"><path d=" M 309.4767,31.6000 L 309.4767,12.0000 L 339.5967,12.0000 L 339.5967,31.6000 L 309.4767,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="309.9767" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="309.9767" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( 332.21 295.5680 12.5000 )"><path d=" M 248.9687,31.6000 L 248.9687,12.0000 L 279.0887,12.0000 L 279.0887,31.6000 L 248.9687,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="249.4687" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="249.4687" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( 332.21 235.0601 12.5000 )"><path d=" M 188.4608,31.6000 L 188.4608,12.0000 L 218.5808,12.0000 L 218.5808,31.6000 L 188.4608,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="188.9608" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="188.9608" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_36"><path d=" M 518.3600,55.5000 L 518.3600,45.0000 L 536.6000,45.0000 L 536.6000,55.5000 L 518.3600,55.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="518.8600" text-length="16.7400px" y="53.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 518.3600,93.0000 L 518.3600,82.5000 L 536.6000,82.5000 L 536.6000,93.0000 L 518.3600,93.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="518.8600" text-length="16.7400px" y="90.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 518.3600,130.5000 L 518.3600,120.0000 L 536.6000,120.0000 L 536.6000,130.5000 L 518.3600,130.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="518.8600" text-length="16.7400px" y="128.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 518.3600,168.0000 L 518.3600,157.5000 L 536.6000,157.5000 L 536.6000,168.0000 L 518.3600,168.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="518.8600" text-length="16.7400px" y="165.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 518.3600,205.5000 L 518.3600,195.0000 L 536.6000,195.0000 L 536.6000,205.5000 L 518.3600,205.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="518.8600" text-length="16.7400px" y="203.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_157.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_157.svg new file mode 100644 index 0000000..a42032d --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_157.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,200.0000 L 560.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,196.0000 L 560.0000,200.0000 L 552.0000,204.0000 L 552.0000,196.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 235.0601,25.0000 L 235.0601,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 235.0601,197.0000 L 235.0601,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 291.0880,25.0000 L 291.0880,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 291.0880,197.0000 L 291.0880,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 347.1160,25.0000 L 347.1160,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 347.1160,197.0000 L 347.1160,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 403.1440,25.0000 L 403.1440,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 403.1440,197.0000 L 403.1440,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 459.1720,25.0000 L 459.1720,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 459.1720,197.0000 L 459.1720,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 515.2000,197.0000 L 515.2000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 156.8000,250.0000 L 156.8000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 153.8000,6.0000 L 156.8000,0.0000 L 159.8000,6.0000 L 153.8000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 156.8000,191.2500 L 157.8000,191.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,182.5000 L 157.8000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,173.7500 L 157.8000,173.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,165.0000 L 159.8000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 156.8000,156.2500 L 157.8000,156.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,147.5000 L 157.8000,147.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,138.7500 L 157.8000,138.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,130.0000 L 159.8000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 156.8000,121.2500 L 157.8000,121.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 156.8000,112.5000 L 157.8000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 156.8000,103.7500 L 157.8000,103.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 156.8000,95.0000 L 159.8000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 156.8000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 156.8000,86.2500 L 157.8000,86.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 156.8000,77.5000 L 157.8000,77.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 156.8000,68.7500 L 157.8000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 156.8000,60.0000 L 159.8000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 156.8000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 156.8000,51.2500 L 157.8000,51.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 156.8000,42.5000 L 157.8000,42.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 156.8000,33.7500 L 157.8000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 156.8000,25.0000 L 159.8000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 235.0601,112.5000 L 235.0601,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 235.0601,112.5000 L 291.0880,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 291.0880,112.5000 L 347.1160,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 347.1160,200.0000 L 403.1440,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 403.1440,200.0000 L 459.1720,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 459.1720,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="235.0601" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="291.0880" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="347.1160" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="403.1440" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="459.1720" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="515.2000" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( -27.79 235.0601 200.0000 )"><path d=" M 190.0401,229.1000 L 190.0401,199.5000 L 236.0601,199.5000 L 236.0601,229.1000 L 190.0401,229.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="190.5401" text-length="44.5200px" y="211.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="226.3801" text-length="8.6800px" y="227.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( -27.79 291.0880 200.0000 )"><path d=" M 246.0680,229.1000 L 246.0680,199.5000 L 292.0880,199.5000 L 292.0880,229.1000 L 246.0680,229.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="246.5680" text-length="44.5200px" y="211.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="282.4080" text-length="8.6800px" y="227.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( -27.79 347.1160 200.0000 )"><path d=" M 302.0960,229.1000 L 302.0960,199.5000 L 348.1160,199.5000 L 348.1160,229.1000 L 302.0960,229.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="302.5960" text-length="44.5200px" y="211.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="338.4360" text-length="8.6800px" y="227.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( -27.79 403.1440 200.0000 )"><path d=" M 358.1240,229.1000 L 358.1240,199.5000 L 404.1440,199.5000 L 404.1440,229.1000 L 358.1240,229.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="358.6240" text-length="44.5200px" y="211.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="394.4640" text-length="8.6800px" y="227.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( -27.79 459.1720 200.0000 )"><path d=" M 414.1520,229.1000 L 414.1520,199.5000 L 460.1720,199.5000 L 460.1720,229.1000 L 414.1520,229.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="414.6520" text-length="44.5200px" y="211.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="450.4920" text-length="8.6800px" y="227.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( -27.79 515.2000 200.0000 )"><path d=" M 470.1800,229.1000 L 470.1800,199.5000 L 516.2000,199.5000 L 516.2000,229.1000 L 470.1800,229.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="470.6800" text-length="44.5200px" y="211.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="506.5200" text-length="8.6800px" y="227.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_36"><path d=" M 128.2600,173.0000 L 128.2600,157.5000 L 155.8000,157.5000 L 155.8000,173.0000 L 128.2600,173.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="128.7600" text-length="26.0400px" y="169.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 128.2600,138.0000 L 128.2600,122.5000 L 155.8000,122.5000 L 155.8000,138.0000 L 128.2600,138.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="128.7600" text-length="26.0400px" y="134.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 128.2600,103.0000 L 128.2600,87.5000 L 155.8000,87.5000 L 155.8000,103.0000 L 128.2600,103.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="128.7600" text-length="26.0400px" y="99.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 128.2600,68.0000 L 128.2600,52.5000 L 155.8000,52.5000 L 155.8000,68.0000 L 128.2600,68.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="128.7600" text-length="26.0400px" y="64.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 128.2600,33.0000 L 128.2600,17.5000 L 155.8000,17.5000 L 155.8000,33.0000 L 128.2600,33.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="128.7600" text-length="26.0400px" y="29.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_158.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_158.svg new file mode 100644 index 0000000..c7dfd86 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_158.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,25.0000 L 560.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,21.0000 L 560.0000,25.0000 L 552.0000,29.0000 L 552.0000,21.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 235.0601,25.0000 L 235.0601,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 235.0601,22.0000 L 235.0601,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 291.0880,25.0000 L 291.0880,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 291.0880,22.0000 L 291.0880,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 347.1160,25.0000 L 347.1160,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 347.1160,22.0000 L 347.1160,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 403.1440,25.0000 L 403.1440,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 403.1440,22.0000 L 403.1440,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 459.1720,25.0000 L 459.1720,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 459.1720,22.0000 L 459.1720,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 515.2000,22.0000 L 515.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 156.8000,0.0000 L 156.8000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 160.3000,243.0000 L 156.8000,250.0000 L 153.3000,243.0000 L 160.3000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 157.8000,33.7500 L 156.8000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 157.8000,42.5000 L 156.8000,42.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 157.8000,51.2500 L 156.8000,51.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 159.8000,60.0000 L 156.8000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 157.8000,68.7500 L 156.8000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 157.8000,77.5000 L 156.8000,77.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 157.8000,86.2500 L 156.8000,86.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 159.8000,95.0000 L 156.8000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 157.8000,103.7500 L 156.8000,103.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 157.8000,112.5000 L 156.8000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 157.8000,121.2500 L 156.8000,121.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 159.8000,130.0000 L 156.8000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 156.8000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 157.8000,138.7500 L 156.8000,138.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 157.8000,147.5000 L 156.8000,147.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 157.8000,156.2500 L 156.8000,156.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 159.8000,165.0000 L 156.8000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 156.8000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 157.8000,173.7500 L 156.8000,173.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 157.8000,182.5000 L 156.8000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 157.8000,191.2500 L 156.8000,191.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 159.8000,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 235.0601,112.5000 L 235.0601,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 235.0601,112.5000 L 291.0880,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 291.0880,112.5000 L 347.1160,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 347.1160,25.0000 L 403.1440,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 403.1440,25.0000 L 459.1720,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 459.1720,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="235.0601" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="291.0880" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="347.1160" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="403.1440" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="459.1720" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="515.2000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( -27.79 235.0601 25.0000 )"><path d=" M 190.0401,54.1000 L 190.0401,24.5000 L 236.0601,24.5000 L 236.0601,54.1000 L 190.0401,54.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="190.5401" text-length="44.5200px" y="36.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="226.3801" text-length="8.6800px" y="52.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( -27.79 291.0880 25.0000 )"><path d=" M 246.0680,54.1000 L 246.0680,24.5000 L 292.0880,24.5000 L 292.0880,54.1000 L 246.0680,54.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="246.5680" text-length="44.5200px" y="36.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="282.4080" text-length="8.6800px" y="52.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( -27.79 347.1160 25.0000 )"><path d=" M 302.0960,54.1000 L 302.0960,24.5000 L 348.1160,24.5000 L 348.1160,54.1000 L 302.0960,54.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="302.5960" text-length="44.5200px" y="36.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="338.4360" text-length="8.6800px" y="52.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( -27.79 403.1440 25.0000 )"><path d=" M 358.1240,54.1000 L 358.1240,24.5000 L 404.1440,24.5000 L 404.1440,54.1000 L 358.1240,54.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="358.6240" text-length="44.5200px" y="36.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="394.4640" text-length="8.6800px" y="52.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( -27.79 459.1720 25.0000 )"><path d=" M 414.1520,54.1000 L 414.1520,24.5000 L 460.1720,24.5000 L 460.1720,54.1000 L 414.1520,54.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="414.6520" text-length="44.5200px" y="36.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="450.4920" text-length="8.6800px" y="52.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( -27.79 515.2000 25.0000 )"><path d=" M 470.1800,54.1000 L 470.1800,24.5000 L 516.2000,24.5000 L 516.2000,54.1000 L 470.1800,54.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="470.6800" text-length="44.5200px" y="36.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="506.5200" text-length="8.6800px" y="52.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_36"><path d=" M 128.2600,68.0000 L 128.2600,52.5000 L 155.8000,52.5000 L 155.8000,68.0000 L 128.2600,68.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="128.7600" text-length="26.0400px" y="64.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 128.2600,103.0000 L 128.2600,87.5000 L 155.8000,87.5000 L 155.8000,103.0000 L 128.2600,103.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="128.7600" text-length="26.0400px" y="99.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 128.2600,138.0000 L 128.2600,122.5000 L 155.8000,122.5000 L 155.8000,138.0000 L 128.2600,138.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="128.7600" text-length="26.0400px" y="134.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 128.2600,173.0000 L 128.2600,157.5000 L 155.8000,157.5000 L 155.8000,173.0000 L 128.2600,173.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="128.7600" text-length="26.0400px" y="169.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 128.2600,208.0000 L 128.2600,192.5000 L 155.8000,192.5000 L 155.8000,208.0000 L 128.2600,208.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="128.7600" text-length="26.0400px" y="204.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_159.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_159.svg new file mode 100644 index 0000000..bdd6d4c --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_159.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,200.0000 L 112.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,204.0000 L 112.0000,200.0000 L 120.0000,196.0000 L 120.0000,204.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 515.2000,200.0000 L 515.2000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 459.1720,25.0000 L 459.1720,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 459.1720,200.0000 L 459.1720,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 403.1440,25.0000 L 403.1440,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 403.1440,200.0000 L 403.1440,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 347.1160,25.0000 L 347.1160,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 347.1160,200.0000 L 347.1160,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 291.0880,25.0000 L 291.0880,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 291.0880,200.0000 L 291.0880,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 235.0601,25.0000 L 235.0601,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 235.0601,200.0000 L 235.0601,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 515.2000,250.0000 L 515.2000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 512.2000,6.0000 L 515.2000,0.0000 L 518.2000,6.0000 L 512.2000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 515.2000,191.2500 L 516.2000,191.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 515.2000,182.5000 L 516.2000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 515.2000,173.7500 L 516.2000,173.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 515.2000,165.0000 L 518.2000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 515.2000,156.2500 L 516.2000,156.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 515.2000,147.5000 L 516.2000,147.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 515.2000,138.7500 L 516.2000,138.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 515.2000,130.0000 L 518.2000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 515.2000,121.2500 L 516.2000,121.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 515.2000,112.5000 L 516.2000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 515.2000,103.7500 L 516.2000,103.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 515.2000,95.0000 L 518.2000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 156.8000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 515.2000,86.2500 L 516.2000,86.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 515.2000,77.5000 L 516.2000,77.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 515.2000,68.7500 L 516.2000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 515.2000,60.0000 L 518.2000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 156.8000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 515.2000,51.2500 L 516.2000,51.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 515.2000,42.5000 L 516.2000,42.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 515.2000,33.7500 L 516.2000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 515.2000,25.0000 L 518.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 515.2000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 515.2000,112.5000 L 459.1720,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 459.1720,112.5000 L 403.1440,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 403.1440,200.0000 L 347.1160,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 347.1160,200.0000 L 291.0880,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 291.0880,25.0000 L 235.0601,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="515.2000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="459.1720" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="403.1440" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="347.1160" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="291.0880" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="235.0601" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( 332.21 515.2000 200.0000 )"><path d=" M 467.3999,229.1000 L 467.3999,199.5000 L 513.4199,199.5000 L 513.4199,229.1000 L 467.3999,229.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="467.8999" text-length="44.5200px" y="211.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="467.8999" text-length="8.6800px" y="227.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( 332.21 459.1720 200.0000 )"><path d=" M 411.3719,229.1000 L 411.3719,199.5000 L 457.3919,199.5000 L 457.3919,229.1000 L 411.3719,229.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="411.8719" text-length="44.5200px" y="211.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="411.8719" text-length="8.6800px" y="227.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( 332.21 403.1440 200.0000 )"><path d=" M 355.3440,229.1000 L 355.3440,199.5000 L 401.3640,199.5000 L 401.3640,229.1000 L 355.3440,229.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="355.8440" text-length="44.5200px" y="211.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="355.8440" text-length="8.6800px" y="227.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( 332.21 347.1160 200.0000 )"><path d=" M 299.3160,229.1000 L 299.3160,199.5000 L 345.3360,199.5000 L 345.3360,229.1000 L 299.3160,229.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="299.8160" text-length="44.5200px" y="211.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="299.8160" text-length="8.6800px" y="227.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( 332.21 291.0880 200.0000 )"><path d=" M 243.2880,229.1000 L 243.2880,199.5000 L 289.3080,199.5000 L 289.3080,229.1000 L 243.2880,229.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="243.7880" text-length="44.5200px" y="211.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="243.7880" text-length="8.6800px" y="227.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( 332.21 235.0601 200.0000 )"><path d=" M 187.2600,229.1000 L 187.2600,199.5000 L 233.2800,199.5000 L 233.2800,229.1000 L 187.2600,229.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="187.7600" text-length="44.5200px" y="211.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="187.7600" text-length="8.6800px" y="227.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_36"><path d=" M 486.6600,173.0000 L 486.6600,157.5000 L 514.2000,157.5000 L 514.2000,173.0000 L 486.6600,173.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="487.1600" text-length="26.0400px" y="169.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 486.6600,138.0000 L 486.6600,122.5000 L 514.2000,122.5000 L 514.2000,138.0000 L 486.6600,138.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="487.1600" text-length="26.0400px" y="134.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 486.6600,103.0000 L 486.6600,87.5000 L 514.2000,87.5000 L 514.2000,103.0000 L 486.6600,103.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="487.1600" text-length="26.0400px" y="99.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 486.6600,68.0000 L 486.6600,52.5000 L 514.2000,52.5000 L 514.2000,68.0000 L 486.6600,68.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="487.1600" text-length="26.0400px" y="64.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 486.6600,33.0000 L 486.6600,17.5000 L 514.2000,17.5000 L 514.2000,33.0000 L 486.6600,33.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="487.1600" text-length="26.0400px" y="29.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_16.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_16.svg new file mode 100644 index 0000000..906325e --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_16.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,25.0000 L 112.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,29.0000 L 112.0000,25.0000 L 120.0000,21.0000 L 120.0000,29.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 443.5200,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 443.5200,25.0000 L 443.5200,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 371.8400,25.0000 L 371.8400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 371.8400,25.0000 L 371.8400,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 300.1600,25.0000 L 300.1600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 300.1600,25.0000 L 300.1600,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 228.4800,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 228.4800,25.0000 L 228.4800,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 156.8000,25.0000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 156.8000,25.0000 L 156.8000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 515.2000,0.0000 L 515.2000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 518.7000,243.0000 L 515.2000,250.0000 L 511.7000,243.0000 L 518.7000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 156.8000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 516.2000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 516.2000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 516.2000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 518.2000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 516.2000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 516.2000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 516.2000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 518.2000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 516.2000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 516.2000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 516.2000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 518.2000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 516.2000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 516.2000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 516.2000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 518.2000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 516.2000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 516.2000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 516.2000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 518.2000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 515.2000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 515.2000,112.5000 L 443.5200,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 443.5200,112.5000 L 371.8400,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 371.8400,25.0000 L 300.1600,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 300.1600,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 228.4800,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="515.2000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="443.5200" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="371.8400" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="300.1600" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="228.4800" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="156.8000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 421.5550,55.1000 L 421.5550,26.5000 L 465.9850,26.5000 L 465.9850,55.1000 L 421.5550,55.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_10_text" x="422.0550" text-length="42.9300px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_10_text" x="439.3350" text-length="8.3700px" y="53.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_13"><path d=" M 349.8750,55.1000 L 349.8750,26.5000 L 394.3050,26.5000 L 394.3050,55.1000 L 349.8750,55.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_13_text" x="350.3750" text-length="42.9300px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_13_text" x="367.6550" text-length="8.3700px" y="53.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_16"><path d=" M 278.1950,55.1000 L 278.1950,26.5000 L 322.6250,26.5000 L 322.6250,55.1000 L 278.1950,55.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_16_text" x="278.6950" text-length="42.9300px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_16_text" x="295.9750" text-length="8.3700px" y="53.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_19"><path d=" M 206.5150,55.1000 L 206.5150,26.5000 L 250.9450,26.5000 L 250.9450,55.1000 L 206.5150,55.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_19_text" x="207.0150" text-length="42.9300px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_19_text" x="224.2950" text-length="8.3700px" y="53.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_22"><path d=" M 134.8350,55.1000 L 134.8350,26.5000 L 179.2650,26.5000 L 179.2650,55.1000 L 134.8350,55.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_22_text" x="135.3350" text-length="42.9300px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="152.6150" text-length="8.3700px" y="53.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25"><path d=" M 504.3300,41.5000 L 504.3300,26.5000 L 514.2000,26.5000 L 514.2000,41.5000 L 504.3300,41.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_25_text" x="504.8300" text-length="8.3700px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_34"><path d=" M 487.5900,76.5000 L 487.5900,61.5000 L 514.2000,61.5000 L 514.2000,76.5000 L 487.5900,76.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="488.0900" text-length="25.1100px" y="73.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 487.5900,111.5000 L 487.5900,96.5000 L 514.2000,96.5000 L 514.2000,111.5000 L 487.5900,111.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="488.0900" text-length="25.1100px" y="108.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 487.5900,146.5000 L 487.5900,131.5000 L 514.2000,131.5000 L 514.2000,146.5000 L 487.5900,146.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="488.0900" text-length="25.1100px" y="143.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 487.5900,181.5000 L 487.5900,166.5000 L 514.2000,166.5000 L 514.2000,181.5000 L 487.5900,181.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="488.0900" text-length="25.1100px" y="178.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 487.5900,199.0000 L 487.5900,184.0000 L 514.2000,184.0000 L 514.2000,199.0000 L 487.5900,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="488.0900" text-length="25.1100px" y="195.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_160.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_160.svg new file mode 100644 index 0000000..5fe84a1 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_160.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,25.0000 L 112.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,29.0000 L 112.0000,25.0000 L 120.0000,21.0000 L 120.0000,29.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 515.2000,25.0000 L 515.2000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 459.1720,25.0000 L 459.1720,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 459.1720,25.0000 L 459.1720,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 403.1440,25.0000 L 403.1440,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 403.1440,25.0000 L 403.1440,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 347.1160,25.0000 L 347.1160,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 347.1160,25.0000 L 347.1160,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 291.0880,25.0000 L 291.0880,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 291.0880,25.0000 L 291.0880,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 235.0601,25.0000 L 235.0601,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 235.0601,25.0000 L 235.0601,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 515.2000,0.0000 L 515.2000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 518.7000,243.0000 L 515.2000,250.0000 L 511.7000,243.0000 L 518.7000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 516.2000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 516.2000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 516.2000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 518.2000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 516.2000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 516.2000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 516.2000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 518.2000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 516.2000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 516.2000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 516.2000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 518.2000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 156.8000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 516.2000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 516.2000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 516.2000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 518.2000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 156.8000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 516.2000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 516.2000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 516.2000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 518.2000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 515.2000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 515.2000,112.5000 L 459.1720,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 459.1720,112.5000 L 403.1440,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 403.1440,25.0000 L 347.1160,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 347.1160,25.0000 L 291.0880,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 291.0880,200.0000 L 235.0601,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="515.2000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="459.1720" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="403.1440" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="347.1160" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="291.0880" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="235.0601" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( 332.21 515.2000 25.0000 )"><path d=" M 467.3999,54.1000 L 467.3999,24.5000 L 513.4199,24.5000 L 513.4199,54.1000 L 467.3999,54.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="467.8999" text-length="44.5200px" y="36.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="467.8999" text-length="8.6800px" y="52.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( 332.21 459.1720 25.0000 )"><path d=" M 411.3719,54.1000 L 411.3719,24.5000 L 457.3919,24.5000 L 457.3919,54.1000 L 411.3719,54.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="411.8719" text-length="44.5200px" y="36.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="411.8719" text-length="8.6800px" y="52.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( 332.21 403.1440 25.0000 )"><path d=" M 355.3440,54.1000 L 355.3440,24.5000 L 401.3640,24.5000 L 401.3640,54.1000 L 355.3440,54.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="355.8440" text-length="44.5200px" y="36.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="355.8440" text-length="8.6800px" y="52.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( 332.21 347.1160 25.0000 )"><path d=" M 299.3160,54.1000 L 299.3160,24.5000 L 345.3360,24.5000 L 345.3360,54.1000 L 299.3160,54.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="299.8160" text-length="44.5200px" y="36.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="299.8160" text-length="8.6800px" y="52.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( 332.21 291.0880 25.0000 )"><path d=" M 243.2880,54.1000 L 243.2880,24.5000 L 289.3080,24.5000 L 289.3080,54.1000 L 243.2880,54.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="243.7880" text-length="44.5200px" y="36.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="243.7880" text-length="8.6800px" y="52.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( 332.21 235.0601 25.0000 )"><path d=" M 187.2600,54.1000 L 187.2600,24.5000 L 233.2800,24.5000 L 233.2800,54.1000 L 187.2600,54.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="187.7600" text-length="44.5200px" y="36.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="187.7600" text-length="8.6800px" y="52.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_36"><path d=" M 486.6600,68.0000 L 486.6600,52.5000 L 514.2000,52.5000 L 514.2000,68.0000 L 486.6600,68.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="487.1600" text-length="26.0400px" y="64.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 486.6600,103.0000 L 486.6600,87.5000 L 514.2000,87.5000 L 514.2000,103.0000 L 486.6600,103.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="487.1600" text-length="26.0400px" y="99.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 486.6600,138.0000 L 486.6600,122.5000 L 514.2000,122.5000 L 514.2000,138.0000 L 486.6600,138.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="487.1600" text-length="26.0400px" y="134.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 486.6600,173.0000 L 486.6600,157.5000 L 514.2000,157.5000 L 514.2000,173.0000 L 486.6600,173.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="487.1600" text-length="26.0400px" y="169.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 486.6600,208.0000 L 486.6600,192.5000 L 514.2000,192.5000 L 514.2000,208.0000 L 486.6600,208.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="487.1600" text-length="26.0400px" y="204.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_161.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_161.svg new file mode 100644 index 0000000..e324662 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_161.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,225.0000 L 560.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,221.0000 L 560.0000,225.0000 L 552.0000,229.0000 L 552.0000,221.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 240.7300,12.5000 L 240.7300,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 240.7300,222.0000 L 240.7300,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 300.1040,12.5000 L 300.1040,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 300.1040,222.0000 L 300.1040,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 359.4780,12.5000 L 359.4780,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 359.4780,222.0000 L 359.4780,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 418.8520,12.5000 L 418.8520,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 418.8520,222.0000 L 418.8520,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 478.2260,12.5000 L 478.2260,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 478.2260,222.0000 L 478.2260,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 537.6000,222.0000 L 537.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 201.6000,250.0000 L 201.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 197.6000,8.0000 L 201.6000,0.0000 L 205.6000,8.0000 L 197.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,214.3750 L 202.6000,214.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,203.7500 L 202.6000,203.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,193.1250 L 202.6000,193.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,182.5000 L 204.6000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,171.8750 L 202.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,161.2500 L 202.6000,161.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,150.6250 L 202.6000,150.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,140.0000 L 204.6000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,129.3750 L 202.6000,129.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,118.7500 L 202.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 201.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,108.1250 L 202.6000,108.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 201.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 201.6000,97.5000 L 204.6000,97.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,86.8750 L 202.6000,86.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 201.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,76.2500 L 202.6000,76.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 201.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,65.6250 L 202.6000,65.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 201.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 201.6000,55.0000 L 204.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,44.3750 L 202.6000,44.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 201.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,33.7500 L 202.6000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 201.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,23.1250 L 202.6000,23.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 201.6000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 201.6000,12.5000 L 204.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 240.7300,118.7500 L 240.7300,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 240.7300,118.7500 L 300.1040,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 300.1040,118.7500 L 359.4780,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 359.4780,225.0000 L 418.8520,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 418.8520,225.0000 L 478.2260,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 478.2260,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="240.7300" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="300.1040" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="359.4780" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="418.8520" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="478.2260" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="537.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( -27.79 240.7300 225.0000 )"><path d=" M 221.1500,238.1000 L 221.1500,224.5000 L 241.7300,224.5000 L 241.7300,238.1000 L 221.1500,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="221.6500" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="237.0100" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( -27.79 300.1040 225.0000 )"><path d=" M 280.5240,238.1000 L 280.5240,224.5000 L 301.1040,224.5000 L 301.1040,238.1000 L 280.5240,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="281.0240" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="296.3840" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( -27.79 359.4780 225.0000 )"><path d=" M 339.8980,238.1000 L 339.8980,224.5000 L 360.4780,224.5000 L 360.4780,238.1000 L 339.8980,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="340.3980" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="355.7580" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( -27.79 418.8520 225.0000 )"><path d=" M 399.2720,238.1000 L 399.2720,224.5000 L 419.8520,224.5000 L 419.8520,238.1000 L 399.2720,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="399.7720" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="415.1320" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( -27.79 478.2260 225.0000 )"><path d=" M 458.6460,238.1000 L 458.6460,224.5000 L 479.2260,224.5000 L 479.2260,238.1000 L 458.6460,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="459.1460" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="474.5060" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( -27.79 537.6000 225.0000 )"><path d=" M 518.0200,238.1000 L 518.0200,224.5000 L 538.6000,224.5000 L 538.6000,238.1000 L 518.0200,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="518.5200" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="533.8800" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 195.3800,224.0000 L 195.3800,216.5000 L 200.6000,216.5000 L 200.6000,224.0000 L 195.3800,224.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="195.8800" text-length="3.7200px" y="222.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 187.9400,181.5000 L 187.9400,174.0000 L 200.6000,174.0000 L 200.6000,181.5000 L 187.9400,181.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="188.4400" text-length="11.1600px" y="179.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 187.9400,139.0000 L 187.9400,131.5000 L 200.6000,131.5000 L 200.6000,139.0000 L 187.9400,139.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="188.4400" text-length="11.1600px" y="137.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 187.9400,96.5000 L 187.9400,89.0000 L 200.6000,89.0000 L 200.6000,96.5000 L 187.9400,96.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="188.4400" text-length="11.1600px" y="94.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 187.9400,54.0000 L 187.9400,46.5000 L 200.6000,46.5000 L 200.6000,54.0000 L 187.9400,54.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="188.4400" text-length="11.1600px" y="52.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 187.9400,21.5000 L 187.9400,14.0000 L 200.6000,14.0000 L 200.6000,21.5000 L 187.9400,21.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="188.4400" text-length="11.1600px" y="19.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_162.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_162.svg new file mode 100644 index 0000000..41439aa --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_162.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,12.5000 L 560.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,8.5000 L 560.0000,12.5000 L 552.0000,16.5000 L 552.0000,8.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 240.7300,12.5000 L 240.7300,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 240.7300,9.5000 L 240.7300,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 300.1040,12.5000 L 300.1040,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 300.1040,9.5000 L 300.1040,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 359.4780,12.5000 L 359.4780,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 359.4780,9.5000 L 359.4780,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 418.8520,12.5000 L 418.8520,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 418.8520,9.5000 L 418.8520,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 478.2260,12.5000 L 478.2260,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 478.2260,9.5000 L 478.2260,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 537.6000,9.5000 L 537.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 201.6000,0.0000 L 201.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 205.6000,242.0000 L 201.6000,250.0000 L 197.6000,242.0000 L 205.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 202.6000,23.1250 L 201.6000,23.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 202.6000,33.7500 L 201.6000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 202.6000,44.3750 L 201.6000,44.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 204.6000,55.0000 L 201.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 202.6000,65.6250 L 201.6000,65.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 202.6000,76.2500 L 201.6000,76.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 202.6000,86.8750 L 201.6000,86.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 204.6000,97.5000 L 201.6000,97.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 202.6000,108.1250 L 201.6000,108.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 202.6000,118.7500 L 201.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 201.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 202.6000,129.3750 L 201.6000,129.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 201.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 204.6000,140.0000 L 201.6000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 202.6000,150.6250 L 201.6000,150.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 201.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 202.6000,161.2500 L 201.6000,161.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 201.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 202.6000,171.8750 L 201.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 201.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 204.6000,182.5000 L 201.6000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 202.6000,193.1250 L 201.6000,193.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 201.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 202.6000,203.7500 L 201.6000,203.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 201.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 202.6000,214.3750 L 201.6000,214.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 204.6000,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 240.7300,118.7500 L 240.7300,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 240.7300,118.7500 L 300.1040,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 300.1040,118.7500 L 359.4780,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 359.4780,12.5000 L 418.8520,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 418.8520,12.5000 L 478.2260,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 478.2260,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="240.7300" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="300.1040" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="359.4780" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="418.8520" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="478.2260" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="537.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( -27.79 240.7300 12.5000 )"><path d=" M 221.1500,25.6000 L 221.1500,12.0000 L 241.7300,12.0000 L 241.7300,25.6000 L 221.1500,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="221.6500" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="237.0100" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( -27.79 300.1040 12.5000 )"><path d=" M 280.5240,25.6000 L 280.5240,12.0000 L 301.1040,12.0000 L 301.1040,25.6000 L 280.5240,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="281.0240" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="296.3840" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( -27.79 359.4780 12.5000 )"><path d=" M 339.8980,25.6000 L 339.8980,12.0000 L 360.4780,12.0000 L 360.4780,25.6000 L 339.8980,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="340.3980" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="355.7580" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( -27.79 418.8520 12.5000 )"><path d=" M 399.2720,25.6000 L 399.2720,12.0000 L 419.8520,12.0000 L 419.8520,25.6000 L 399.2720,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="399.7720" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="415.1320" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( -27.79 478.2260 12.5000 )"><path d=" M 458.6460,25.6000 L 458.6460,12.0000 L 479.2260,12.0000 L 479.2260,25.6000 L 458.6460,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="459.1460" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="474.5060" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( -27.79 537.6000 12.5000 )"><path d=" M 518.0200,25.6000 L 518.0200,12.0000 L 538.6000,12.0000 L 538.6000,25.6000 L 518.0200,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="518.5200" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="533.8800" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 195.3800,21.5000 L 195.3800,14.0000 L 200.6000,14.0000 L 200.6000,21.5000 L 195.3800,21.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="195.8800" text-length="3.7200px" y="19.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 187.9400,64.0000 L 187.9400,56.5000 L 200.6000,56.5000 L 200.6000,64.0000 L 187.9400,64.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="188.4400" text-length="11.1600px" y="62.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 187.9400,106.5000 L 187.9400,99.0000 L 200.6000,99.0000 L 200.6000,106.5000 L 187.9400,106.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="188.4400" text-length="11.1600px" y="104.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 187.9400,149.0000 L 187.9400,141.5000 L 200.6000,141.5000 L 200.6000,149.0000 L 187.9400,149.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="188.4400" text-length="11.1600px" y="147.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 187.9400,191.5000 L 187.9400,184.0000 L 200.6000,184.0000 L 200.6000,191.5000 L 187.9400,191.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="188.4400" text-length="11.1600px" y="189.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 187.9400,224.0000 L 187.9400,216.5000 L 200.6000,216.5000 L 200.6000,224.0000 L 187.9400,224.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="188.4400" text-length="11.1600px" y="222.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_163.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_163.svg new file mode 100644 index 0000000..ce424eb --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_163.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,225.0000 L 112.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,229.0000 L 112.0000,225.0000 L 120.0000,221.0000 L 120.0000,229.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 537.6000,225.0000 L 537.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 478.2260,12.5000 L 478.2260,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 478.2260,225.0000 L 478.2260,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 418.8520,12.5000 L 418.8520,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 418.8520,225.0000 L 418.8520,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 359.4780,12.5000 L 359.4780,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 359.4780,225.0000 L 359.4780,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 300.1040,12.5000 L 300.1040,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 300.1040,225.0000 L 300.1040,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 240.7300,12.5000 L 240.7300,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 240.7300,225.0000 L 240.7300,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 537.6000,250.0000 L 537.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 533.6000,8.0000 L 537.6000,0.0000 L 541.6000,8.0000 L 533.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 537.6000,214.3750 L 538.6000,214.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 537.6000,203.7500 L 538.6000,203.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 537.6000,193.1250 L 538.6000,193.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 537.6000,182.5000 L 540.6000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 537.6000,171.8750 L 538.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 537.6000,161.2500 L 538.6000,161.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 537.6000,150.6250 L 538.6000,150.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 537.6000,140.0000 L 540.6000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 537.6000,129.3750 L 538.6000,129.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 537.6000,118.7500 L 538.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 201.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 537.6000,108.1250 L 538.6000,108.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 201.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 537.6000,97.5000 L 540.6000,97.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 537.6000,86.8750 L 538.6000,86.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 201.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 537.6000,76.2500 L 538.6000,76.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 201.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 537.6000,65.6250 L 538.6000,65.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 201.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 537.6000,55.0000 L 540.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 537.6000,44.3750 L 538.6000,44.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 201.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 537.6000,33.7500 L 538.6000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 201.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 537.6000,23.1250 L 538.6000,23.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 201.6000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 537.6000,12.5000 L 540.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 537.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 537.6000,118.7500 L 478.2260,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 478.2260,118.7500 L 418.8520,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 418.8520,225.0000 L 359.4780,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 359.4780,225.0000 L 300.1040,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 300.1040,12.5000 L 240.7300,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="537.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="478.2260" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="418.8520" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="359.4780" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="300.1040" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="240.7300" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( 332.21 537.6000 225.0000 )"><path d=" M 515.7676,238.1000 L 515.7676,224.5000 L 536.3476,224.5000 L 536.3476,238.1000 L 515.7676,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="516.2676" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="516.2676" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( 332.21 478.2260 225.0000 )"><path d=" M 456.3936,238.1000 L 456.3936,224.5000 L 476.9736,224.5000 L 476.9736,238.1000 L 456.3936,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="456.8936" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="456.8936" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( 332.21 418.8520 225.0000 )"><path d=" M 397.0196,238.1000 L 397.0196,224.5000 L 417.5996,224.5000 L 417.5996,238.1000 L 397.0196,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="397.5196" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="397.5196" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( 332.21 359.4780 225.0000 )"><path d=" M 337.6456,238.1000 L 337.6456,224.5000 L 358.2256,224.5000 L 358.2256,238.1000 L 337.6456,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="338.1456" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="338.1456" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( 332.21 300.1040 225.0000 )"><path d=" M 278.2716,238.1000 L 278.2716,224.5000 L 298.8516,224.5000 L 298.8516,238.1000 L 278.2716,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="278.7716" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="278.7716" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( 332.21 240.7300 225.0000 )"><path d=" M 218.8976,238.1000 L 218.8976,224.5000 L 239.4776,224.5000 L 239.4776,238.1000 L 218.8976,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="219.3976" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="219.3976" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 531.3800,224.0000 L 531.3800,216.5000 L 536.6000,216.5000 L 536.6000,224.0000 L 531.3800,224.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="531.8800" text-length="3.7200px" y="222.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 523.9400,181.5000 L 523.9400,174.0000 L 536.6000,174.0000 L 536.6000,181.5000 L 523.9400,181.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="524.4400" text-length="11.1600px" y="179.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 523.9400,139.0000 L 523.9400,131.5000 L 536.6000,131.5000 L 536.6000,139.0000 L 523.9400,139.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="524.4400" text-length="11.1600px" y="137.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 523.9400,96.5000 L 523.9400,89.0000 L 536.6000,89.0000 L 536.6000,96.5000 L 523.9400,96.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="524.4400" text-length="11.1600px" y="94.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 523.9400,54.0000 L 523.9400,46.5000 L 536.6000,46.5000 L 536.6000,54.0000 L 523.9400,54.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="524.4400" text-length="11.1600px" y="52.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 523.9400,21.5000 L 523.9400,14.0000 L 536.6000,14.0000 L 536.6000,21.5000 L 523.9400,21.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="524.4400" text-length="11.1600px" y="19.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_164.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_164.svg new file mode 100644 index 0000000..546afea --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_164.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,12.5000 L 112.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,16.5000 L 112.0000,12.5000 L 120.0000,8.5000 L 120.0000,16.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 537.6000,12.5000 L 537.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 478.2260,12.5000 L 478.2260,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 478.2260,12.5000 L 478.2260,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 418.8520,12.5000 L 418.8520,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 418.8520,12.5000 L 418.8520,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 359.4780,12.5000 L 359.4780,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 359.4780,12.5000 L 359.4780,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 300.1040,12.5000 L 300.1040,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 300.1040,12.5000 L 300.1040,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 240.7300,12.5000 L 240.7300,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 240.7300,12.5000 L 240.7300,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 537.6000,0.0000 L 537.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 541.6000,242.0000 L 537.6000,250.0000 L 533.6000,242.0000 L 541.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 538.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 538.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 538.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 540.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 538.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 538.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 538.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 540.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 538.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 538.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 201.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 538.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 201.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 540.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 538.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 201.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 538.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 201.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 538.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 201.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 540.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 538.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 201.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 538.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 201.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 538.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 540.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 537.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 537.6000,118.7500 L 478.2260,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 478.2260,118.7500 L 418.8520,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 418.8520,12.5000 L 359.4780,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 359.4780,12.5000 L 300.1040,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 300.1040,225.0000 L 240.7300,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="537.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="478.2260" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="418.8520" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="359.4780" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="300.1040" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="240.7300" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( 332.21 537.6000 12.5000 )"><path d=" M 515.7676,25.6000 L 515.7676,12.0000 L 536.3476,12.0000 L 536.3476,25.6000 L 515.7676,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="516.2676" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="516.2676" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( 332.21 478.2260 12.5000 )"><path d=" M 456.3936,25.6000 L 456.3936,12.0000 L 476.9736,12.0000 L 476.9736,25.6000 L 456.3936,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="456.8936" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="456.8936" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( 332.21 418.8520 12.5000 )"><path d=" M 397.0196,25.6000 L 397.0196,12.0000 L 417.5996,12.0000 L 417.5996,25.6000 L 397.0196,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="397.5196" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="397.5196" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( 332.21 359.4780 12.5000 )"><path d=" M 337.6456,25.6000 L 337.6456,12.0000 L 358.2256,12.0000 L 358.2256,25.6000 L 337.6456,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="338.1456" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="338.1456" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( 332.21 300.1040 12.5000 )"><path d=" M 278.2716,25.6000 L 278.2716,12.0000 L 298.8516,12.0000 L 298.8516,25.6000 L 278.2716,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="278.7716" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="278.7716" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( 332.21 240.7300 12.5000 )"><path d=" M 218.8976,25.6000 L 218.8976,12.0000 L 239.4776,12.0000 L 239.4776,25.6000 L 218.8976,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="219.3976" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="219.3976" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 531.3800,21.5000 L 531.3800,14.0000 L 536.6000,14.0000 L 536.6000,21.5000 L 531.3800,21.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="531.8800" text-length="3.7200px" y="19.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 523.9400,64.0000 L 523.9400,56.5000 L 536.6000,56.5000 L 536.6000,64.0000 L 523.9400,64.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="524.4400" text-length="11.1600px" y="62.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 523.9400,106.5000 L 523.9400,99.0000 L 536.6000,99.0000 L 536.6000,106.5000 L 523.9400,106.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="524.4400" text-length="11.1600px" y="104.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 523.9400,149.0000 L 523.9400,141.5000 L 536.6000,141.5000 L 536.6000,149.0000 L 523.9400,149.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="524.4400" text-length="11.1600px" y="147.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 523.9400,191.5000 L 523.9400,184.0000 L 536.6000,184.0000 L 536.6000,191.5000 L 523.9400,191.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="524.4400" text-length="11.1600px" y="189.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 523.9400,224.0000 L 523.9400,216.5000 L 536.6000,216.5000 L 536.6000,224.0000 L 523.9400,224.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="524.4400" text-length="11.1600px" y="222.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_165.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_165.svg new file mode 100644 index 0000000..7302c7a --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_165.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,225.0000 L 560.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,221.0000 L 560.0000,225.0000 L 552.0000,229.0000 L 552.0000,221.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 240.7300,25.0000 L 240.7300,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 240.7300,222.0000 L 240.7300,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 295.6240,25.0000 L 295.6240,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 295.6240,222.0000 L 295.6240,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 350.5180,25.0000 L 350.5180,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 350.5180,222.0000 L 350.5180,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 405.4120,25.0000 L 405.4120,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 405.4120,222.0000 L 405.4120,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 460.3060,25.0000 L 460.3060,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 460.3060,222.0000 L 460.3060,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 515.2000,222.0000 L 515.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 201.6000,250.0000 L 201.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 197.6000,8.0000 L 201.6000,0.0000 L 205.6000,8.0000 L 197.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,215.0000 L 202.6000,215.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,205.0000 L 202.6000,205.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,195.0000 L 202.6000,195.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,185.0000 L 204.6000,185.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,175.0000 L 202.6000,175.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,165.0000 L 202.6000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,155.0000 L 202.6000,155.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,145.0000 L 204.6000,145.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,135.0000 L 202.6000,135.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,125.0000 L 202.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 201.6000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,115.0000 L 202.6000,115.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 201.6000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 201.6000,105.0000 L 204.6000,105.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,95.0000 L 202.6000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 201.6000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,85.0000 L 202.6000,85.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 201.6000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,75.0000 L 202.6000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 201.6000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 201.6000,65.0000 L 204.6000,65.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,55.0000 L 202.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 201.6000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,45.0000 L 202.6000,45.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 201.6000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,35.0000 L 202.6000,35.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 201.6000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 201.6000,25.0000 L 204.6000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 240.7300,125.0000 L 240.7300,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 240.7300,125.0000 L 295.6240,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 295.6240,125.0000 L 350.5180,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 350.5180,225.0000 L 405.4120,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 405.4120,225.0000 L 460.3060,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 460.3060,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="240.7300" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="295.6240" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="350.5180" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="405.4120" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="460.3060" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="515.2000" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( -27.79 240.7300 225.0000 )"><path d=" M 221.1500,238.1000 L 221.1500,224.5000 L 241.7300,224.5000 L 241.7300,238.1000 L 221.1500,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="221.6500" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="237.0100" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( -27.79 295.6240 225.0000 )"><path d=" M 276.0440,238.1000 L 276.0440,224.5000 L 296.6240,224.5000 L 296.6240,238.1000 L 276.0440,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="276.5440" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="291.9040" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( -27.79 350.5180 225.0000 )"><path d=" M 330.9380,238.1000 L 330.9380,224.5000 L 351.5180,224.5000 L 351.5180,238.1000 L 330.9380,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="331.4380" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="346.7980" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( -27.79 405.4120 225.0000 )"><path d=" M 385.8320,238.1000 L 385.8320,224.5000 L 406.4120,224.5000 L 406.4120,238.1000 L 385.8320,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="386.3320" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="401.6920" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( -27.79 460.3060 225.0000 )"><path d=" M 440.7260,238.1000 L 440.7260,224.5000 L 461.3060,224.5000 L 461.3060,238.1000 L 440.7260,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="441.2260" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="456.5860" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( -27.79 515.2000 225.0000 )"><path d=" M 495.6200,238.1000 L 495.6200,224.5000 L 516.2000,224.5000 L 516.2000,238.1000 L 495.6200,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="496.1200" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="511.4800" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 195.3800,224.0000 L 195.3800,216.5000 L 200.6000,216.5000 L 200.6000,224.0000 L 195.3800,224.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="195.8800" text-length="3.7200px" y="222.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 187.9400,184.0000 L 187.9400,176.5000 L 200.6000,176.5000 L 200.6000,184.0000 L 187.9400,184.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="188.4400" text-length="11.1600px" y="182.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 187.9400,144.0000 L 187.9400,136.5000 L 200.6000,136.5000 L 200.6000,144.0000 L 187.9400,144.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="188.4400" text-length="11.1600px" y="142.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 187.9400,104.0000 L 187.9400,96.5000 L 200.6000,96.5000 L 200.6000,104.0000 L 187.9400,104.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="188.4400" text-length="11.1600px" y="102.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 187.9400,64.0000 L 187.9400,56.5000 L 200.6000,56.5000 L 200.6000,64.0000 L 187.9400,64.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="188.4400" text-length="11.1600px" y="62.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 187.9400,34.0000 L 187.9400,26.5000 L 200.6000,26.5000 L 200.6000,34.0000 L 187.9400,34.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="188.4400" text-length="11.1600px" y="32.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_166.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_166.svg new file mode 100644 index 0000000..52dc5e8 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_166.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,25.0000 L 560.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,21.0000 L 560.0000,25.0000 L 552.0000,29.0000 L 552.0000,21.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 240.7300,25.0000 L 240.7300,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 240.7300,22.0000 L 240.7300,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 295.6240,25.0000 L 295.6240,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 295.6240,22.0000 L 295.6240,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 350.5180,25.0000 L 350.5180,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 350.5180,22.0000 L 350.5180,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 405.4120,25.0000 L 405.4120,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 405.4120,22.0000 L 405.4120,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 460.3060,25.0000 L 460.3060,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 460.3060,22.0000 L 460.3060,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 515.2000,22.0000 L 515.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 201.6000,0.0000 L 201.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 205.6000,242.0000 L 201.6000,250.0000 L 197.6000,242.0000 L 205.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 202.6000,35.0000 L 201.6000,35.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 202.6000,45.0000 L 201.6000,45.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 202.6000,55.0000 L 201.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 204.6000,65.0000 L 201.6000,65.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 202.6000,75.0000 L 201.6000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 202.6000,85.0000 L 201.6000,85.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 202.6000,95.0000 L 201.6000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 204.6000,105.0000 L 201.6000,105.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 202.6000,115.0000 L 201.6000,115.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 202.6000,125.0000 L 201.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 201.6000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 202.6000,135.0000 L 201.6000,135.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 201.6000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 204.6000,145.0000 L 201.6000,145.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 202.6000,155.0000 L 201.6000,155.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 201.6000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 202.6000,165.0000 L 201.6000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 201.6000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 202.6000,175.0000 L 201.6000,175.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 201.6000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 204.6000,185.0000 L 201.6000,185.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 202.6000,195.0000 L 201.6000,195.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 201.6000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 202.6000,205.0000 L 201.6000,205.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 201.6000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 202.6000,215.0000 L 201.6000,215.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 204.6000,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 240.7300,125.0000 L 240.7300,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 240.7300,125.0000 L 295.6240,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 295.6240,125.0000 L 350.5180,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 350.5180,25.0000 L 405.4120,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 405.4120,25.0000 L 460.3060,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 460.3060,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="240.7300" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="295.6240" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="350.5180" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="405.4120" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="460.3060" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="515.2000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( -27.79 240.7300 25.0000 )"><path d=" M 221.1500,38.1000 L 221.1500,24.5000 L 241.7300,24.5000 L 241.7300,38.1000 L 221.1500,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="221.6500" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="237.0100" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( -27.79 295.6240 25.0000 )"><path d=" M 276.0440,38.1000 L 276.0440,24.5000 L 296.6240,24.5000 L 296.6240,38.1000 L 276.0440,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="276.5440" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="291.9040" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( -27.79 350.5180 25.0000 )"><path d=" M 330.9380,38.1000 L 330.9380,24.5000 L 351.5180,24.5000 L 351.5180,38.1000 L 330.9380,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="331.4380" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="346.7980" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( -27.79 405.4120 25.0000 )"><path d=" M 385.8320,38.1000 L 385.8320,24.5000 L 406.4120,24.5000 L 406.4120,38.1000 L 385.8320,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="386.3320" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="401.6920" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( -27.79 460.3060 25.0000 )"><path d=" M 440.7260,38.1000 L 440.7260,24.5000 L 461.3060,24.5000 L 461.3060,38.1000 L 440.7260,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="441.2260" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="456.5860" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( -27.79 515.2000 25.0000 )"><path d=" M 495.6200,38.1000 L 495.6200,24.5000 L 516.2000,24.5000 L 516.2000,38.1000 L 495.6200,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="496.1200" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="511.4800" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 195.3800,34.0000 L 195.3800,26.5000 L 200.6000,26.5000 L 200.6000,34.0000 L 195.3800,34.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="195.8800" text-length="3.7200px" y="32.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 187.9400,74.0000 L 187.9400,66.5000 L 200.6000,66.5000 L 200.6000,74.0000 L 187.9400,74.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="188.4400" text-length="11.1600px" y="72.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 187.9400,114.0000 L 187.9400,106.5000 L 200.6000,106.5000 L 200.6000,114.0000 L 187.9400,114.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="188.4400" text-length="11.1600px" y="112.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 187.9400,154.0000 L 187.9400,146.5000 L 200.6000,146.5000 L 200.6000,154.0000 L 187.9400,154.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="188.4400" text-length="11.1600px" y="152.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 187.9400,194.0000 L 187.9400,186.5000 L 200.6000,186.5000 L 200.6000,194.0000 L 187.9400,194.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="188.4400" text-length="11.1600px" y="192.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 187.9400,224.0000 L 187.9400,216.5000 L 200.6000,216.5000 L 200.6000,224.0000 L 187.9400,224.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="188.4400" text-length="11.1600px" y="222.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_167.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_167.svg new file mode 100644 index 0000000..0e728d1 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_167.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,225.0000 L 112.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,229.0000 L 112.0000,225.0000 L 120.0000,221.0000 L 120.0000,229.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 515.2000,225.0000 L 515.2000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 460.3060,25.0000 L 460.3060,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 460.3060,225.0000 L 460.3060,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 405.4120,25.0000 L 405.4120,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 405.4120,225.0000 L 405.4120,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 350.5180,25.0000 L 350.5180,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 350.5180,225.0000 L 350.5180,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 295.6240,25.0000 L 295.6240,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 295.6240,225.0000 L 295.6240,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 240.7300,25.0000 L 240.7300,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 240.7300,225.0000 L 240.7300,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 515.2000,250.0000 L 515.2000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 511.2000,8.0000 L 515.2000,0.0000 L 519.2000,8.0000 L 511.2000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 515.2000,215.0000 L 516.2000,215.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 515.2000,205.0000 L 516.2000,205.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 515.2000,195.0000 L 516.2000,195.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 515.2000,185.0000 L 518.2000,185.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 515.2000,175.0000 L 516.2000,175.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 515.2000,165.0000 L 516.2000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 515.2000,155.0000 L 516.2000,155.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 515.2000,145.0000 L 518.2000,145.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 515.2000,135.0000 L 516.2000,135.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 515.2000,125.0000 L 516.2000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 201.6000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 515.2000,115.0000 L 516.2000,115.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 201.6000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 515.2000,105.0000 L 518.2000,105.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 515.2000,95.0000 L 516.2000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 201.6000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 515.2000,85.0000 L 516.2000,85.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 201.6000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 515.2000,75.0000 L 516.2000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 201.6000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 515.2000,65.0000 L 518.2000,65.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 515.2000,55.0000 L 516.2000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 201.6000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 515.2000,45.0000 L 516.2000,45.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 201.6000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 515.2000,35.0000 L 516.2000,35.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 201.6000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 515.2000,25.0000 L 518.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 515.2000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 515.2000,125.0000 L 460.3060,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 460.3060,125.0000 L 405.4120,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 405.4120,225.0000 L 350.5180,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 350.5180,225.0000 L 295.6240,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 295.6240,25.0000 L 240.7300,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="515.2000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="460.3060" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="405.4120" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="350.5180" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="295.6240" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="240.7300" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( 332.21 515.2000 225.0000 )"><path d=" M 493.4992,238.1000 L 493.4992,224.5000 L 514.0792,224.5000 L 514.0792,238.1000 L 493.4992,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="493.9992" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="493.9992" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( 332.21 460.3060 225.0000 )"><path d=" M 438.6052,238.1000 L 438.6052,224.5000 L 459.1852,224.5000 L 459.1852,238.1000 L 438.6052,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="439.1052" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="439.1052" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( 332.21 405.4120 225.0000 )"><path d=" M 383.7112,238.1000 L 383.7112,224.5000 L 404.2912,224.5000 L 404.2912,238.1000 L 383.7112,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="384.2112" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="384.2112" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( 332.21 350.5180 225.0000 )"><path d=" M 328.8172,238.1000 L 328.8172,224.5000 L 349.3972,224.5000 L 349.3972,238.1000 L 328.8172,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="329.3172" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="329.3172" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( 332.21 295.6240 225.0000 )"><path d=" M 273.9232,238.1000 L 273.9232,224.5000 L 294.5032,224.5000 L 294.5032,238.1000 L 273.9232,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="274.4232" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="274.4232" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( 332.21 240.7300 225.0000 )"><path d=" M 219.0293,238.1000 L 219.0293,224.5000 L 239.6093,224.5000 L 239.6093,238.1000 L 219.0293,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="219.5293" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="219.5293" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 508.9800,224.0000 L 508.9800,216.5000 L 514.2000,216.5000 L 514.2000,224.0000 L 508.9800,224.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="509.4800" text-length="3.7200px" y="222.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 501.5400,184.0000 L 501.5400,176.5000 L 514.2000,176.5000 L 514.2000,184.0000 L 501.5400,184.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="502.0400" text-length="11.1600px" y="182.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 501.5400,144.0000 L 501.5400,136.5000 L 514.2000,136.5000 L 514.2000,144.0000 L 501.5400,144.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="502.0400" text-length="11.1600px" y="142.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 501.5400,104.0000 L 501.5400,96.5000 L 514.2000,96.5000 L 514.2000,104.0000 L 501.5400,104.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="502.0400" text-length="11.1600px" y="102.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 501.5400,64.0000 L 501.5400,56.5000 L 514.2000,56.5000 L 514.2000,64.0000 L 501.5400,64.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="502.0400" text-length="11.1600px" y="62.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 501.5400,34.0000 L 501.5400,26.5000 L 514.2000,26.5000 L 514.2000,34.0000 L 501.5400,34.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="502.0400" text-length="11.1600px" y="32.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_168.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_168.svg new file mode 100644 index 0000000..29becce --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_168.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,25.0000 L 112.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,29.0000 L 112.0000,25.0000 L 120.0000,21.0000 L 120.0000,29.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 515.2000,25.0000 L 515.2000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 460.3060,25.0000 L 460.3060,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 460.3060,25.0000 L 460.3060,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 405.4120,25.0000 L 405.4120,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 405.4120,25.0000 L 405.4120,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 350.5180,25.0000 L 350.5180,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 350.5180,25.0000 L 350.5180,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 295.6240,25.0000 L 295.6240,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 295.6240,25.0000 L 295.6240,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 240.7300,25.0000 L 240.7300,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 240.7300,25.0000 L 240.7300,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 515.2000,0.0000 L 515.2000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 519.2000,242.0000 L 515.2000,250.0000 L 511.2000,242.0000 L 519.2000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 516.2000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 516.2000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 516.2000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 518.2000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 516.2000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 516.2000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 516.2000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 518.2000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 516.2000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 516.2000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 201.6000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 516.2000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 201.6000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 518.2000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 516.2000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 201.6000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 516.2000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 201.6000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 516.2000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 201.6000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 518.2000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 516.2000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 201.6000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 516.2000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 201.6000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 516.2000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 518.2000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 515.2000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 515.2000,125.0000 L 460.3060,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 460.3060,125.0000 L 405.4120,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 405.4120,25.0000 L 350.5180,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 350.5180,25.0000 L 295.6240,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 295.6240,225.0000 L 240.7300,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="515.2000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="460.3060" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="405.4120" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="350.5180" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="295.6240" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="240.7300" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( 332.21 515.2000 25.0000 )"><path d=" M 493.4992,38.1000 L 493.4992,24.5000 L 514.0792,24.5000 L 514.0792,38.1000 L 493.4992,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="493.9992" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="493.9992" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( 332.21 460.3060 25.0000 )"><path d=" M 438.6052,38.1000 L 438.6052,24.5000 L 459.1852,24.5000 L 459.1852,38.1000 L 438.6052,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="439.1052" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="439.1052" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( 332.21 405.4120 25.0000 )"><path d=" M 383.7112,38.1000 L 383.7112,24.5000 L 404.2912,24.5000 L 404.2912,38.1000 L 383.7112,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="384.2112" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="384.2112" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( 332.21 350.5180 25.0000 )"><path d=" M 328.8172,38.1000 L 328.8172,24.5000 L 349.3972,24.5000 L 349.3972,38.1000 L 328.8172,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="329.3172" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="329.3172" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( 332.21 295.6240 25.0000 )"><path d=" M 273.9232,38.1000 L 273.9232,24.5000 L 294.5032,24.5000 L 294.5032,38.1000 L 273.9232,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="274.4232" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="274.4232" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( 332.21 240.7300 25.0000 )"><path d=" M 219.0293,38.1000 L 219.0293,24.5000 L 239.6093,24.5000 L 239.6093,38.1000 L 219.0293,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="219.5293" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="219.5293" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 508.9800,34.0000 L 508.9800,26.5000 L 514.2000,26.5000 L 514.2000,34.0000 L 508.9800,34.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="509.4800" text-length="3.7200px" y="32.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 501.5400,74.0000 L 501.5400,66.5000 L 514.2000,66.5000 L 514.2000,74.0000 L 501.5400,74.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="502.0400" text-length="11.1600px" y="72.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 501.5400,114.0000 L 501.5400,106.5000 L 514.2000,106.5000 L 514.2000,114.0000 L 501.5400,114.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="502.0400" text-length="11.1600px" y="112.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 501.5400,154.0000 L 501.5400,146.5000 L 514.2000,146.5000 L 514.2000,154.0000 L 501.5400,154.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="502.0400" text-length="11.1600px" y="152.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 501.5400,194.0000 L 501.5400,186.5000 L 514.2000,186.5000 L 514.2000,194.0000 L 501.5400,194.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="502.0400" text-length="11.1600px" y="192.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 501.5400,224.0000 L 501.5400,216.5000 L 514.2000,216.5000 L 514.2000,224.0000 L 501.5400,224.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="502.0400" text-length="11.1600px" y="222.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_169.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_169.svg new file mode 100644 index 0000000..9be3939 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_169.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,200.0000 L 560.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,196.0000 L 560.0000,200.0000 L 552.0000,204.0000 L 552.0000,196.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 235.0601,12.5000 L 235.0601,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 235.0601,197.0000 L 235.0601,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 295.5680,12.5000 L 295.5680,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 295.5680,197.0000 L 295.5680,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 356.0760,12.5000 L 356.0760,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 356.0760,197.0000 L 356.0760,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 416.5840,12.5000 L 416.5840,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 416.5840,197.0000 L 416.5840,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 477.0920,12.5000 L 477.0920,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 477.0920,197.0000 L 477.0920,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 537.6000,197.0000 L 537.6000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 156.8000,250.0000 L 156.8000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 153.8000,6.0000 L 156.8000,0.0000 L 159.8000,6.0000 L 153.8000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,190.6250 L 157.8000,190.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,181.2500 L 157.8000,181.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,171.8750 L 157.8000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,162.5000 L 159.8000,162.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,153.1250 L 157.8000,153.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,143.7500 L 157.8000,143.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,134.3750 L 157.8000,134.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,125.0000 L 159.8000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,115.6250 L 157.8000,115.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,106.2500 L 157.8000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 156.8000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,96.8750 L 157.8000,96.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 156.8000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 156.8000,87.5000 L 159.8000,87.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,78.1250 L 157.8000,78.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 156.8000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,68.7500 L 157.8000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 156.8000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,59.3750 L 157.8000,59.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 156.8000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 156.8000,50.0000 L 159.8000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,40.6250 L 157.8000,40.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 156.8000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,31.2500 L 157.8000,31.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 156.8000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,21.8750 L 157.8000,21.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 156.8000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 156.8000,12.5000 L 159.8000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 235.0601,106.2500 L 235.0601,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 235.0601,106.2500 L 295.5680,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 295.5680,106.2500 L 356.0760,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 356.0760,200.0000 L 416.5840,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 416.5840,200.0000 L 477.0920,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 477.0920,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="235.0601" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="295.5680" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="356.0760" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="416.5840" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="477.0920" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="537.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( -27.79 235.0601 200.0000 )"><path d=" M 205.9401,219.1000 L 205.9401,199.5000 L 236.0601,199.5000 L 236.0601,219.1000 L 205.9401,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="206.4401" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="229.4801" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( -27.79 295.5680 200.0000 )"><path d=" M 266.4480,219.1000 L 266.4480,199.5000 L 296.5680,199.5000 L 296.5680,219.1000 L 266.4480,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="266.9480" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="289.9880" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( -27.79 356.0760 200.0000 )"><path d=" M 326.9560,219.1000 L 326.9560,199.5000 L 357.0760,199.5000 L 357.0760,219.1000 L 326.9560,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="327.4560" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="350.4960" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( -27.79 416.5840 200.0000 )"><path d=" M 387.4640,219.1000 L 387.4640,199.5000 L 417.5840,199.5000 L 417.5840,219.1000 L 387.4640,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="387.9640" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="411.0040" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( -27.79 477.0920 200.0000 )"><path d=" M 447.9720,219.1000 L 447.9720,199.5000 L 478.0920,199.5000 L 478.0920,219.1000 L 447.9720,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="448.4720" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="471.5120" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( -27.79 537.6000 200.0000 )"><path d=" M 508.4800,219.1000 L 508.4800,199.5000 L 538.6000,199.5000 L 538.6000,219.1000 L 508.4800,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="508.9800" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="532.0200" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 148.7200,199.0000 L 148.7200,188.5000 L 155.8000,188.5000 L 155.8000,199.0000 L 148.7200,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="149.2200" text-length="5.5800px" y="196.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 137.5600,161.5000 L 137.5600,151.0000 L 155.8000,151.0000 L 155.8000,161.5000 L 137.5600,161.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="138.0600" text-length="16.7400px" y="159.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 137.5600,124.0000 L 137.5600,113.5000 L 155.8000,113.5000 L 155.8000,124.0000 L 137.5600,124.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="138.0600" text-length="16.7400px" y="121.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 137.5600,86.5000 L 137.5600,76.0000 L 155.8000,76.0000 L 155.8000,86.5000 L 137.5600,86.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="138.0600" text-length="16.7400px" y="84.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 137.5600,49.0000 L 137.5600,38.5000 L 155.8000,38.5000 L 155.8000,49.0000 L 137.5600,49.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="138.0600" text-length="16.7400px" y="46.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 137.5600,24.5000 L 137.5600,14.0000 L 155.8000,14.0000 L 155.8000,24.5000 L 137.5600,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="138.0600" text-length="16.7400px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_17.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_17.svg new file mode 100644 index 0000000..e206820 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_17.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,225.0000 L 560.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,221.0000 L 560.0000,225.0000 L 552.0000,229.0000 L 552.0000,221.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 268.8000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 268.8000,222.0000 L 268.8000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 336.0000,12.5000 L 336.0000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 336.0000,222.0000 L 336.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 403.2000,12.5000 L 403.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 403.2000,222.0000 L 403.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 470.4000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 470.4000,222.0000 L 470.4000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 537.6000,222.0000 L 537.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 201.6000,250.0000 L 201.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 197.6000,8.0000 L 201.6000,0.0000 L 205.6000,8.0000 L 197.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 201.6000,189.5833 L 537.6000,189.5833" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 198.6000,189.5833 L 204.6000,189.5833" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,154.1667 L 537.6000,154.1667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 198.6000,154.1667 L 204.6000,154.1667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 198.6000,118.7500 L 204.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,83.3333 L 537.6000,83.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 198.6000,83.3333 L 204.6000,83.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,47.9167 L 537.6000,47.9167" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 198.6000,47.9167 L 204.6000,47.9167" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 198.6000,12.5000 L 204.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,118.7500 L 201.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,118.7500 L 268.8000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 268.8000,118.7500 L 336.0000,207.2917" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 336.0000,207.2917 L 403.2000,207.2917" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 403.2000,207.2917 L 470.4000,30.2083" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 470.4000,30.2083 L 537.6000,30.2083" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="201.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="268.8000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="336.0000" cy="207.2917" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="403.2000" cy="207.2917" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="470.4000" cy="30.2083" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="537.6000" cy="30.2083" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 249.2200,237.0000 L 249.2200,226.5000 L 288.8800,226.5000 L 288.8800,237.0000 L 249.2200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="249.7200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_13"><path d=" M 316.4200,237.0000 L 316.4200,226.5000 L 356.0800,226.5000 L 356.0800,237.0000 L 316.4200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="316.9200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_16"><path d=" M 383.6200,237.0000 L 383.6200,226.5000 L 423.2800,226.5000 L 423.2800,237.0000 L 383.6200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="384.1200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_19"><path d=" M 450.8200,237.0000 L 450.8200,226.5000 L 490.4800,226.5000 L 490.4800,237.0000 L 450.8200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="451.3200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 518.0200,237.0000 L 518.0200,226.5000 L 557.6800,226.5000 L 557.6800,237.0000 L 518.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="518.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_25"><path d=" M 193.5200,212.7917 L 193.5200,202.2917 L 200.6000,202.2917 L 200.6000,212.7917 L 193.5200,212.7917 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="194.0200" text-length="5.5800px" y="210.4417" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28"><path d=" M 182.3600,177.3750 L 182.3600,166.8750 L 200.6000,166.8750 L 200.6000,177.3750 L 182.3600,177.3750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="182.8600" text-length="16.7400px" y="175.0250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31"><path d=" M 182.3600,141.9583 L 182.3600,131.4583 L 200.6000,131.4583 L 200.6000,141.9583 L 182.3600,141.9583 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="182.8600" text-length="16.7400px" y="139.6083" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34"><path d=" M 182.3600,106.5417 L 182.3600,96.0417 L 200.6000,96.0417 L 200.6000,106.5417 L 182.3600,106.5417 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="182.8600" text-length="16.7400px" y="104.1917" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37"><path d=" M 182.3600,71.1250 L 182.3600,60.6250 L 200.6000,60.6250 L 200.6000,71.1250 L 182.3600,71.1250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="182.8600" text-length="16.7400px" y="68.7750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40"><path d=" M 182.3600,35.7083 L 182.3600,25.2083 L 200.6000,25.2083 L 200.6000,35.7083 L 182.3600,35.7083 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="182.8600" text-length="16.7400px" y="33.3583" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_170.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_170.svg new file mode 100644 index 0000000..b038c21 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_170.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,12.5000 L 560.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,8.5000 L 560.0000,12.5000 L 552.0000,16.5000 L 552.0000,8.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 235.0601,12.5000 L 235.0601,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 235.0601,9.5000 L 235.0601,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 295.5680,12.5000 L 295.5680,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 295.5680,9.5000 L 295.5680,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 356.0760,12.5000 L 356.0760,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 356.0760,9.5000 L 356.0760,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 416.5840,12.5000 L 416.5840,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 416.5840,9.5000 L 416.5840,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 477.0920,12.5000 L 477.0920,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 477.0920,9.5000 L 477.0920,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 537.6000,9.5000 L 537.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 156.8000,0.0000 L 156.8000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 160.3000,243.0000 L 156.8000,250.0000 L 153.3000,243.0000 L 160.3000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 157.8000,21.8750 L 156.8000,21.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 157.8000,31.2500 L 156.8000,31.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 157.8000,40.6250 L 156.8000,40.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 159.8000,50.0000 L 156.8000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 157.8000,59.3750 L 156.8000,59.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 157.8000,68.7500 L 156.8000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 157.8000,78.1250 L 156.8000,78.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 159.8000,87.5000 L 156.8000,87.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 157.8000,96.8750 L 156.8000,96.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 157.8000,106.2500 L 156.8000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 156.8000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 157.8000,115.6250 L 156.8000,115.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 156.8000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 159.8000,125.0000 L 156.8000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 157.8000,134.3750 L 156.8000,134.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 156.8000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 157.8000,143.7500 L 156.8000,143.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 156.8000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 157.8000,153.1250 L 156.8000,153.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 156.8000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 159.8000,162.5000 L 156.8000,162.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 157.8000,171.8750 L 156.8000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 156.8000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 157.8000,181.2500 L 156.8000,181.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 156.8000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 157.8000,190.6250 L 156.8000,190.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 159.8000,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 235.0601,106.2500 L 235.0601,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 235.0601,106.2500 L 295.5680,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 295.5680,106.2500 L 356.0760,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 356.0760,12.5000 L 416.5840,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 416.5840,12.5000 L 477.0920,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 477.0920,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="235.0601" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="295.5680" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="356.0760" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="416.5840" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="477.0920" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="537.6000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( -27.79 235.0601 12.5000 )"><path d=" M 205.9401,31.6000 L 205.9401,12.0000 L 236.0601,12.0000 L 236.0601,31.6000 L 205.9401,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="206.4401" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="229.4801" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( -27.79 295.5680 12.5000 )"><path d=" M 266.4480,31.6000 L 266.4480,12.0000 L 296.5680,12.0000 L 296.5680,31.6000 L 266.4480,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="266.9480" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="289.9880" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( -27.79 356.0760 12.5000 )"><path d=" M 326.9560,31.6000 L 326.9560,12.0000 L 357.0760,12.0000 L 357.0760,31.6000 L 326.9560,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="327.4560" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="350.4960" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( -27.79 416.5840 12.5000 )"><path d=" M 387.4640,31.6000 L 387.4640,12.0000 L 417.5840,12.0000 L 417.5840,31.6000 L 387.4640,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="387.9640" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="411.0040" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( -27.79 477.0920 12.5000 )"><path d=" M 447.9720,31.6000 L 447.9720,12.0000 L 478.0920,12.0000 L 478.0920,31.6000 L 447.9720,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="448.4720" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="471.5120" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( -27.79 537.6000 12.5000 )"><path d=" M 508.4800,31.6000 L 508.4800,12.0000 L 538.6000,12.0000 L 538.6000,31.6000 L 508.4800,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="508.9800" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="532.0200" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 148.7200,24.5000 L 148.7200,14.0000 L 155.8000,14.0000 L 155.8000,24.5000 L 148.7200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="149.2200" text-length="5.5800px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 137.5600,62.0000 L 137.5600,51.5000 L 155.8000,51.5000 L 155.8000,62.0000 L 137.5600,62.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="138.0600" text-length="16.7400px" y="59.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 137.5600,99.5000 L 137.5600,89.0000 L 155.8000,89.0000 L 155.8000,99.5000 L 137.5600,99.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="138.0600" text-length="16.7400px" y="97.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 137.5600,137.0000 L 137.5600,126.5000 L 155.8000,126.5000 L 155.8000,137.0000 L 137.5600,137.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="138.0600" text-length="16.7400px" y="134.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 137.5600,174.5000 L 137.5600,164.0000 L 155.8000,164.0000 L 155.8000,174.5000 L 137.5600,174.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="138.0600" text-length="16.7400px" y="172.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 137.5600,199.0000 L 137.5600,188.5000 L 155.8000,188.5000 L 155.8000,199.0000 L 137.5600,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="138.0600" text-length="16.7400px" y="196.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_171.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_171.svg new file mode 100644 index 0000000..2f36039 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_171.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,200.0000 L 112.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,204.0000 L 112.0000,200.0000 L 120.0000,196.0000 L 120.0000,204.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 537.6000,200.0000 L 537.6000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 477.0920,12.5000 L 477.0920,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 477.0920,200.0000 L 477.0920,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 416.5840,12.5000 L 416.5840,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 416.5840,200.0000 L 416.5840,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 356.0760,12.5000 L 356.0760,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 356.0760,200.0000 L 356.0760,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 295.5680,12.5000 L 295.5680,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 295.5680,200.0000 L 295.5680,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 235.0601,12.5000 L 235.0601,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 235.0601,200.0000 L 235.0601,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 537.6000,250.0000 L 537.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 534.6000,6.0000 L 537.6000,0.0000 L 540.6000,6.0000 L 534.6000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 537.6000,190.6250 L 538.6000,190.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 537.6000,181.2500 L 538.6000,181.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 537.6000,171.8750 L 538.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 537.6000,162.5000 L 540.6000,162.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 537.6000,153.1250 L 538.6000,153.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 537.6000,143.7500 L 538.6000,143.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 537.6000,134.3750 L 538.6000,134.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 537.6000,125.0000 L 540.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 537.6000,115.6250 L 538.6000,115.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 537.6000,106.2500 L 538.6000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 156.8000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 537.6000,96.8750 L 538.6000,96.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 156.8000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 537.6000,87.5000 L 540.6000,87.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 537.6000,78.1250 L 538.6000,78.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 156.8000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 537.6000,68.7500 L 538.6000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 156.8000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 537.6000,59.3750 L 538.6000,59.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 156.8000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 537.6000,50.0000 L 540.6000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 537.6000,40.6250 L 538.6000,40.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 156.8000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 537.6000,31.2500 L 538.6000,31.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 156.8000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 537.6000,21.8750 L 538.6000,21.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 156.8000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 537.6000,12.5000 L 540.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 537.6000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 537.6000,106.2500 L 477.0920,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 477.0920,106.2500 L 416.5840,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 416.5840,200.0000 L 356.0760,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 356.0760,200.0000 L 295.5680,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 295.5680,12.5000 L 235.0601,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="537.6000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="477.0920" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="416.5840" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="356.0760" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="295.5680" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="235.0601" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( 332.21 537.6000 200.0000 )"><path d=" M 491.0007,219.1000 L 491.0007,199.5000 L 521.1207,199.5000 L 521.1207,219.1000 L 491.0007,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="491.5007" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="491.5007" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( 332.21 477.0920 200.0000 )"><path d=" M 430.4927,219.1000 L 430.4927,199.5000 L 460.6127,199.5000 L 460.6127,219.1000 L 430.4927,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="430.9927" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="430.9927" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( 332.21 416.5840 200.0000 )"><path d=" M 369.9847,219.1000 L 369.9847,199.5000 L 400.1047,199.5000 L 400.1047,219.1000 L 369.9847,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="370.4847" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="370.4847" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( 332.21 356.0760 200.0000 )"><path d=" M 309.4767,219.1000 L 309.4767,199.5000 L 339.5967,199.5000 L 339.5967,219.1000 L 309.4767,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="309.9767" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="309.9767" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( 332.21 295.5680 200.0000 )"><path d=" M 248.9687,219.1000 L 248.9687,199.5000 L 279.0887,199.5000 L 279.0887,219.1000 L 248.9687,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="249.4687" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="249.4687" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( 332.21 235.0601 200.0000 )"><path d=" M 188.4608,219.1000 L 188.4608,199.5000 L 218.5808,199.5000 L 218.5808,219.1000 L 188.4608,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="188.9608" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="188.9608" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 529.5200,199.0000 L 529.5200,188.5000 L 536.6000,188.5000 L 536.6000,199.0000 L 529.5200,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="530.0200" text-length="5.5800px" y="196.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 518.3600,161.5000 L 518.3600,151.0000 L 536.6000,151.0000 L 536.6000,161.5000 L 518.3600,161.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="518.8600" text-length="16.7400px" y="159.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 518.3600,124.0000 L 518.3600,113.5000 L 536.6000,113.5000 L 536.6000,124.0000 L 518.3600,124.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="518.8600" text-length="16.7400px" y="121.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 518.3600,86.5000 L 518.3600,76.0000 L 536.6000,76.0000 L 536.6000,86.5000 L 518.3600,86.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="518.8600" text-length="16.7400px" y="84.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 518.3600,49.0000 L 518.3600,38.5000 L 536.6000,38.5000 L 536.6000,49.0000 L 518.3600,49.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="518.8600" text-length="16.7400px" y="46.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 518.3600,24.5000 L 518.3600,14.0000 L 536.6000,14.0000 L 536.6000,24.5000 L 518.3600,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="518.8600" text-length="16.7400px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_172.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_172.svg new file mode 100644 index 0000000..ee0e953 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_172.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,12.5000 L 112.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,16.5000 L 112.0000,12.5000 L 120.0000,8.5000 L 120.0000,16.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 537.6000,12.5000 L 537.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 477.0920,12.5000 L 477.0920,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 477.0920,12.5000 L 477.0920,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 416.5840,12.5000 L 416.5840,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 416.5840,12.5000 L 416.5840,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 356.0760,12.5000 L 356.0760,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 356.0760,12.5000 L 356.0760,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 295.5680,12.5000 L 295.5680,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 295.5680,12.5000 L 295.5680,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 235.0601,12.5000 L 235.0601,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 235.0601,12.5000 L 235.0601,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 537.6000,0.0000 L 537.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 541.1000,243.0000 L 537.6000,250.0000 L 534.1000,243.0000 L 541.1000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 538.6000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 538.6000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 538.6000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 540.6000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 538.6000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 538.6000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 538.6000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 540.6000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 538.6000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 538.6000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 156.8000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 538.6000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 156.8000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 540.6000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 538.6000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 156.8000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 538.6000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 156.8000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 538.6000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 156.8000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 540.6000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 538.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 156.8000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 538.6000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 156.8000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 538.6000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 540.6000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 537.6000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 537.6000,106.2500 L 477.0920,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 477.0920,106.2500 L 416.5840,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 416.5840,12.5000 L 356.0760,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 356.0760,12.5000 L 295.5680,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 295.5680,200.0000 L 235.0601,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="537.6000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="477.0920" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="416.5840" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="356.0760" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="295.5680" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="235.0601" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( 332.21 537.6000 12.5000 )"><path d=" M 491.0007,31.6000 L 491.0007,12.0000 L 521.1207,12.0000 L 521.1207,31.6000 L 491.0007,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="491.5007" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="491.5007" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( 332.21 477.0920 12.5000 )"><path d=" M 430.4927,31.6000 L 430.4927,12.0000 L 460.6127,12.0000 L 460.6127,31.6000 L 430.4927,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="430.9927" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="430.9927" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( 332.21 416.5840 12.5000 )"><path d=" M 369.9847,31.6000 L 369.9847,12.0000 L 400.1047,12.0000 L 400.1047,31.6000 L 369.9847,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="370.4847" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="370.4847" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( 332.21 356.0760 12.5000 )"><path d=" M 309.4767,31.6000 L 309.4767,12.0000 L 339.5967,12.0000 L 339.5967,31.6000 L 309.4767,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="309.9767" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="309.9767" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( 332.21 295.5680 12.5000 )"><path d=" M 248.9687,31.6000 L 248.9687,12.0000 L 279.0887,12.0000 L 279.0887,31.6000 L 248.9687,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="249.4687" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="249.4687" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( 332.21 235.0601 12.5000 )"><path d=" M 188.4608,31.6000 L 188.4608,12.0000 L 218.5808,12.0000 L 218.5808,31.6000 L 188.4608,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="188.9608" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="188.9608" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 529.5200,24.5000 L 529.5200,14.0000 L 536.6000,14.0000 L 536.6000,24.5000 L 529.5200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="530.0200" text-length="5.5800px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 518.3600,62.0000 L 518.3600,51.5000 L 536.6000,51.5000 L 536.6000,62.0000 L 518.3600,62.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="518.8600" text-length="16.7400px" y="59.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 518.3600,99.5000 L 518.3600,89.0000 L 536.6000,89.0000 L 536.6000,99.5000 L 518.3600,99.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="518.8600" text-length="16.7400px" y="97.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 518.3600,137.0000 L 518.3600,126.5000 L 536.6000,126.5000 L 536.6000,137.0000 L 518.3600,137.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="518.8600" text-length="16.7400px" y="134.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 518.3600,174.5000 L 518.3600,164.0000 L 536.6000,164.0000 L 536.6000,174.5000 L 518.3600,174.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="518.8600" text-length="16.7400px" y="172.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 518.3600,199.0000 L 518.3600,188.5000 L 536.6000,188.5000 L 536.6000,199.0000 L 518.3600,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="518.8600" text-length="16.7400px" y="196.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_173.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_173.svg new file mode 100644 index 0000000..1f4e61a --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_173.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,200.0000 L 560.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,196.0000 L 560.0000,200.0000 L 552.0000,204.0000 L 552.0000,196.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 235.0601,25.0000 L 235.0601,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 235.0601,197.0000 L 235.0601,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 291.0880,25.0000 L 291.0880,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 291.0880,197.0000 L 291.0880,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 347.1160,25.0000 L 347.1160,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 347.1160,197.0000 L 347.1160,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 403.1440,25.0000 L 403.1440,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 403.1440,197.0000 L 403.1440,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 459.1720,25.0000 L 459.1720,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 459.1720,197.0000 L 459.1720,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 515.2000,197.0000 L 515.2000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 156.8000,250.0000 L 156.8000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 153.8000,6.0000 L 156.8000,0.0000 L 159.8000,6.0000 L 153.8000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,191.2500 L 157.8000,191.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,182.5000 L 157.8000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,173.7500 L 157.8000,173.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,165.0000 L 159.8000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,156.2500 L 157.8000,156.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,147.5000 L 157.8000,147.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,138.7500 L 157.8000,138.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,130.0000 L 159.8000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,121.2500 L 157.8000,121.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,112.5000 L 157.8000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 156.8000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,103.7500 L 157.8000,103.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 156.8000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 156.8000,95.0000 L 159.8000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,86.2500 L 157.8000,86.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 156.8000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,77.5000 L 157.8000,77.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 156.8000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,68.7500 L 157.8000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 156.8000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 156.8000,60.0000 L 159.8000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,51.2500 L 157.8000,51.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 156.8000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,42.5000 L 157.8000,42.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 156.8000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,33.7500 L 157.8000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 156.8000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 156.8000,25.0000 L 159.8000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 235.0601,112.5000 L 235.0601,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 235.0601,112.5000 L 291.0880,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 291.0880,112.5000 L 347.1160,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 347.1160,200.0000 L 403.1440,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 403.1440,200.0000 L 459.1720,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 459.1720,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="235.0601" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="291.0880" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="347.1160" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="403.1440" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="459.1720" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="515.2000" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( -27.79 235.0601 200.0000 )"><path d=" M 191.6301,228.1000 L 191.6301,199.5000 L 236.0601,199.5000 L 236.0601,228.1000 L 191.6301,228.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="192.1301" text-length="42.9300px" y="211.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="226.6901" text-length="8.3700px" y="226.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( -27.79 291.0880 200.0000 )"><path d=" M 247.6580,228.1000 L 247.6580,199.5000 L 292.0880,199.5000 L 292.0880,228.1000 L 247.6580,228.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="248.1580" text-length="42.9300px" y="211.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="282.7180" text-length="8.3700px" y="226.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( -27.79 347.1160 200.0000 )"><path d=" M 303.6860,228.1000 L 303.6860,199.5000 L 348.1160,199.5000 L 348.1160,228.1000 L 303.6860,228.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="304.1860" text-length="42.9300px" y="211.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="338.7460" text-length="8.3700px" y="226.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( -27.79 403.1440 200.0000 )"><path d=" M 359.7140,228.1000 L 359.7140,199.5000 L 404.1440,199.5000 L 404.1440,228.1000 L 359.7140,228.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="360.2140" text-length="42.9300px" y="211.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="394.7740" text-length="8.3700px" y="226.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( -27.79 459.1720 200.0000 )"><path d=" M 415.7420,228.1000 L 415.7420,199.5000 L 460.1720,199.5000 L 460.1720,228.1000 L 415.7420,228.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="416.2420" text-length="42.9300px" y="211.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="450.8020" text-length="8.3700px" y="226.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( -27.79 515.2000 200.0000 )"><path d=" M 471.7700,228.1000 L 471.7700,199.5000 L 516.2000,199.5000 L 516.2000,228.1000 L 471.7700,228.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="472.2700" text-length="42.9300px" y="211.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="506.8300" text-length="8.3700px" y="226.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 145.9300,199.0000 L 145.9300,184.0000 L 155.8000,184.0000 L 155.8000,199.0000 L 145.9300,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="146.4300" text-length="8.3700px" y="195.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 129.1900,164.0000 L 129.1900,149.0000 L 155.8000,149.0000 L 155.8000,164.0000 L 129.1900,164.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="129.6900" text-length="25.1100px" y="160.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 129.1900,129.0000 L 129.1900,114.0000 L 155.8000,114.0000 L 155.8000,129.0000 L 129.1900,129.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="129.6900" text-length="25.1100px" y="125.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 129.1900,94.0000 L 129.1900,79.0000 L 155.8000,79.0000 L 155.8000,94.0000 L 129.1900,94.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="129.6900" text-length="25.1100px" y="90.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 129.1900,59.0000 L 129.1900,44.0000 L 155.8000,44.0000 L 155.8000,59.0000 L 129.1900,59.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="129.6900" text-length="25.1100px" y="55.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 129.1900,41.5000 L 129.1900,26.5000 L 155.8000,26.5000 L 155.8000,41.5000 L 129.1900,41.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="129.6900" text-length="25.1100px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_174.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_174.svg new file mode 100644 index 0000000..7908645 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_174.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,25.0000 L 560.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,21.0000 L 560.0000,25.0000 L 552.0000,29.0000 L 552.0000,21.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 235.0601,25.0000 L 235.0601,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 235.0601,22.0000 L 235.0601,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 291.0880,25.0000 L 291.0880,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 291.0880,22.0000 L 291.0880,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 347.1160,25.0000 L 347.1160,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 347.1160,22.0000 L 347.1160,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 403.1440,25.0000 L 403.1440,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 403.1440,22.0000 L 403.1440,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 459.1720,25.0000 L 459.1720,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 459.1720,22.0000 L 459.1720,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 515.2000,22.0000 L 515.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 156.8000,0.0000 L 156.8000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 160.3000,243.0000 L 156.8000,250.0000 L 153.3000,243.0000 L 160.3000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 157.8000,33.7500 L 156.8000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 157.8000,42.5000 L 156.8000,42.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 157.8000,51.2500 L 156.8000,51.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 159.8000,60.0000 L 156.8000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 157.8000,68.7500 L 156.8000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 157.8000,77.5000 L 156.8000,77.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 157.8000,86.2500 L 156.8000,86.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 159.8000,95.0000 L 156.8000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 157.8000,103.7500 L 156.8000,103.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 157.8000,112.5000 L 156.8000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 156.8000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 157.8000,121.2500 L 156.8000,121.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 156.8000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 159.8000,130.0000 L 156.8000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 157.8000,138.7500 L 156.8000,138.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 156.8000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 157.8000,147.5000 L 156.8000,147.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 156.8000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 157.8000,156.2500 L 156.8000,156.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 156.8000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 159.8000,165.0000 L 156.8000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 157.8000,173.7500 L 156.8000,173.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 156.8000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 157.8000,182.5000 L 156.8000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 156.8000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 157.8000,191.2500 L 156.8000,191.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 159.8000,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 235.0601,112.5000 L 235.0601,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 235.0601,112.5000 L 291.0880,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 291.0880,112.5000 L 347.1160,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 347.1160,25.0000 L 403.1440,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 403.1440,25.0000 L 459.1720,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 459.1720,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="235.0601" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="291.0880" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="347.1160" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="403.1440" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="459.1720" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="515.2000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( -27.79 235.0601 25.0000 )"><path d=" M 191.6301,53.1000 L 191.6301,24.5000 L 236.0601,24.5000 L 236.0601,53.1000 L 191.6301,53.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="192.1301" text-length="42.9300px" y="36.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="226.6901" text-length="8.3700px" y="51.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( -27.79 291.0880 25.0000 )"><path d=" M 247.6580,53.1000 L 247.6580,24.5000 L 292.0880,24.5000 L 292.0880,53.1000 L 247.6580,53.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="248.1580" text-length="42.9300px" y="36.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="282.7180" text-length="8.3700px" y="51.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( -27.79 347.1160 25.0000 )"><path d=" M 303.6860,53.1000 L 303.6860,24.5000 L 348.1160,24.5000 L 348.1160,53.1000 L 303.6860,53.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="304.1860" text-length="42.9300px" y="36.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="338.7460" text-length="8.3700px" y="51.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( -27.79 403.1440 25.0000 )"><path d=" M 359.7140,53.1000 L 359.7140,24.5000 L 404.1440,24.5000 L 404.1440,53.1000 L 359.7140,53.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="360.2140" text-length="42.9300px" y="36.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="394.7740" text-length="8.3700px" y="51.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( -27.79 459.1720 25.0000 )"><path d=" M 415.7420,53.1000 L 415.7420,24.5000 L 460.1720,24.5000 L 460.1720,53.1000 L 415.7420,53.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="416.2420" text-length="42.9300px" y="36.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="450.8020" text-length="8.3700px" y="51.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( -27.79 515.2000 25.0000 )"><path d=" M 471.7700,53.1000 L 471.7700,24.5000 L 516.2000,24.5000 L 516.2000,53.1000 L 471.7700,53.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="472.2700" text-length="42.9300px" y="36.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="506.8300" text-length="8.3700px" y="51.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 145.9300,41.5000 L 145.9300,26.5000 L 155.8000,26.5000 L 155.8000,41.5000 L 145.9300,41.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="146.4300" text-length="8.3700px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 129.1900,76.5000 L 129.1900,61.5000 L 155.8000,61.5000 L 155.8000,76.5000 L 129.1900,76.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="129.6900" text-length="25.1100px" y="73.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 129.1900,111.5000 L 129.1900,96.5000 L 155.8000,96.5000 L 155.8000,111.5000 L 129.1900,111.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="129.6900" text-length="25.1100px" y="108.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 129.1900,146.5000 L 129.1900,131.5000 L 155.8000,131.5000 L 155.8000,146.5000 L 129.1900,146.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="129.6900" text-length="25.1100px" y="143.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 129.1900,181.5000 L 129.1900,166.5000 L 155.8000,166.5000 L 155.8000,181.5000 L 129.1900,181.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="129.6900" text-length="25.1100px" y="178.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 129.1900,199.0000 L 129.1900,184.0000 L 155.8000,184.0000 L 155.8000,199.0000 L 129.1900,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="129.6900" text-length="25.1100px" y="195.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_175.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_175.svg new file mode 100644 index 0000000..345fffa --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_175.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,200.0000 L 112.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,204.0000 L 112.0000,200.0000 L 120.0000,196.0000 L 120.0000,204.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 515.2000,200.0000 L 515.2000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 459.1720,25.0000 L 459.1720,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 459.1720,200.0000 L 459.1720,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 403.1440,25.0000 L 403.1440,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 403.1440,200.0000 L 403.1440,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 347.1160,25.0000 L 347.1160,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 347.1160,200.0000 L 347.1160,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 291.0880,25.0000 L 291.0880,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 291.0880,200.0000 L 291.0880,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 235.0601,25.0000 L 235.0601,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 235.0601,200.0000 L 235.0601,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 515.2000,250.0000 L 515.2000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 512.2000,6.0000 L 515.2000,0.0000 L 518.2000,6.0000 L 512.2000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 515.2000,191.2500 L 516.2000,191.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 515.2000,182.5000 L 516.2000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 515.2000,173.7500 L 516.2000,173.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 515.2000,165.0000 L 518.2000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 515.2000,156.2500 L 516.2000,156.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 515.2000,147.5000 L 516.2000,147.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 515.2000,138.7500 L 516.2000,138.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 515.2000,130.0000 L 518.2000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 515.2000,121.2500 L 516.2000,121.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 515.2000,112.5000 L 516.2000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 156.8000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 515.2000,103.7500 L 516.2000,103.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 156.8000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 515.2000,95.0000 L 518.2000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 515.2000,86.2500 L 516.2000,86.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 156.8000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 515.2000,77.5000 L 516.2000,77.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 156.8000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 515.2000,68.7500 L 516.2000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 156.8000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 515.2000,60.0000 L 518.2000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 515.2000,51.2500 L 516.2000,51.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 156.8000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 515.2000,42.5000 L 516.2000,42.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 156.8000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 515.2000,33.7500 L 516.2000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 156.8000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 515.2000,25.0000 L 518.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 515.2000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 515.2000,112.5000 L 459.1720,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 459.1720,112.5000 L 403.1440,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 403.1440,200.0000 L 347.1160,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 347.1160,200.0000 L 291.0880,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 291.0880,25.0000 L 235.0601,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="515.2000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="459.1720" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="403.1440" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="347.1160" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="291.0880" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="235.0601" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( 332.21 515.2000 200.0000 )"><path d=" M 467.3999,228.1000 L 467.3999,199.5000 L 511.8299,199.5000 L 511.8299,228.1000 L 467.3999,228.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="467.8999" text-length="42.9300px" y="211.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="467.8999" text-length="8.3700px" y="226.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( 332.21 459.1720 200.0000 )"><path d=" M 411.3719,228.1000 L 411.3719,199.5000 L 455.8019,199.5000 L 455.8019,228.1000 L 411.3719,228.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="411.8719" text-length="42.9300px" y="211.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="411.8719" text-length="8.3700px" y="226.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( 332.21 403.1440 200.0000 )"><path d=" M 355.3440,228.1000 L 355.3440,199.5000 L 399.7740,199.5000 L 399.7740,228.1000 L 355.3440,228.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="355.8440" text-length="42.9300px" y="211.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="355.8440" text-length="8.3700px" y="226.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( 332.21 347.1160 200.0000 )"><path d=" M 299.3160,228.1000 L 299.3160,199.5000 L 343.7460,199.5000 L 343.7460,228.1000 L 299.3160,228.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="299.8160" text-length="42.9300px" y="211.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="299.8160" text-length="8.3700px" y="226.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( 332.21 291.0880 200.0000 )"><path d=" M 243.2880,228.1000 L 243.2880,199.5000 L 287.7180,199.5000 L 287.7180,228.1000 L 243.2880,228.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="243.7880" text-length="42.9300px" y="211.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="243.7880" text-length="8.3700px" y="226.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( 332.21 235.0601 200.0000 )"><path d=" M 187.2600,228.1000 L 187.2600,199.5000 L 231.6900,199.5000 L 231.6900,228.1000 L 187.2600,228.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="187.7600" text-length="42.9300px" y="211.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="187.7600" text-length="8.3700px" y="226.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 504.3300,199.0000 L 504.3300,184.0000 L 514.2000,184.0000 L 514.2000,199.0000 L 504.3300,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="504.8300" text-length="8.3700px" y="195.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 487.5900,164.0000 L 487.5900,149.0000 L 514.2000,149.0000 L 514.2000,164.0000 L 487.5900,164.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="488.0900" text-length="25.1100px" y="160.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 487.5900,129.0000 L 487.5900,114.0000 L 514.2000,114.0000 L 514.2000,129.0000 L 487.5900,129.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="488.0900" text-length="25.1100px" y="125.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 487.5900,94.0000 L 487.5900,79.0000 L 514.2000,79.0000 L 514.2000,94.0000 L 487.5900,94.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="488.0900" text-length="25.1100px" y="90.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 487.5900,59.0000 L 487.5900,44.0000 L 514.2000,44.0000 L 514.2000,59.0000 L 487.5900,59.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="488.0900" text-length="25.1100px" y="55.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 487.5900,41.5000 L 487.5900,26.5000 L 514.2000,26.5000 L 514.2000,41.5000 L 487.5900,41.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="488.0900" text-length="25.1100px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_176.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_176.svg new file mode 100644 index 0000000..5fa384f --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_176.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,25.0000 L 112.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,29.0000 L 112.0000,25.0000 L 120.0000,21.0000 L 120.0000,29.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 515.2000,25.0000 L 515.2000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 459.1720,25.0000 L 459.1720,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 459.1720,25.0000 L 459.1720,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 403.1440,25.0000 L 403.1440,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 403.1440,25.0000 L 403.1440,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 347.1160,25.0000 L 347.1160,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 347.1160,25.0000 L 347.1160,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 291.0880,25.0000 L 291.0880,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 291.0880,25.0000 L 291.0880,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 235.0601,25.0000 L 235.0601,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 235.0601,25.0000 L 235.0601,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 515.2000,0.0000 L 515.2000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 518.7000,243.0000 L 515.2000,250.0000 L 511.7000,243.0000 L 518.7000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 516.2000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 516.2000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 516.2000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 518.2000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 516.2000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 516.2000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 516.2000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 518.2000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 516.2000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 516.2000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 156.8000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 516.2000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 156.8000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 518.2000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 516.2000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 156.8000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 516.2000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 156.8000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 516.2000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 156.8000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 518.2000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 516.2000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 156.8000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 516.2000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 156.8000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 516.2000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 518.2000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 515.2000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 515.2000,112.5000 L 459.1720,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 459.1720,112.5000 L 403.1440,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 403.1440,25.0000 L 347.1160,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 347.1160,25.0000 L 291.0880,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 291.0880,200.0000 L 235.0601,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><ellipse cx="515.2000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="459.1720" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="403.1440" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="347.1160" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="291.0880" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="235.0601" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( 332.21 515.2000 25.0000 )"><path d=" M 467.3999,53.1000 L 467.3999,24.5000 L 511.8299,24.5000 L 511.8299,53.1000 L 467.3999,53.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_8_text" x="467.8999" text-length="42.9300px" y="36.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="467.8999" text-length="8.3700px" y="51.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( 332.21 459.1720 25.0000 )"><path d=" M 411.3719,53.1000 L 411.3719,24.5000 L 455.8019,24.5000 L 455.8019,53.1000 L 411.3719,53.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_11_text" x="411.8719" text-length="42.9300px" y="36.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="411.8719" text-length="8.3700px" y="51.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( 332.21 403.1440 25.0000 )"><path d=" M 355.3440,53.1000 L 355.3440,24.5000 L 399.7740,24.5000 L 399.7740,53.1000 L 355.3440,53.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_14_text" x="355.8440" text-length="42.9300px" y="36.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="355.8440" text-length="8.3700px" y="51.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( 332.21 347.1160 25.0000 )"><path d=" M 299.3160,53.1000 L 299.3160,24.5000 L 343.7460,24.5000 L 343.7460,53.1000 L 299.3160,53.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_17_text" x="299.8160" text-length="42.9300px" y="36.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="299.8160" text-length="8.3700px" y="51.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( 332.21 291.0880 25.0000 )"><path d=" M 243.2880,53.1000 L 243.2880,24.5000 L 287.7180,24.5000 L 287.7180,53.1000 L 243.2880,53.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_20_text" x="243.7880" text-length="42.9300px" y="36.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="243.7880" text-length="8.3700px" y="51.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( 332.21 235.0601 25.0000 )"><path d=" M 187.2600,53.1000 L 187.2600,24.5000 L 231.6900,24.5000 L 231.6900,53.1000 L 187.2600,53.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_23_text" x="187.7600" text-length="42.9300px" y="36.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="187.7600" text-length="8.3700px" y="51.3250" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 504.3300,41.5000 L 504.3300,26.5000 L 514.2000,26.5000 L 514.2000,41.5000 L 504.3300,41.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_28_text" x="504.8300" text-length="8.3700px" y="38.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 487.5900,76.5000 L 487.5900,61.5000 L 514.2000,61.5000 L 514.2000,76.5000 L 487.5900,76.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_37_text" x="488.0900" text-length="25.1100px" y="73.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_46"><path d=" M 487.5900,111.5000 L 487.5900,96.5000 L 514.2000,96.5000 L 514.2000,111.5000 L 487.5900,111.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_46_text" x="488.0900" text-length="25.1100px" y="108.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_55"><path d=" M 487.5900,146.5000 L 487.5900,131.5000 L 514.2000,131.5000 L 514.2000,146.5000 L 487.5900,146.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_55_text" x="488.0900" text-length="25.1100px" y="143.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_64"><path d=" M 487.5900,181.5000 L 487.5900,166.5000 L 514.2000,166.5000 L 514.2000,181.5000 L 487.5900,181.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_64_text" x="488.0900" text-length="25.1100px" y="178.4750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_73"><path d=" M 487.5900,199.0000 L 487.5900,184.0000 L 514.2000,184.0000 L 514.2000,199.0000 L 487.5900,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_73_text" x="488.0900" text-length="25.1100px" y="195.9750" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_177.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_177.svg new file mode 100644 index 0000000..0ca7a67 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_177.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,225.0000 L 560.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,221.0000 L 560.0000,225.0000 L 552.0000,229.0000 L 552.0000,221.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 240.7300,12.5000 L 240.7300,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 240.7300,222.0000 L 240.7300,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 300.1040,12.5000 L 300.1040,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 300.1040,222.0000 L 300.1040,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 359.4780,12.5000 L 359.4780,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 359.4780,222.0000 L 359.4780,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 418.8520,12.5000 L 418.8520,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 418.8520,222.0000 L 418.8520,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 478.2260,12.5000 L 478.2260,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 478.2260,222.0000 L 478.2260,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 537.6000,222.0000 L 537.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 201.6000,250.0000 L 201.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 197.6000,8.0000 L 201.6000,0.0000 L 205.6000,8.0000 L 197.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,189.5833 L 537.6000,189.5833" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 198.6000,189.5833 L 204.6000,189.5833" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,154.1667 L 537.6000,154.1667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 198.6000,154.1667 L 204.6000,154.1667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 198.6000,118.7500 L 204.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,83.3333 L 537.6000,83.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 198.6000,83.3333 L 204.6000,83.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,47.9167 L 537.6000,47.9167" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 198.6000,47.9167 L 204.6000,47.9167" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 198.6000,12.5000 L 204.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 240.7300,118.7500 L 240.7300,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 240.7300,118.7500 L 300.1040,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 300.1040,118.7500 L 359.4780,207.2917" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 359.4780,207.2917 L 418.8520,207.2917" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 418.8520,207.2917 L 478.2260,30.2083" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 478.2260,30.2083 L 537.6000,30.2083" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="240.7300" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="300.1040" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="359.4780" cy="207.2917" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="418.8520" cy="207.2917" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="478.2260" cy="30.2083" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="537.6000" cy="30.2083" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( -27.79 240.7300 225.0000 )"><path d=" M 221.1500,238.1000 L 221.1500,224.5000 L 241.7300,224.5000 L 241.7300,238.1000 L 221.1500,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="221.6500" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="237.0100" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( -27.79 300.1040 225.0000 )"><path d=" M 280.5240,238.1000 L 280.5240,224.5000 L 301.1040,224.5000 L 301.1040,238.1000 L 280.5240,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="281.0240" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="296.3840" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( -27.79 359.4780 225.0000 )"><path d=" M 339.8980,238.1000 L 339.8980,224.5000 L 360.4780,224.5000 L 360.4780,238.1000 L 339.8980,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="340.3980" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="355.7580" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( -27.79 418.8520 225.0000 )"><path d=" M 399.2720,238.1000 L 399.2720,224.5000 L 419.8520,224.5000 L 419.8520,238.1000 L 399.2720,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="399.7720" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="415.1320" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( -27.79 478.2260 225.0000 )"><path d=" M 458.6460,238.1000 L 458.6460,224.5000 L 479.2260,224.5000 L 479.2260,238.1000 L 458.6460,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="459.1460" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="474.5060" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( -27.79 537.6000 225.0000 )"><path d=" M 518.0200,238.1000 L 518.0200,224.5000 L 538.6000,224.5000 L 538.6000,238.1000 L 518.0200,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="518.5200" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="533.8800" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 195.3800,211.2917 L 195.3800,203.7917 L 200.6000,203.7917 L 200.6000,211.2917 L 195.3800,211.2917 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="195.8800" text-length="3.7200px" y="209.3917" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31"><path d=" M 187.9400,175.8750 L 187.9400,168.3750 L 200.6000,168.3750 L 200.6000,175.8750 L 187.9400,175.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="188.4400" text-length="11.1600px" y="173.9750" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34"><path d=" M 187.9400,140.4583 L 187.9400,132.9583 L 200.6000,132.9583 L 200.6000,140.4583 L 187.9400,140.4583 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="188.4400" text-length="11.1600px" y="138.5583" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37"><path d=" M 187.9400,105.0417 L 187.9400,97.5417 L 200.6000,97.5417 L 200.6000,105.0417 L 187.9400,105.0417 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="188.4400" text-length="11.1600px" y="103.1417" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40"><path d=" M 187.9400,69.6250 L 187.9400,62.1250 L 200.6000,62.1250 L 200.6000,69.6250 L 187.9400,69.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="188.4400" text-length="11.1600px" y="67.7250" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43"><path d=" M 187.9400,34.2083 L 187.9400,26.7083 L 200.6000,26.7083 L 200.6000,34.2083 L 187.9400,34.2083 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="188.4400" text-length="11.1600px" y="32.3083" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_178.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_178.svg new file mode 100644 index 0000000..50ac8c7 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_178.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,12.5000 L 560.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,8.5000 L 560.0000,12.5000 L 552.0000,16.5000 L 552.0000,8.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 240.7300,12.5000 L 240.7300,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 240.7300,9.5000 L 240.7300,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 300.1040,12.5000 L 300.1040,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 300.1040,9.5000 L 300.1040,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 359.4780,12.5000 L 359.4780,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 359.4780,9.5000 L 359.4780,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 418.8520,12.5000 L 418.8520,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 418.8520,9.5000 L 418.8520,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 478.2260,12.5000 L 478.2260,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 478.2260,9.5000 L 478.2260,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 537.6000,9.5000 L 537.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 201.6000,0.0000 L 201.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 205.6000,242.0000 L 201.6000,250.0000 L 197.6000,242.0000 L 205.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,47.9167 L 537.6000,47.9167" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 204.6000,47.9167 L 198.6000,47.9167" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,83.3333 L 537.6000,83.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 204.6000,83.3333 L 198.6000,83.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 204.6000,118.7500 L 198.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,154.1667 L 537.6000,154.1667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 204.6000,154.1667 L 198.6000,154.1667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,189.5833 L 537.6000,189.5833" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 204.6000,189.5833 L 198.6000,189.5833" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 204.6000,225.0000 L 198.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 240.7300,118.7500 L 240.7300,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 240.7300,118.7500 L 300.1040,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 300.1040,118.7500 L 359.4780,30.2083" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 359.4780,30.2083 L 418.8520,30.2083" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 418.8520,30.2083 L 478.2260,207.2917" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 478.2260,207.2917 L 537.6000,207.2917" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="240.7300" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="300.1040" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="359.4780" cy="30.2083" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="418.8520" cy="30.2083" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="478.2260" cy="207.2917" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="537.6000" cy="207.2917" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( -27.79 240.7300 12.5000 )"><path d=" M 221.1500,25.6000 L 221.1500,12.0000 L 241.7300,12.0000 L 241.7300,25.6000 L 221.1500,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="221.6500" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="237.0100" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( -27.79 300.1040 12.5000 )"><path d=" M 280.5240,25.6000 L 280.5240,12.0000 L 301.1040,12.0000 L 301.1040,25.6000 L 280.5240,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="281.0240" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="296.3840" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( -27.79 359.4780 12.5000 )"><path d=" M 339.8980,25.6000 L 339.8980,12.0000 L 360.4780,12.0000 L 360.4780,25.6000 L 339.8980,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="340.3980" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="355.7580" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( -27.79 418.8520 12.5000 )"><path d=" M 399.2720,25.6000 L 399.2720,12.0000 L 419.8520,12.0000 L 419.8520,25.6000 L 399.2720,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="399.7720" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="415.1320" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( -27.79 478.2260 12.5000 )"><path d=" M 458.6460,25.6000 L 458.6460,12.0000 L 479.2260,12.0000 L 479.2260,25.6000 L 458.6460,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="459.1460" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="474.5060" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( -27.79 537.6000 12.5000 )"><path d=" M 518.0200,25.6000 L 518.0200,12.0000 L 538.6000,12.0000 L 538.6000,25.6000 L 518.0200,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="518.5200" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="533.8800" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 195.3800,34.2083 L 195.3800,26.7083 L 200.6000,26.7083 L 200.6000,34.2083 L 195.3800,34.2083 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="195.8800" text-length="3.7200px" y="32.3083" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31"><path d=" M 187.9400,69.6250 L 187.9400,62.1250 L 200.6000,62.1250 L 200.6000,69.6250 L 187.9400,69.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="188.4400" text-length="11.1600px" y="67.7250" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34"><path d=" M 187.9400,105.0417 L 187.9400,97.5417 L 200.6000,97.5417 L 200.6000,105.0417 L 187.9400,105.0417 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="188.4400" text-length="11.1600px" y="103.1417" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37"><path d=" M 187.9400,140.4583 L 187.9400,132.9583 L 200.6000,132.9583 L 200.6000,140.4583 L 187.9400,140.4583 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="188.4400" text-length="11.1600px" y="138.5583" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40"><path d=" M 187.9400,175.8750 L 187.9400,168.3750 L 200.6000,168.3750 L 200.6000,175.8750 L 187.9400,175.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="188.4400" text-length="11.1600px" y="173.9750" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43"><path d=" M 187.9400,211.2917 L 187.9400,203.7917 L 200.6000,203.7917 L 200.6000,211.2917 L 187.9400,211.2917 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="188.4400" text-length="11.1600px" y="209.3917" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_179.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_179.svg new file mode 100644 index 0000000..e7276c2 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_179.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,225.0000 L 112.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,229.0000 L 112.0000,225.0000 L 120.0000,221.0000 L 120.0000,229.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 537.6000,225.0000 L 537.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 478.2260,12.5000 L 478.2260,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 478.2260,225.0000 L 478.2260,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 418.8520,12.5000 L 418.8520,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 418.8520,225.0000 L 418.8520,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 359.4780,12.5000 L 359.4780,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 359.4780,225.0000 L 359.4780,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 300.1040,12.5000 L 300.1040,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 300.1040,225.0000 L 300.1040,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 240.7300,12.5000 L 240.7300,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 240.7300,225.0000 L 240.7300,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 537.6000,250.0000 L 537.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 533.6000,8.0000 L 537.6000,0.0000 L 541.6000,8.0000 L 533.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,189.5833 L 537.6000,189.5833" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 534.6000,189.5833 L 540.6000,189.5833" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,154.1667 L 537.6000,154.1667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 534.6000,154.1667 L 540.6000,154.1667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 534.6000,118.7500 L 540.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,83.3333 L 537.6000,83.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 534.6000,83.3333 L 540.6000,83.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,47.9167 L 537.6000,47.9167" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 534.6000,47.9167 L 540.6000,47.9167" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 534.6000,12.5000 L 540.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 537.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 537.6000,118.7500 L 478.2260,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 478.2260,118.7500 L 418.8520,207.2917" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 418.8520,207.2917 L 359.4780,207.2917" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 359.4780,207.2917 L 300.1040,30.2083" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 300.1040,30.2083 L 240.7300,30.2083" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="537.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="478.2260" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="418.8520" cy="207.2917" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="359.4780" cy="207.2917" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="300.1040" cy="30.2083" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="240.7300" cy="30.2083" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( 332.21 537.6000 225.0000 )"><path d=" M 515.7676,238.1000 L 515.7676,224.5000 L 536.3476,224.5000 L 536.3476,238.1000 L 515.7676,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="516.2676" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="516.2676" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( 332.21 478.2260 225.0000 )"><path d=" M 456.3936,238.1000 L 456.3936,224.5000 L 476.9736,224.5000 L 476.9736,238.1000 L 456.3936,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="456.8936" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="456.8936" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( 332.21 418.8520 225.0000 )"><path d=" M 397.0196,238.1000 L 397.0196,224.5000 L 417.5996,224.5000 L 417.5996,238.1000 L 397.0196,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="397.5196" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="397.5196" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( 332.21 359.4780 225.0000 )"><path d=" M 337.6456,238.1000 L 337.6456,224.5000 L 358.2256,224.5000 L 358.2256,238.1000 L 337.6456,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="338.1456" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="338.1456" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( 332.21 300.1040 225.0000 )"><path d=" M 278.2716,238.1000 L 278.2716,224.5000 L 298.8516,224.5000 L 298.8516,238.1000 L 278.2716,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="278.7716" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="278.7716" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( 332.21 240.7300 225.0000 )"><path d=" M 218.8976,238.1000 L 218.8976,224.5000 L 239.4776,224.5000 L 239.4776,238.1000 L 218.8976,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="219.3976" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="219.3976" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 531.3800,211.2917 L 531.3800,203.7917 L 536.6000,203.7917 L 536.6000,211.2917 L 531.3800,211.2917 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="531.8800" text-length="3.7200px" y="209.3917" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31"><path d=" M 523.9400,175.8750 L 523.9400,168.3750 L 536.6000,168.3750 L 536.6000,175.8750 L 523.9400,175.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="524.4400" text-length="11.1600px" y="173.9750" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34"><path d=" M 523.9400,140.4583 L 523.9400,132.9583 L 536.6000,132.9583 L 536.6000,140.4583 L 523.9400,140.4583 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="524.4400" text-length="11.1600px" y="138.5583" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37"><path d=" M 523.9400,105.0417 L 523.9400,97.5417 L 536.6000,97.5417 L 536.6000,105.0417 L 523.9400,105.0417 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="524.4400" text-length="11.1600px" y="103.1417" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40"><path d=" M 523.9400,69.6250 L 523.9400,62.1250 L 536.6000,62.1250 L 536.6000,69.6250 L 523.9400,69.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="524.4400" text-length="11.1600px" y="67.7250" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43"><path d=" M 523.9400,34.2083 L 523.9400,26.7083 L 536.6000,26.7083 L 536.6000,34.2083 L 523.9400,34.2083 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="524.4400" text-length="11.1600px" y="32.3083" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_18.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_18.svg new file mode 100644 index 0000000..779eab0 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_18.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,12.5000 L 560.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,8.5000 L 560.0000,12.5000 L 552.0000,16.5000 L 552.0000,8.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 268.8000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 268.8000,9.5000 L 268.8000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 336.0000,12.5000 L 336.0000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 336.0000,9.5000 L 336.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 403.2000,12.5000 L 403.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 403.2000,9.5000 L 403.2000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 470.4000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 470.4000,9.5000 L 470.4000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 537.6000,9.5000 L 537.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 201.6000,0.0000 L 201.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 205.6000,242.0000 L 201.6000,250.0000 L 197.6000,242.0000 L 205.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 201.6000,47.9167 L 537.6000,47.9167" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 204.6000,47.9167 L 198.6000,47.9167" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,83.3333 L 537.6000,83.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 204.6000,83.3333 L 198.6000,83.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 204.6000,118.7500 L 198.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,154.1667 L 537.6000,154.1667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 204.6000,154.1667 L 198.6000,154.1667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,189.5833 L 537.6000,189.5833" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 204.6000,189.5833 L 198.6000,189.5833" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 204.6000,225.0000 L 198.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,118.7500 L 201.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,118.7500 L 268.8000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 268.8000,118.7500 L 336.0000,30.2083" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 336.0000,30.2083 L 403.2000,30.2083" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 403.2000,30.2083 L 470.4000,207.2917" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 470.4000,207.2917 L 537.6000,207.2917" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="201.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="268.8000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="336.0000" cy="30.2083" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="403.2000" cy="30.2083" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="470.4000" cy="207.2917" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="537.6000" cy="207.2917" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 249.2200,24.5000 L 249.2200,14.0000 L 288.8800,14.0000 L 288.8800,24.5000 L 249.2200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="249.7200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_13"><path d=" M 316.4200,24.5000 L 316.4200,14.0000 L 356.0800,14.0000 L 356.0800,24.5000 L 316.4200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="316.9200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_16"><path d=" M 383.6200,24.5000 L 383.6200,14.0000 L 423.2800,14.0000 L 423.2800,24.5000 L 383.6200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="384.1200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_19"><path d=" M 450.8200,24.5000 L 450.8200,14.0000 L 490.4800,14.0000 L 490.4800,24.5000 L 450.8200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="451.3200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 518.0200,24.5000 L 518.0200,14.0000 L 557.6800,14.0000 L 557.6800,24.5000 L 518.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="518.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_25"><path d=" M 193.5200,35.7083 L 193.5200,25.2083 L 200.6000,25.2083 L 200.6000,35.7083 L 193.5200,35.7083 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="194.0200" text-length="5.5800px" y="33.3583" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28"><path d=" M 182.3600,71.1250 L 182.3600,60.6250 L 200.6000,60.6250 L 200.6000,71.1250 L 182.3600,71.1250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="182.8600" text-length="16.7400px" y="68.7750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31"><path d=" M 182.3600,106.5417 L 182.3600,96.0417 L 200.6000,96.0417 L 200.6000,106.5417 L 182.3600,106.5417 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="182.8600" text-length="16.7400px" y="104.1917" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34"><path d=" M 182.3600,141.9583 L 182.3600,131.4583 L 200.6000,131.4583 L 200.6000,141.9583 L 182.3600,141.9583 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="182.8600" text-length="16.7400px" y="139.6083" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37"><path d=" M 182.3600,177.3750 L 182.3600,166.8750 L 200.6000,166.8750 L 200.6000,177.3750 L 182.3600,177.3750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="182.8600" text-length="16.7400px" y="175.0250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40"><path d=" M 182.3600,212.7917 L 182.3600,202.2917 L 200.6000,202.2917 L 200.6000,212.7917 L 182.3600,212.7917 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="182.8600" text-length="16.7400px" y="210.4417" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_180.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_180.svg new file mode 100644 index 0000000..6ed6d73 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_180.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,12.5000 L 112.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,16.5000 L 112.0000,12.5000 L 120.0000,8.5000 L 120.0000,16.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 537.6000,12.5000 L 537.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 478.2260,12.5000 L 478.2260,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 478.2260,12.5000 L 478.2260,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 418.8520,12.5000 L 418.8520,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 418.8520,12.5000 L 418.8520,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 359.4780,12.5000 L 359.4780,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 359.4780,12.5000 L 359.4780,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 300.1040,12.5000 L 300.1040,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 300.1040,12.5000 L 300.1040,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 240.7300,12.5000 L 240.7300,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 240.7300,12.5000 L 240.7300,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 537.6000,0.0000 L 537.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 541.6000,242.0000 L 537.6000,250.0000 L 533.6000,242.0000 L 541.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,47.9167 L 537.6000,47.9167" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 540.6000,47.9167 L 534.6000,47.9167" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,83.3333 L 537.6000,83.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 540.6000,83.3333 L 534.6000,83.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 540.6000,118.7500 L 534.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,154.1667 L 537.6000,154.1667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 540.6000,154.1667 L 534.6000,154.1667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,189.5833 L 537.6000,189.5833" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 540.6000,189.5833 L 534.6000,189.5833" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 540.6000,225.0000 L 534.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 537.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 537.6000,118.7500 L 478.2260,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 478.2260,118.7500 L 418.8520,30.2083" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 418.8520,30.2083 L 359.4780,30.2083" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 359.4780,30.2083 L 300.1040,207.2917" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 300.1040,207.2917 L 240.7300,207.2917" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="537.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="478.2260" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="418.8520" cy="30.2083" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="359.4780" cy="30.2083" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="300.1040" cy="207.2917" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="240.7300" cy="207.2917" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( 332.21 537.6000 12.5000 )"><path d=" M 515.7676,25.6000 L 515.7676,12.0000 L 536.3476,12.0000 L 536.3476,25.6000 L 515.7676,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="516.2676" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="516.2676" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( 332.21 478.2260 12.5000 )"><path d=" M 456.3936,25.6000 L 456.3936,12.0000 L 476.9736,12.0000 L 476.9736,25.6000 L 456.3936,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="456.8936" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="456.8936" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( 332.21 418.8520 12.5000 )"><path d=" M 397.0196,25.6000 L 397.0196,12.0000 L 417.5996,12.0000 L 417.5996,25.6000 L 397.0196,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="397.5196" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="397.5196" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( 332.21 359.4780 12.5000 )"><path d=" M 337.6456,25.6000 L 337.6456,12.0000 L 358.2256,12.0000 L 358.2256,25.6000 L 337.6456,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="338.1456" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="338.1456" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( 332.21 300.1040 12.5000 )"><path d=" M 278.2716,25.6000 L 278.2716,12.0000 L 298.8516,12.0000 L 298.8516,25.6000 L 278.2716,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="278.7716" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="278.7716" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( 332.21 240.7300 12.5000 )"><path d=" M 218.8976,25.6000 L 218.8976,12.0000 L 239.4776,12.0000 L 239.4776,25.6000 L 218.8976,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="219.3976" text-length="19.0800px" y="17.6000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="219.3976" text-length="3.7200px" y="24.2000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 531.3800,34.2083 L 531.3800,26.7083 L 536.6000,26.7083 L 536.6000,34.2083 L 531.3800,34.2083 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="531.8800" text-length="3.7200px" y="32.3083" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31"><path d=" M 523.9400,69.6250 L 523.9400,62.1250 L 536.6000,62.1250 L 536.6000,69.6250 L 523.9400,69.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="524.4400" text-length="11.1600px" y="67.7250" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34"><path d=" M 523.9400,105.0417 L 523.9400,97.5417 L 536.6000,97.5417 L 536.6000,105.0417 L 523.9400,105.0417 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="524.4400" text-length="11.1600px" y="103.1417" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37"><path d=" M 523.9400,140.4583 L 523.9400,132.9583 L 536.6000,132.9583 L 536.6000,140.4583 L 523.9400,140.4583 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="524.4400" text-length="11.1600px" y="138.5583" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40"><path d=" M 523.9400,175.8750 L 523.9400,168.3750 L 536.6000,168.3750 L 536.6000,175.8750 L 523.9400,175.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="524.4400" text-length="11.1600px" y="173.9750" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43"><path d=" M 523.9400,211.2917 L 523.9400,203.7917 L 536.6000,203.7917 L 536.6000,211.2917 L 523.9400,211.2917 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="524.4400" text-length="11.1600px" y="209.3917" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_181.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_181.svg new file mode 100644 index 0000000..a36431c --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_181.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,225.0000 L 560.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,221.0000 L 560.0000,225.0000 L 552.0000,229.0000 L 552.0000,221.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 240.7300,25.0000 L 240.7300,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 240.7300,222.0000 L 240.7300,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 295.6240,25.0000 L 295.6240,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 295.6240,222.0000 L 295.6240,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 350.5180,25.0000 L 350.5180,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 350.5180,222.0000 L 350.5180,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 405.4120,25.0000 L 405.4120,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 405.4120,222.0000 L 405.4120,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 460.3060,25.0000 L 460.3060,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 460.3060,222.0000 L 460.3060,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 515.2000,222.0000 L 515.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 201.6000,250.0000 L 201.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 197.6000,8.0000 L 201.6000,0.0000 L 205.6000,8.0000 L 197.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,191.6667 L 515.2000,191.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 198.6000,191.6667 L 204.6000,191.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,158.3333 L 515.2000,158.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 198.6000,158.3333 L 204.6000,158.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 198.6000,125.0000 L 204.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,91.6667 L 515.2000,91.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 198.6000,91.6667 L 204.6000,91.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,58.3333 L 515.2000,58.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 198.6000,58.3333 L 204.6000,58.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 198.6000,25.0000 L 204.6000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 240.7300,125.0000 L 240.7300,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 240.7300,125.0000 L 295.6240,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 295.6240,125.0000 L 350.5180,208.3333" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 350.5180,208.3333 L 405.4120,208.3333" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 405.4120,208.3333 L 460.3060,41.6667" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 460.3060,41.6667 L 515.2000,41.6667" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="240.7300" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="295.6240" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="350.5180" cy="208.3333" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="405.4120" cy="208.3333" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="460.3060" cy="41.6667" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="515.2000" cy="41.6667" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( -27.79 240.7300 225.0000 )"><path d=" M 221.1500,238.1000 L 221.1500,224.5000 L 241.7300,224.5000 L 241.7300,238.1000 L 221.1500,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="221.6500" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="237.0100" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( -27.79 295.6240 225.0000 )"><path d=" M 276.0440,238.1000 L 276.0440,224.5000 L 296.6240,224.5000 L 296.6240,238.1000 L 276.0440,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="276.5440" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="291.9040" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( -27.79 350.5180 225.0000 )"><path d=" M 330.9380,238.1000 L 330.9380,224.5000 L 351.5180,224.5000 L 351.5180,238.1000 L 330.9380,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="331.4380" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="346.7980" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( -27.79 405.4120 225.0000 )"><path d=" M 385.8320,238.1000 L 385.8320,224.5000 L 406.4120,224.5000 L 406.4120,238.1000 L 385.8320,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="386.3320" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="401.6920" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( -27.79 460.3060 225.0000 )"><path d=" M 440.7260,238.1000 L 440.7260,224.5000 L 461.3060,224.5000 L 461.3060,238.1000 L 440.7260,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="441.2260" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="456.5860" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( -27.79 515.2000 225.0000 )"><path d=" M 495.6200,238.1000 L 495.6200,224.5000 L 516.2000,224.5000 L 516.2000,238.1000 L 495.6200,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="496.1200" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="511.4800" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 195.3800,212.3333 L 195.3800,204.8333 L 200.6000,204.8333 L 200.6000,212.3333 L 195.3800,212.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="195.8800" text-length="3.7200px" y="210.4333" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31"><path d=" M 187.9400,179.0000 L 187.9400,171.5000 L 200.6000,171.5000 L 200.6000,179.0000 L 187.9400,179.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="188.4400" text-length="11.1600px" y="177.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34"><path d=" M 187.9400,145.6667 L 187.9400,138.1667 L 200.6000,138.1667 L 200.6000,145.6667 L 187.9400,145.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="188.4400" text-length="11.1600px" y="143.7667" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37"><path d=" M 187.9400,112.3333 L 187.9400,104.8333 L 200.6000,104.8333 L 200.6000,112.3333 L 187.9400,112.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="188.4400" text-length="11.1600px" y="110.4333" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40"><path d=" M 187.9400,79.0000 L 187.9400,71.5000 L 200.6000,71.5000 L 200.6000,79.0000 L 187.9400,79.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="188.4400" text-length="11.1600px" y="77.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43"><path d=" M 187.9400,45.6667 L 187.9400,38.1667 L 200.6000,38.1667 L 200.6000,45.6667 L 187.9400,45.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="188.4400" text-length="11.1600px" y="43.7667" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_182.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_182.svg new file mode 100644 index 0000000..6b35aea --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_182.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,25.0000 L 560.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,21.0000 L 560.0000,25.0000 L 552.0000,29.0000 L 552.0000,21.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 240.7300,25.0000 L 240.7300,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 240.7300,22.0000 L 240.7300,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 295.6240,25.0000 L 295.6240,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 295.6240,22.0000 L 295.6240,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 350.5180,25.0000 L 350.5180,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 350.5180,22.0000 L 350.5180,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 405.4120,25.0000 L 405.4120,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 405.4120,22.0000 L 405.4120,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 460.3060,25.0000 L 460.3060,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 460.3060,22.0000 L 460.3060,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 515.2000,22.0000 L 515.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 201.6000,0.0000 L 201.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 205.6000,242.0000 L 201.6000,250.0000 L 197.6000,242.0000 L 205.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,58.3333 L 515.2000,58.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 204.6000,58.3333 L 198.6000,58.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,91.6667 L 515.2000,91.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 204.6000,91.6667 L 198.6000,91.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 204.6000,125.0000 L 198.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,158.3333 L 515.2000,158.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 204.6000,158.3333 L 198.6000,158.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,191.6667 L 515.2000,191.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 204.6000,191.6667 L 198.6000,191.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 204.6000,225.0000 L 198.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 240.7300,125.0000 L 240.7300,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 240.7300,125.0000 L 295.6240,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 295.6240,125.0000 L 350.5180,41.6667" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 350.5180,41.6667 L 405.4120,41.6667" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 405.4120,41.6667 L 460.3060,208.3333" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 460.3060,208.3333 L 515.2000,208.3333" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="240.7300" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="295.6240" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="350.5180" cy="41.6667" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="405.4120" cy="41.6667" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="460.3060" cy="208.3333" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="515.2000" cy="208.3333" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( -27.79 240.7300 25.0000 )"><path d=" M 221.1500,38.1000 L 221.1500,24.5000 L 241.7300,24.5000 L 241.7300,38.1000 L 221.1500,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="221.6500" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="237.0100" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( -27.79 295.6240 25.0000 )"><path d=" M 276.0440,38.1000 L 276.0440,24.5000 L 296.6240,24.5000 L 296.6240,38.1000 L 276.0440,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="276.5440" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="291.9040" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( -27.79 350.5180 25.0000 )"><path d=" M 330.9380,38.1000 L 330.9380,24.5000 L 351.5180,24.5000 L 351.5180,38.1000 L 330.9380,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="331.4380" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="346.7980" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( -27.79 405.4120 25.0000 )"><path d=" M 385.8320,38.1000 L 385.8320,24.5000 L 406.4120,24.5000 L 406.4120,38.1000 L 385.8320,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="386.3320" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="401.6920" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( -27.79 460.3060 25.0000 )"><path d=" M 440.7260,38.1000 L 440.7260,24.5000 L 461.3060,24.5000 L 461.3060,38.1000 L 440.7260,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="441.2260" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="456.5860" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( -27.79 515.2000 25.0000 )"><path d=" M 495.6200,38.1000 L 495.6200,24.5000 L 516.2000,24.5000 L 516.2000,38.1000 L 495.6200,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="496.1200" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="511.4800" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 195.3800,45.6667 L 195.3800,38.1667 L 200.6000,38.1667 L 200.6000,45.6667 L 195.3800,45.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="195.8800" text-length="3.7200px" y="43.7667" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31"><path d=" M 187.9400,79.0000 L 187.9400,71.5000 L 200.6000,71.5000 L 200.6000,79.0000 L 187.9400,79.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="188.4400" text-length="11.1600px" y="77.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34"><path d=" M 187.9400,112.3333 L 187.9400,104.8333 L 200.6000,104.8333 L 200.6000,112.3333 L 187.9400,112.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="188.4400" text-length="11.1600px" y="110.4333" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37"><path d=" M 187.9400,145.6667 L 187.9400,138.1667 L 200.6000,138.1667 L 200.6000,145.6667 L 187.9400,145.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="188.4400" text-length="11.1600px" y="143.7667" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40"><path d=" M 187.9400,179.0000 L 187.9400,171.5000 L 200.6000,171.5000 L 200.6000,179.0000 L 187.9400,179.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="188.4400" text-length="11.1600px" y="177.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43"><path d=" M 187.9400,212.3333 L 187.9400,204.8333 L 200.6000,204.8333 L 200.6000,212.3333 L 187.9400,212.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="188.4400" text-length="11.1600px" y="210.4333" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_183.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_183.svg new file mode 100644 index 0000000..37c9a1c --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_183.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,225.0000 L 112.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,229.0000 L 112.0000,225.0000 L 120.0000,221.0000 L 120.0000,229.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 515.2000,225.0000 L 515.2000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 460.3060,25.0000 L 460.3060,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 460.3060,225.0000 L 460.3060,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 405.4120,25.0000 L 405.4120,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 405.4120,225.0000 L 405.4120,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 350.5180,25.0000 L 350.5180,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 350.5180,225.0000 L 350.5180,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 295.6240,25.0000 L 295.6240,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 295.6240,225.0000 L 295.6240,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 240.7300,25.0000 L 240.7300,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 240.7300,225.0000 L 240.7300,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 515.2000,250.0000 L 515.2000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 511.2000,8.0000 L 515.2000,0.0000 L 519.2000,8.0000 L 511.2000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,191.6667 L 515.2000,191.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 512.2000,191.6667 L 518.2000,191.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,158.3333 L 515.2000,158.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 512.2000,158.3333 L 518.2000,158.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 512.2000,125.0000 L 518.2000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,91.6667 L 515.2000,91.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 512.2000,91.6667 L 518.2000,91.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,58.3333 L 515.2000,58.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 512.2000,58.3333 L 518.2000,58.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 512.2000,25.0000 L 518.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 515.2000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 515.2000,125.0000 L 460.3060,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 460.3060,125.0000 L 405.4120,208.3333" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 405.4120,208.3333 L 350.5180,208.3333" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 350.5180,208.3333 L 295.6240,41.6667" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 295.6240,41.6667 L 240.7300,41.6667" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="515.2000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="460.3060" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="405.4120" cy="208.3333" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="350.5180" cy="208.3333" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="295.6240" cy="41.6667" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="240.7300" cy="41.6667" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( 332.21 515.2000 225.0000 )"><path d=" M 493.4992,238.1000 L 493.4992,224.5000 L 514.0792,224.5000 L 514.0792,238.1000 L 493.4992,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="493.9992" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="493.9992" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( 332.21 460.3060 225.0000 )"><path d=" M 438.6052,238.1000 L 438.6052,224.5000 L 459.1852,224.5000 L 459.1852,238.1000 L 438.6052,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="439.1052" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="439.1052" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( 332.21 405.4120 225.0000 )"><path d=" M 383.7112,238.1000 L 383.7112,224.5000 L 404.2912,224.5000 L 404.2912,238.1000 L 383.7112,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="384.2112" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="384.2112" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( 332.21 350.5180 225.0000 )"><path d=" M 328.8172,238.1000 L 328.8172,224.5000 L 349.3972,224.5000 L 349.3972,238.1000 L 328.8172,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="329.3172" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="329.3172" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( 332.21 295.6240 225.0000 )"><path d=" M 273.9232,238.1000 L 273.9232,224.5000 L 294.5032,224.5000 L 294.5032,238.1000 L 273.9232,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="274.4232" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="274.4232" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( 332.21 240.7300 225.0000 )"><path d=" M 219.0293,238.1000 L 219.0293,224.5000 L 239.6093,224.5000 L 239.6093,238.1000 L 219.0293,238.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="219.5293" text-length="19.0800px" y="230.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="219.5293" text-length="3.7200px" y="236.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 508.9800,212.3333 L 508.9800,204.8333 L 514.2000,204.8333 L 514.2000,212.3333 L 508.9800,212.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="509.4800" text-length="3.7200px" y="210.4333" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31"><path d=" M 501.5400,179.0000 L 501.5400,171.5000 L 514.2000,171.5000 L 514.2000,179.0000 L 501.5400,179.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="502.0400" text-length="11.1600px" y="177.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34"><path d=" M 501.5400,145.6667 L 501.5400,138.1667 L 514.2000,138.1667 L 514.2000,145.6667 L 501.5400,145.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="502.0400" text-length="11.1600px" y="143.7667" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37"><path d=" M 501.5400,112.3333 L 501.5400,104.8333 L 514.2000,104.8333 L 514.2000,112.3333 L 501.5400,112.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="502.0400" text-length="11.1600px" y="110.4333" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40"><path d=" M 501.5400,79.0000 L 501.5400,71.5000 L 514.2000,71.5000 L 514.2000,79.0000 L 501.5400,79.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="502.0400" text-length="11.1600px" y="77.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43"><path d=" M 501.5400,45.6667 L 501.5400,38.1667 L 514.2000,38.1667 L 514.2000,45.6667 L 501.5400,45.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="502.0400" text-length="11.1600px" y="43.7667" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_184.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_184.svg new file mode 100644 index 0000000..bffed1b --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_184.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,25.0000 L 112.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,29.0000 L 112.0000,25.0000 L 120.0000,21.0000 L 120.0000,29.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 515.2000,25.0000 L 515.2000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 460.3060,25.0000 L 460.3060,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 460.3060,25.0000 L 460.3060,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 405.4120,25.0000 L 405.4120,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 405.4120,25.0000 L 405.4120,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 350.5180,25.0000 L 350.5180,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 350.5180,25.0000 L 350.5180,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 295.6240,25.0000 L 295.6240,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 295.6240,25.0000 L 295.6240,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 240.7300,25.0000 L 240.7300,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 240.7300,25.0000 L 240.7300,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 515.2000,0.0000 L 515.2000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 519.2000,242.0000 L 515.2000,250.0000 L 511.2000,242.0000 L 519.2000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,58.3333 L 515.2000,58.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 518.2000,58.3333 L 512.2000,58.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,91.6667 L 515.2000,91.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 518.2000,91.6667 L 512.2000,91.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 518.2000,125.0000 L 512.2000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,158.3333 L 515.2000,158.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 518.2000,158.3333 L 512.2000,158.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,191.6667 L 515.2000,191.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 518.2000,191.6667 L 512.2000,191.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 518.2000,225.0000 L 512.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 515.2000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 515.2000,125.0000 L 460.3060,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 460.3060,125.0000 L 405.4120,41.6667" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 405.4120,41.6667 L 350.5180,41.6667" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 350.5180,41.6667 L 295.6240,208.3333" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 295.6240,208.3333 L 240.7300,208.3333" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="515.2000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="460.3060" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="405.4120" cy="41.6667" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="350.5180" cy="41.6667" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="295.6240" cy="208.3333" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="240.7300" cy="208.3333" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( 332.21 515.2000 25.0000 )"><path d=" M 493.4992,38.1000 L 493.4992,24.5000 L 514.0792,24.5000 L 514.0792,38.1000 L 493.4992,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="493.9992" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="493.9992" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( 332.21 460.3060 25.0000 )"><path d=" M 438.6052,38.1000 L 438.6052,24.5000 L 459.1852,24.5000 L 459.1852,38.1000 L 438.6052,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="439.1052" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="439.1052" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( 332.21 405.4120 25.0000 )"><path d=" M 383.7112,38.1000 L 383.7112,24.5000 L 404.2912,24.5000 L 404.2912,38.1000 L 383.7112,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="384.2112" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="384.2112" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( 332.21 350.5180 25.0000 )"><path d=" M 328.8172,38.1000 L 328.8172,24.5000 L 349.3972,24.5000 L 349.3972,38.1000 L 328.8172,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="329.3172" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="329.3172" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( 332.21 295.6240 25.0000 )"><path d=" M 273.9232,38.1000 L 273.9232,24.5000 L 294.5032,24.5000 L 294.5032,38.1000 L 273.9232,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="274.4232" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="274.4232" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( 332.21 240.7300 25.0000 )"><path d=" M 219.0293,38.1000 L 219.0293,24.5000 L 239.6093,24.5000 L 239.6093,38.1000 L 219.0293,38.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="219.5293" text-length="19.0800px" y="30.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="219.5293" text-length="3.7200px" y="36.7000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 508.9800,45.6667 L 508.9800,38.1667 L 514.2000,38.1667 L 514.2000,45.6667 L 508.9800,45.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="509.4800" text-length="3.7200px" y="43.7667" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31"><path d=" M 501.5400,79.0000 L 501.5400,71.5000 L 514.2000,71.5000 L 514.2000,79.0000 L 501.5400,79.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="502.0400" text-length="11.1600px" y="77.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34"><path d=" M 501.5400,112.3333 L 501.5400,104.8333 L 514.2000,104.8333 L 514.2000,112.3333 L 501.5400,112.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="502.0400" text-length="11.1600px" y="110.4333" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37"><path d=" M 501.5400,145.6667 L 501.5400,138.1667 L 514.2000,138.1667 L 514.2000,145.6667 L 501.5400,145.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="502.0400" text-length="11.1600px" y="143.7667" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40"><path d=" M 501.5400,179.0000 L 501.5400,171.5000 L 514.2000,171.5000 L 514.2000,179.0000 L 501.5400,179.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="502.0400" text-length="11.1600px" y="177.1000" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43"><path d=" M 501.5400,212.3333 L 501.5400,204.8333 L 514.2000,204.8333 L 514.2000,212.3333 L 501.5400,212.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="502.0400" text-length="11.1600px" y="210.4333" style="font-size: 6px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_185.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_185.svg new file mode 100644 index 0000000..b066a24 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_185.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,200.0000 L 560.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,196.0000 L 560.0000,200.0000 L 552.0000,204.0000 L 552.0000,196.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 235.0601,12.5000 L 235.0601,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 235.0601,197.0000 L 235.0601,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 295.5680,12.5000 L 295.5680,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 295.5680,197.0000 L 295.5680,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 356.0760,12.5000 L 356.0760,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 356.0760,197.0000 L 356.0760,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 416.5840,12.5000 L 416.5840,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 416.5840,197.0000 L 416.5840,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 477.0920,12.5000 L 477.0920,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 477.0920,197.0000 L 477.0920,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 537.6000,197.0000 L 537.6000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 156.8000,250.0000 L 156.8000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 153.8000,6.0000 L 156.8000,0.0000 L 159.8000,6.0000 L 153.8000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,168.7500 L 537.6000,168.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 153.8000,168.7500 L 159.8000,168.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,137.5000 L 537.6000,137.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 153.8000,137.5000 L 159.8000,137.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 153.8000,106.2500 L 159.8000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,75.0000 L 537.6000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 153.8000,75.0000 L 159.8000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,43.7500 L 537.6000,43.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 153.8000,43.7500 L 159.8000,43.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 153.8000,12.5000 L 159.8000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 235.0601,106.2500 L 235.0601,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 235.0601,106.2500 L 295.5680,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 295.5680,106.2500 L 356.0760,184.3750" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 356.0760,184.3750 L 416.5840,184.3750" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 416.5840,184.3750 L 477.0920,28.1250" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 477.0920,28.1250 L 537.6000,28.1250" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="235.0601" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="295.5680" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="356.0760" cy="184.3750" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="416.5840" cy="184.3750" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="477.0920" cy="28.1250" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="537.6000" cy="28.1250" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( -27.79 235.0601 200.0000 )"><path d=" M 205.9401,219.1000 L 205.9401,199.5000 L 236.0601,199.5000 L 236.0601,219.1000 L 205.9401,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="206.4401" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="229.4801" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( -27.79 295.5680 200.0000 )"><path d=" M 266.4480,219.1000 L 266.4480,199.5000 L 296.5680,199.5000 L 296.5680,219.1000 L 266.4480,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="266.9480" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="289.9880" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( -27.79 356.0760 200.0000 )"><path d=" M 326.9560,219.1000 L 326.9560,199.5000 L 357.0760,199.5000 L 357.0760,219.1000 L 326.9560,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="327.4560" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="350.4960" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( -27.79 416.5840 200.0000 )"><path d=" M 387.4640,219.1000 L 387.4640,199.5000 L 417.5840,199.5000 L 417.5840,219.1000 L 387.4640,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="387.9640" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="411.0040" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( -27.79 477.0920 200.0000 )"><path d=" M 447.9720,219.1000 L 447.9720,199.5000 L 478.0920,199.5000 L 478.0920,219.1000 L 447.9720,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="448.4720" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="471.5120" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( -27.79 537.6000 200.0000 )"><path d=" M 508.4800,219.1000 L 508.4800,199.5000 L 538.6000,199.5000 L 538.6000,219.1000 L 508.4800,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="508.9800" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="532.0200" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 148.7200,189.8750 L 148.7200,179.3750 L 155.8000,179.3750 L 155.8000,189.8750 L 148.7200,189.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="149.2200" text-length="5.5800px" y="187.5250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31"><path d=" M 137.5600,158.6250 L 137.5600,148.1250 L 155.8000,148.1250 L 155.8000,158.6250 L 137.5600,158.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="138.0600" text-length="16.7400px" y="156.2750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34"><path d=" M 137.5600,127.3750 L 137.5600,116.8750 L 155.8000,116.8750 L 155.8000,127.3750 L 137.5600,127.3750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="138.0600" text-length="16.7400px" y="125.0250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37"><path d=" M 137.5600,96.1250 L 137.5600,85.6250 L 155.8000,85.6250 L 155.8000,96.1250 L 137.5600,96.1250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="138.0600" text-length="16.7400px" y="93.7750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40"><path d=" M 137.5600,64.8750 L 137.5600,54.3750 L 155.8000,54.3750 L 155.8000,64.8750 L 137.5600,64.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="138.0600" text-length="16.7400px" y="62.5250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43"><path d=" M 137.5600,33.6250 L 137.5600,23.1250 L 155.8000,23.1250 L 155.8000,33.6250 L 137.5600,33.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="138.0600" text-length="16.7400px" y="31.2750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_186.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_186.svg new file mode 100644 index 0000000..22bdaa0 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_186.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,12.5000 L 560.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,8.5000 L 560.0000,12.5000 L 552.0000,16.5000 L 552.0000,8.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 235.0601,12.5000 L 235.0601,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 235.0601,9.5000 L 235.0601,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 295.5680,12.5000 L 295.5680,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 295.5680,9.5000 L 295.5680,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 356.0760,12.5000 L 356.0760,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 356.0760,9.5000 L 356.0760,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 416.5840,12.5000 L 416.5840,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 416.5840,9.5000 L 416.5840,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 477.0920,12.5000 L 477.0920,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 477.0920,9.5000 L 477.0920,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 537.6000,9.5000 L 537.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 156.8000,0.0000 L 156.8000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 160.3000,243.0000 L 156.8000,250.0000 L 153.3000,243.0000 L 160.3000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,43.7500 L 537.6000,43.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 159.8000,43.7500 L 153.8000,43.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,75.0000 L 537.6000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 159.8000,75.0000 L 153.8000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 159.8000,106.2500 L 153.8000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,137.5000 L 537.6000,137.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 159.8000,137.5000 L 153.8000,137.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,168.7500 L 537.6000,168.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 159.8000,168.7500 L 153.8000,168.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 159.8000,200.0000 L 153.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 235.0601,106.2500 L 235.0601,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 235.0601,106.2500 L 295.5680,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 295.5680,106.2500 L 356.0760,28.1250" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 356.0760,28.1250 L 416.5840,28.1250" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 416.5840,28.1250 L 477.0920,184.3750" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 477.0920,184.3750 L 537.6000,184.3750" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="235.0601" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="295.5680" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="356.0760" cy="28.1250" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="416.5840" cy="28.1250" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="477.0920" cy="184.3750" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="537.6000" cy="184.3750" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( -27.79 235.0601 12.5000 )"><path d=" M 205.9401,31.6000 L 205.9401,12.0000 L 236.0601,12.0000 L 236.0601,31.6000 L 205.9401,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="206.4401" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="229.4801" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( -27.79 295.5680 12.5000 )"><path d=" M 266.4480,31.6000 L 266.4480,12.0000 L 296.5680,12.0000 L 296.5680,31.6000 L 266.4480,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="266.9480" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="289.9880" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( -27.79 356.0760 12.5000 )"><path d=" M 326.9560,31.6000 L 326.9560,12.0000 L 357.0760,12.0000 L 357.0760,31.6000 L 326.9560,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="327.4560" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="350.4960" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( -27.79 416.5840 12.5000 )"><path d=" M 387.4640,31.6000 L 387.4640,12.0000 L 417.5840,12.0000 L 417.5840,31.6000 L 387.4640,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="387.9640" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="411.0040" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( -27.79 477.0920 12.5000 )"><path d=" M 447.9720,31.6000 L 447.9720,12.0000 L 478.0920,12.0000 L 478.0920,31.6000 L 447.9720,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="448.4720" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="471.5120" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( -27.79 537.6000 12.5000 )"><path d=" M 508.4800,31.6000 L 508.4800,12.0000 L 538.6000,12.0000 L 538.6000,31.6000 L 508.4800,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="508.9800" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="532.0200" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 148.7200,33.6250 L 148.7200,23.1250 L 155.8000,23.1250 L 155.8000,33.6250 L 148.7200,33.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="149.2200" text-length="5.5800px" y="31.2750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31"><path d=" M 137.5600,64.8750 L 137.5600,54.3750 L 155.8000,54.3750 L 155.8000,64.8750 L 137.5600,64.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="138.0600" text-length="16.7400px" y="62.5250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34"><path d=" M 137.5600,96.1250 L 137.5600,85.6250 L 155.8000,85.6250 L 155.8000,96.1250 L 137.5600,96.1250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="138.0600" text-length="16.7400px" y="93.7750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37"><path d=" M 137.5600,127.3750 L 137.5600,116.8750 L 155.8000,116.8750 L 155.8000,127.3750 L 137.5600,127.3750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="138.0600" text-length="16.7400px" y="125.0250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40"><path d=" M 137.5600,158.6250 L 137.5600,148.1250 L 155.8000,148.1250 L 155.8000,158.6250 L 137.5600,158.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="138.0600" text-length="16.7400px" y="156.2750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43"><path d=" M 137.5600,189.8750 L 137.5600,179.3750 L 155.8000,179.3750 L 155.8000,189.8750 L 137.5600,189.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="138.0600" text-length="16.7400px" y="187.5250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_187.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_187.svg new file mode 100644 index 0000000..f4683ed --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_187.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,200.0000 L 112.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,204.0000 L 112.0000,200.0000 L 120.0000,196.0000 L 120.0000,204.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 537.6000,200.0000 L 537.6000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 477.0920,12.5000 L 477.0920,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 477.0920,200.0000 L 477.0920,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 416.5840,12.5000 L 416.5840,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 416.5840,200.0000 L 416.5840,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 356.0760,12.5000 L 356.0760,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 356.0760,200.0000 L 356.0760,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 295.5680,12.5000 L 295.5680,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 295.5680,200.0000 L 295.5680,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 235.0601,12.5000 L 235.0601,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 235.0601,200.0000 L 235.0601,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 537.6000,250.0000 L 537.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 534.6000,6.0000 L 537.6000,0.0000 L 540.6000,6.0000 L 534.6000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,168.7500 L 537.6000,168.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 534.6000,168.7500 L 540.6000,168.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,137.5000 L 537.6000,137.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 534.6000,137.5000 L 540.6000,137.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 534.6000,106.2500 L 540.6000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,75.0000 L 537.6000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 534.6000,75.0000 L 540.6000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,43.7500 L 537.6000,43.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 534.6000,43.7500 L 540.6000,43.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 534.6000,12.5000 L 540.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 537.6000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 537.6000,106.2500 L 477.0920,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 477.0920,106.2500 L 416.5840,184.3750" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 416.5840,184.3750 L 356.0760,184.3750" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 356.0760,184.3750 L 295.5680,28.1250" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 295.5680,28.1250 L 235.0601,28.1250" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="537.6000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="477.0920" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="416.5840" cy="184.3750" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="356.0760" cy="184.3750" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="295.5680" cy="28.1250" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="235.0601" cy="28.1250" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( 332.21 537.6000 200.0000 )"><path d=" M 491.0007,219.1000 L 491.0007,199.5000 L 521.1207,199.5000 L 521.1207,219.1000 L 491.0007,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="491.5007" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="491.5007" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( 332.21 477.0920 200.0000 )"><path d=" M 430.4927,219.1000 L 430.4927,199.5000 L 460.6127,199.5000 L 460.6127,219.1000 L 430.4927,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="430.9927" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="430.9927" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( 332.21 416.5840 200.0000 )"><path d=" M 369.9847,219.1000 L 369.9847,199.5000 L 400.1047,199.5000 L 400.1047,219.1000 L 369.9847,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="370.4847" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="370.4847" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( 332.21 356.0760 200.0000 )"><path d=" M 309.4767,219.1000 L 309.4767,199.5000 L 339.5967,199.5000 L 339.5967,219.1000 L 309.4767,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="309.9767" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="309.9767" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( 332.21 295.5680 200.0000 )"><path d=" M 248.9687,219.1000 L 248.9687,199.5000 L 279.0887,199.5000 L 279.0887,219.1000 L 248.9687,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="249.4687" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="249.4687" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( 332.21 235.0601 200.0000 )"><path d=" M 188.4608,219.1000 L 188.4608,199.5000 L 218.5808,199.5000 L 218.5808,219.1000 L 188.4608,219.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="188.9608" text-length="28.6200px" y="207.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="188.9608" text-length="5.5800px" y="217.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 529.5200,189.8750 L 529.5200,179.3750 L 536.6000,179.3750 L 536.6000,189.8750 L 529.5200,189.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="530.0200" text-length="5.5800px" y="187.5250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31"><path d=" M 518.3600,158.6250 L 518.3600,148.1250 L 536.6000,148.1250 L 536.6000,158.6250 L 518.3600,158.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="518.8600" text-length="16.7400px" y="156.2750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34"><path d=" M 518.3600,127.3750 L 518.3600,116.8750 L 536.6000,116.8750 L 536.6000,127.3750 L 518.3600,127.3750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="518.8600" text-length="16.7400px" y="125.0250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37"><path d=" M 518.3600,96.1250 L 518.3600,85.6250 L 536.6000,85.6250 L 536.6000,96.1250 L 518.3600,96.1250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="518.8600" text-length="16.7400px" y="93.7750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40"><path d=" M 518.3600,64.8750 L 518.3600,54.3750 L 536.6000,54.3750 L 536.6000,64.8750 L 518.3600,64.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="518.8600" text-length="16.7400px" y="62.5250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43"><path d=" M 518.3600,33.6250 L 518.3600,23.1250 L 536.6000,23.1250 L 536.6000,33.6250 L 518.3600,33.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="518.8600" text-length="16.7400px" y="31.2750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_188.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_188.svg new file mode 100644 index 0000000..07a8475 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_188.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,12.5000 L 112.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,16.5000 L 112.0000,12.5000 L 120.0000,8.5000 L 120.0000,16.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 537.6000,12.5000 L 537.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 477.0920,12.5000 L 477.0920,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 477.0920,12.5000 L 477.0920,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 416.5840,12.5000 L 416.5840,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 416.5840,12.5000 L 416.5840,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 356.0760,12.5000 L 356.0760,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 356.0760,12.5000 L 356.0760,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 295.5680,12.5000 L 295.5680,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 295.5680,12.5000 L 295.5680,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 235.0601,12.5000 L 235.0601,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 235.0601,12.5000 L 235.0601,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 537.6000,0.0000 L 537.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 541.1000,243.0000 L 537.6000,250.0000 L 534.1000,243.0000 L 541.1000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,43.7500 L 537.6000,43.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 540.6000,43.7500 L 534.6000,43.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,75.0000 L 537.6000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 540.6000,75.0000 L 534.6000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 540.6000,106.2500 L 534.6000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,137.5000 L 537.6000,137.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 540.6000,137.5000 L 534.6000,137.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,168.7500 L 537.6000,168.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 540.6000,168.7500 L 534.6000,168.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 540.6000,200.0000 L 534.6000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 537.6000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 537.6000,106.2500 L 477.0920,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 477.0920,106.2500 L 416.5840,28.1250" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 416.5840,28.1250 L 356.0760,28.1250" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 356.0760,28.1250 L 295.5680,184.3750" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 295.5680,184.3750 L 235.0601,184.3750" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="537.6000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="477.0920" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="416.5840" cy="28.1250" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="356.0760" cy="28.1250" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="295.5680" cy="184.3750" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="235.0601" cy="184.3750" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( 332.21 537.6000 12.5000 )"><path d=" M 491.0007,31.6000 L 491.0007,12.0000 L 521.1207,12.0000 L 521.1207,31.6000 L 491.0007,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="491.5007" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="491.5007" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( 332.21 477.0920 12.5000 )"><path d=" M 430.4927,31.6000 L 430.4927,12.0000 L 460.6127,12.0000 L 460.6127,31.6000 L 430.4927,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="430.9927" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="430.9927" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( 332.21 416.5840 12.5000 )"><path d=" M 369.9847,31.6000 L 369.9847,12.0000 L 400.1047,12.0000 L 400.1047,31.6000 L 369.9847,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="370.4847" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="370.4847" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( 332.21 356.0760 12.5000 )"><path d=" M 309.4767,31.6000 L 309.4767,12.0000 L 339.5967,12.0000 L 339.5967,31.6000 L 309.4767,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="309.9767" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="309.9767" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( 332.21 295.5680 12.5000 )"><path d=" M 248.9687,31.6000 L 248.9687,12.0000 L 279.0887,12.0000 L 279.0887,31.6000 L 248.9687,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="249.4687" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="249.4687" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( 332.21 235.0601 12.5000 )"><path d=" M 188.4608,31.6000 L 188.4608,12.0000 L 218.5808,12.0000 L 218.5808,31.6000 L 188.4608,31.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="188.9608" text-length="28.6200px" y="20.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="188.9608" text-length="5.5800px" y="30.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 529.5200,33.6250 L 529.5200,23.1250 L 536.6000,23.1250 L 536.6000,33.6250 L 529.5200,33.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="530.0200" text-length="5.5800px" y="31.2750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31"><path d=" M 518.3600,64.8750 L 518.3600,54.3750 L 536.6000,54.3750 L 536.6000,64.8750 L 518.3600,64.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="518.8600" text-length="16.7400px" y="62.5250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34"><path d=" M 518.3600,96.1250 L 518.3600,85.6250 L 536.6000,85.6250 L 536.6000,96.1250 L 518.3600,96.1250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="518.8600" text-length="16.7400px" y="93.7750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37"><path d=" M 518.3600,127.3750 L 518.3600,116.8750 L 536.6000,116.8750 L 536.6000,127.3750 L 518.3600,127.3750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="518.8600" text-length="16.7400px" y="125.0250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40"><path d=" M 518.3600,158.6250 L 518.3600,148.1250 L 536.6000,148.1250 L 536.6000,158.6250 L 518.3600,158.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="518.8600" text-length="16.7400px" y="156.2750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43"><path d=" M 518.3600,189.8750 L 518.3600,179.3750 L 536.6000,179.3750 L 536.6000,189.8750 L 518.3600,189.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="518.8600" text-length="16.7400px" y="187.5250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_189.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_189.svg new file mode 100644 index 0000000..c0ba7bb --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_189.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,200.0000 L 560.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,196.0000 L 560.0000,200.0000 L 552.0000,204.0000 L 552.0000,196.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 235.0601,25.0000 L 235.0601,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 235.0601,197.0000 L 235.0601,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 291.0880,25.0000 L 291.0880,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 291.0880,197.0000 L 291.0880,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 347.1160,25.0000 L 347.1160,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 347.1160,197.0000 L 347.1160,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 403.1440,25.0000 L 403.1440,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 403.1440,197.0000 L 403.1440,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 459.1720,25.0000 L 459.1720,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 459.1720,197.0000 L 459.1720,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 515.2000,197.0000 L 515.2000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 156.8000,250.0000 L 156.8000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 153.8000,6.0000 L 156.8000,0.0000 L 159.8000,6.0000 L 153.8000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,170.8333 L 515.2000,170.8333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 153.8000,170.8333 L 159.8000,170.8333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,141.6667 L 515.2000,141.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 153.8000,141.6667 L 159.8000,141.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 153.8000,112.5000 L 159.8000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,83.3333 L 515.2000,83.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 153.8000,83.3333 L 159.8000,83.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,54.1667 L 515.2000,54.1667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 153.8000,54.1667 L 159.8000,54.1667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 153.8000,25.0000 L 159.8000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 235.0601,112.5000 L 235.0601,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 235.0601,112.5000 L 291.0880,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 291.0880,112.5000 L 347.1160,185.4167" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 347.1160,185.4167 L 403.1440,185.4167" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 403.1440,185.4167 L 459.1720,39.5833" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 459.1720,39.5833 L 515.2000,39.5833" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="235.0601" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="291.0880" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="347.1160" cy="185.4167" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="403.1440" cy="185.4167" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="459.1720" cy="39.5833" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="515.2000" cy="39.5833" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( -27.79 235.0601 200.0000 )"><path d=" M 190.0401,229.1000 L 190.0401,199.5000 L 236.0601,199.5000 L 236.0601,229.1000 L 190.0401,229.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="190.5401" text-length="44.5200px" y="211.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="226.3801" text-length="8.6800px" y="227.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( -27.79 291.0880 200.0000 )"><path d=" M 246.0680,229.1000 L 246.0680,199.5000 L 292.0880,199.5000 L 292.0880,229.1000 L 246.0680,229.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="246.5680" text-length="44.5200px" y="211.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="282.4080" text-length="8.6800px" y="227.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( -27.79 347.1160 200.0000 )"><path d=" M 302.0960,229.1000 L 302.0960,199.5000 L 348.1160,199.5000 L 348.1160,229.1000 L 302.0960,229.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="302.5960" text-length="44.5200px" y="211.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="338.4360" text-length="8.6800px" y="227.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( -27.79 403.1440 200.0000 )"><path d=" M 358.1240,229.1000 L 358.1240,199.5000 L 404.1440,199.5000 L 404.1440,229.1000 L 358.1240,229.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="358.6240" text-length="44.5200px" y="211.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="394.4640" text-length="8.6800px" y="227.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( -27.79 459.1720 200.0000 )"><path d=" M 414.1520,229.1000 L 414.1520,199.5000 L 460.1720,199.5000 L 460.1720,229.1000 L 414.1520,229.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="414.6520" text-length="44.5200px" y="211.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="450.4920" text-length="8.6800px" y="227.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( -27.79 515.2000 200.0000 )"><path d=" M 470.1800,229.1000 L 470.1800,199.5000 L 516.2000,199.5000 L 516.2000,229.1000 L 470.1800,229.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="470.6800" text-length="44.5200px" y="211.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="506.5200" text-length="8.6800px" y="227.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 145.6200,193.4167 L 145.6200,177.9167 L 155.8000,177.9167 L 155.8000,193.4167 L 145.6200,193.4167 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="146.1200" text-length="8.6800px" y="190.3167" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31"><path d=" M 128.2600,164.2500 L 128.2600,148.7500 L 155.8000,148.7500 L 155.8000,164.2500 L 128.2600,164.2500 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="128.7600" text-length="26.0400px" y="161.1500" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34"><path d=" M 128.2600,135.0833 L 128.2600,119.5833 L 155.8000,119.5833 L 155.8000,135.0833 L 128.2600,135.0833 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="128.7600" text-length="26.0400px" y="131.9833" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37"><path d=" M 128.2600,105.9167 L 128.2600,90.4167 L 155.8000,90.4167 L 155.8000,105.9167 L 128.2600,105.9167 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="128.7600" text-length="26.0400px" y="102.8167" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40"><path d=" M 128.2600,76.7500 L 128.2600,61.2500 L 155.8000,61.2500 L 155.8000,76.7500 L 128.2600,76.7500 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="128.7600" text-length="26.0400px" y="73.6500" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43"><path d=" M 128.2600,47.5833 L 128.2600,32.0833 L 155.8000,32.0833 L 155.8000,47.5833 L 128.2600,47.5833 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="128.7600" text-length="26.0400px" y="44.4833" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_19.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_19.svg new file mode 100644 index 0000000..dd0d93a --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_19.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,225.0000 L 112.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,229.0000 L 112.0000,225.0000 L 120.0000,221.0000 L 120.0000,229.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 470.4000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 470.4000,225.0000 L 470.4000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 403.2000,12.5000 L 403.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 403.2000,225.0000 L 403.2000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 336.0000,12.5000 L 336.0000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 336.0000,225.0000 L 336.0000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 268.8000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 268.8000,225.0000 L 268.8000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 201.6000,12.5000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 201.6000,225.0000 L 201.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 537.6000,250.0000 L 537.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 533.6000,8.0000 L 537.6000,0.0000 L 541.6000,8.0000 L 533.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 201.6000,189.5833 L 537.6000,189.5833" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 534.6000,189.5833 L 540.6000,189.5833" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,154.1667 L 537.6000,154.1667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 534.6000,154.1667 L 540.6000,154.1667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 534.6000,118.7500 L 540.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,83.3333 L 537.6000,83.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 534.6000,83.3333 L 540.6000,83.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,47.9167 L 537.6000,47.9167" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 534.6000,47.9167 L 540.6000,47.9167" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 534.6000,12.5000 L 540.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 537.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 537.6000,118.7500 L 470.4000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 470.4000,118.7500 L 403.2000,207.2917" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 403.2000,207.2917 L 336.0000,207.2917" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 336.0000,207.2917 L 268.8000,30.2083" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 268.8000,30.2083 L 201.6000,30.2083" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="537.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="470.4000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="403.2000" cy="207.2917" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="336.0000" cy="207.2917" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="268.8000" cy="30.2083" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="201.6000" cy="30.2083" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 450.8200,237.0000 L 450.8200,226.5000 L 490.4800,226.5000 L 490.4800,237.0000 L 450.8200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="451.3200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_13"><path d=" M 383.6200,237.0000 L 383.6200,226.5000 L 423.2800,226.5000 L 423.2800,237.0000 L 383.6200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="384.1200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_16"><path d=" M 316.4200,237.0000 L 316.4200,226.5000 L 356.0800,226.5000 L 356.0800,237.0000 L 316.4200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="316.9200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_19"><path d=" M 249.2200,237.0000 L 249.2200,226.5000 L 288.8800,226.5000 L 288.8800,237.0000 L 249.2200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="249.7200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 186.7900,246.1000 L 186.7900,226.5000 L 216.9100,226.5000 L 216.9100,246.1000 L 186.7900,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="187.2900" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="198.8100" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25"><path d=" M 529.5200,212.7917 L 529.5200,202.2917 L 536.6000,202.2917 L 536.6000,212.7917 L 529.5200,212.7917 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="530.0200" text-length="5.5800px" y="210.4417" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28"><path d=" M 518.3600,177.3750 L 518.3600,166.8750 L 536.6000,166.8750 L 536.6000,177.3750 L 518.3600,177.3750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="518.8600" text-length="16.7400px" y="175.0250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31"><path d=" M 518.3600,141.9583 L 518.3600,131.4583 L 536.6000,131.4583 L 536.6000,141.9583 L 518.3600,141.9583 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="518.8600" text-length="16.7400px" y="139.6083" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34"><path d=" M 518.3600,106.5417 L 518.3600,96.0417 L 536.6000,96.0417 L 536.6000,106.5417 L 518.3600,106.5417 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="518.8600" text-length="16.7400px" y="104.1917" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37"><path d=" M 518.3600,71.1250 L 518.3600,60.6250 L 536.6000,60.6250 L 536.6000,71.1250 L 518.3600,71.1250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="518.8600" text-length="16.7400px" y="68.7750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40"><path d=" M 518.3600,35.7083 L 518.3600,25.2083 L 536.6000,25.2083 L 536.6000,35.7083 L 518.3600,35.7083 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="518.8600" text-length="16.7400px" y="33.3583" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_190.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_190.svg new file mode 100644 index 0000000..40df426 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_190.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,25.0000 L 560.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,21.0000 L 560.0000,25.0000 L 552.0000,29.0000 L 552.0000,21.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 235.0601,25.0000 L 235.0601,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 235.0601,22.0000 L 235.0601,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 291.0880,25.0000 L 291.0880,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 291.0880,22.0000 L 291.0880,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 347.1160,25.0000 L 347.1160,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 347.1160,22.0000 L 347.1160,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 403.1440,25.0000 L 403.1440,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 403.1440,22.0000 L 403.1440,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 459.1720,25.0000 L 459.1720,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 459.1720,22.0000 L 459.1720,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 515.2000,22.0000 L 515.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 156.8000,0.0000 L 156.8000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 160.3000,243.0000 L 156.8000,250.0000 L 153.3000,243.0000 L 160.3000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,54.1667 L 515.2000,54.1667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 159.8000,54.1667 L 153.8000,54.1667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,83.3333 L 515.2000,83.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 159.8000,83.3333 L 153.8000,83.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 159.8000,112.5000 L 153.8000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,141.6667 L 515.2000,141.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 159.8000,141.6667 L 153.8000,141.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,170.8333 L 515.2000,170.8333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 159.8000,170.8333 L 153.8000,170.8333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 159.8000,200.0000 L 153.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 235.0601,112.5000 L 235.0601,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 235.0601,112.5000 L 291.0880,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 291.0880,112.5000 L 347.1160,39.5833" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 347.1160,39.5833 L 403.1440,39.5833" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 403.1440,39.5833 L 459.1720,185.4167" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 459.1720,185.4167 L 515.2000,185.4167" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="235.0601" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="291.0880" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="347.1160" cy="39.5833" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="403.1440" cy="39.5833" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="459.1720" cy="185.4167" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="515.2000" cy="185.4167" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( -27.79 235.0601 25.0000 )"><path d=" M 190.0401,54.1000 L 190.0401,24.5000 L 236.0601,24.5000 L 236.0601,54.1000 L 190.0401,54.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="190.5401" text-length="44.5200px" y="36.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="226.3801" text-length="8.6800px" y="52.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( -27.79 291.0880 25.0000 )"><path d=" M 246.0680,54.1000 L 246.0680,24.5000 L 292.0880,24.5000 L 292.0880,54.1000 L 246.0680,54.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="246.5680" text-length="44.5200px" y="36.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="282.4080" text-length="8.6800px" y="52.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( -27.79 347.1160 25.0000 )"><path d=" M 302.0960,54.1000 L 302.0960,24.5000 L 348.1160,24.5000 L 348.1160,54.1000 L 302.0960,54.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="302.5960" text-length="44.5200px" y="36.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="338.4360" text-length="8.6800px" y="52.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( -27.79 403.1440 25.0000 )"><path d=" M 358.1240,54.1000 L 358.1240,24.5000 L 404.1440,24.5000 L 404.1440,54.1000 L 358.1240,54.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="358.6240" text-length="44.5200px" y="36.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="394.4640" text-length="8.6800px" y="52.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( -27.79 459.1720 25.0000 )"><path d=" M 414.1520,54.1000 L 414.1520,24.5000 L 460.1720,24.5000 L 460.1720,54.1000 L 414.1520,54.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="414.6520" text-length="44.5200px" y="36.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="450.4920" text-length="8.6800px" y="52.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( -27.79 515.2000 25.0000 )"><path d=" M 470.1800,54.1000 L 470.1800,24.5000 L 516.2000,24.5000 L 516.2000,54.1000 L 470.1800,54.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="470.6800" text-length="44.5200px" y="36.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="506.5200" text-length="8.6800px" y="52.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 145.6200,47.5833 L 145.6200,32.0833 L 155.8000,32.0833 L 155.8000,47.5833 L 145.6200,47.5833 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="146.1200" text-length="8.6800px" y="44.4833" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31"><path d=" M 128.2600,76.7500 L 128.2600,61.2500 L 155.8000,61.2500 L 155.8000,76.7500 L 128.2600,76.7500 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="128.7600" text-length="26.0400px" y="73.6500" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34"><path d=" M 128.2600,105.9167 L 128.2600,90.4167 L 155.8000,90.4167 L 155.8000,105.9167 L 128.2600,105.9167 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="128.7600" text-length="26.0400px" y="102.8167" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37"><path d=" M 128.2600,135.0833 L 128.2600,119.5833 L 155.8000,119.5833 L 155.8000,135.0833 L 128.2600,135.0833 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="128.7600" text-length="26.0400px" y="131.9833" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40"><path d=" M 128.2600,164.2500 L 128.2600,148.7500 L 155.8000,148.7500 L 155.8000,164.2500 L 128.2600,164.2500 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="128.7600" text-length="26.0400px" y="161.1500" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43"><path d=" M 128.2600,193.4167 L 128.2600,177.9167 L 155.8000,177.9167 L 155.8000,193.4167 L 128.2600,193.4167 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="128.7600" text-length="26.0400px" y="190.3167" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_191.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_191.svg new file mode 100644 index 0000000..b69225c --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_191.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,200.0000 L 112.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,204.0000 L 112.0000,200.0000 L 120.0000,196.0000 L 120.0000,204.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 515.2000,200.0000 L 515.2000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 459.1720,25.0000 L 459.1720,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 459.1720,200.0000 L 459.1720,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 403.1440,25.0000 L 403.1440,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 403.1440,200.0000 L 403.1440,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 347.1160,25.0000 L 347.1160,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 347.1160,200.0000 L 347.1160,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 291.0880,25.0000 L 291.0880,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 291.0880,200.0000 L 291.0880,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 235.0601,25.0000 L 235.0601,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 235.0601,200.0000 L 235.0601,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 515.2000,250.0000 L 515.2000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 512.2000,6.0000 L 515.2000,0.0000 L 518.2000,6.0000 L 512.2000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,170.8333 L 515.2000,170.8333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 512.2000,170.8333 L 518.2000,170.8333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,141.6667 L 515.2000,141.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 512.2000,141.6667 L 518.2000,141.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 512.2000,112.5000 L 518.2000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,83.3333 L 515.2000,83.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 512.2000,83.3333 L 518.2000,83.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,54.1667 L 515.2000,54.1667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 512.2000,54.1667 L 518.2000,54.1667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 512.2000,25.0000 L 518.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 515.2000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 515.2000,112.5000 L 459.1720,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 459.1720,112.5000 L 403.1440,185.4167" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 403.1440,185.4167 L 347.1160,185.4167" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 347.1160,185.4167 L 291.0880,39.5833" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 291.0880,39.5833 L 235.0601,39.5833" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="515.2000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="459.1720" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="403.1440" cy="185.4167" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="347.1160" cy="185.4167" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="291.0880" cy="39.5833" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="235.0601" cy="39.5833" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( 332.21 515.2000 200.0000 )"><path d=" M 467.3999,229.1000 L 467.3999,199.5000 L 513.4199,199.5000 L 513.4199,229.1000 L 467.3999,229.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="467.8999" text-length="44.5200px" y="211.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="467.8999" text-length="8.6800px" y="227.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( 332.21 459.1720 200.0000 )"><path d=" M 411.3719,229.1000 L 411.3719,199.5000 L 457.3919,199.5000 L 457.3919,229.1000 L 411.3719,229.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="411.8719" text-length="44.5200px" y="211.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="411.8719" text-length="8.6800px" y="227.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( 332.21 403.1440 200.0000 )"><path d=" M 355.3440,229.1000 L 355.3440,199.5000 L 401.3640,199.5000 L 401.3640,229.1000 L 355.3440,229.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="355.8440" text-length="44.5200px" y="211.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="355.8440" text-length="8.6800px" y="227.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( 332.21 347.1160 200.0000 )"><path d=" M 299.3160,229.1000 L 299.3160,199.5000 L 345.3360,199.5000 L 345.3360,229.1000 L 299.3160,229.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="299.8160" text-length="44.5200px" y="211.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="299.8160" text-length="8.6800px" y="227.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( 332.21 291.0880 200.0000 )"><path d=" M 243.2880,229.1000 L 243.2880,199.5000 L 289.3080,199.5000 L 289.3080,229.1000 L 243.2880,229.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="243.7880" text-length="44.5200px" y="211.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="243.7880" text-length="8.6800px" y="227.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( 332.21 235.0601 200.0000 )"><path d=" M 187.2600,229.1000 L 187.2600,199.5000 L 233.2800,199.5000 L 233.2800,229.1000 L 187.2600,229.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="187.7600" text-length="44.5200px" y="211.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="187.7600" text-length="8.6800px" y="227.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 504.0200,193.4167 L 504.0200,177.9167 L 514.2000,177.9167 L 514.2000,193.4167 L 504.0200,193.4167 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="504.5200" text-length="8.6800px" y="190.3167" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31"><path d=" M 486.6600,164.2500 L 486.6600,148.7500 L 514.2000,148.7500 L 514.2000,164.2500 L 486.6600,164.2500 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="487.1600" text-length="26.0400px" y="161.1500" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34"><path d=" M 486.6600,135.0833 L 486.6600,119.5833 L 514.2000,119.5833 L 514.2000,135.0833 L 486.6600,135.0833 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="487.1600" text-length="26.0400px" y="131.9833" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37"><path d=" M 486.6600,105.9167 L 486.6600,90.4167 L 514.2000,90.4167 L 514.2000,105.9167 L 486.6600,105.9167 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="487.1600" text-length="26.0400px" y="102.8167" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40"><path d=" M 486.6600,76.7500 L 486.6600,61.2500 L 514.2000,61.2500 L 514.2000,76.7500 L 486.6600,76.7500 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="487.1600" text-length="26.0400px" y="73.6500" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43"><path d=" M 486.6600,47.5833 L 486.6600,32.0833 L 514.2000,32.0833 L 514.2000,47.5833 L 486.6600,47.5833 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="487.1600" text-length="26.0400px" y="44.4833" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_192.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_192.svg new file mode 100644 index 0000000..955e7a7 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_192.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,25.0000 L 112.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,29.0000 L 112.0000,25.0000 L 120.0000,21.0000 L 120.0000,29.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 515.2000,25.0000 L 515.2000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 459.1720,25.0000 L 459.1720,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 459.1720,25.0000 L 459.1720,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 403.1440,25.0000 L 403.1440,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 403.1440,25.0000 L 403.1440,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 347.1160,25.0000 L 347.1160,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 347.1160,25.0000 L 347.1160,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 291.0880,25.0000 L 291.0880,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 291.0880,25.0000 L 291.0880,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 235.0601,25.0000 L 235.0601,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 235.0601,25.0000 L 235.0601,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 515.2000,0.0000 L 515.2000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 518.7000,243.0000 L 515.2000,250.0000 L 511.7000,243.0000 L 518.7000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 156.8000,54.1667 L 515.2000,54.1667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 518.2000,54.1667 L 512.2000,54.1667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,83.3333 L 515.2000,83.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 518.2000,83.3333 L 512.2000,83.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 518.2000,112.5000 L 512.2000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,141.6667 L 515.2000,141.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 518.2000,141.6667 L 512.2000,141.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,170.8333 L 515.2000,170.8333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 518.2000,170.8333 L 512.2000,170.8333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 518.2000,200.0000 L 512.2000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 515.2000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 515.2000,112.5000 L 459.1720,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 459.1720,112.5000 L 403.1440,39.5833" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 403.1440,39.5833 L 347.1160,39.5833" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 347.1160,39.5833 L 291.0880,185.4167" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 291.0880,185.4167 L 235.0601,185.4167" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><ellipse cx="515.2000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="459.1720" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="403.1440" cy="39.5833" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="347.1160" cy="39.5833" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><ellipse cx="291.0880" cy="185.4167" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_56"/><ellipse cx="235.0601" cy="185.4167" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_57"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8" transform="rotate( 332.21 515.2000 25.0000 )"><path d=" M 467.3999,54.1000 L 467.3999,24.5000 L 513.4199,24.5000 L 513.4199,54.1000 L 467.3999,54.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_8_text" x="467.8999" text-length="44.5200px" y="36.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="467.8999" text-length="8.6800px" y="52.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11" transform="rotate( 332.21 459.1720 25.0000 )"><path d=" M 411.3719,54.1000 L 411.3719,24.5000 L 457.3919,24.5000 L 457.3919,54.1000 L 411.3719,54.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_11_text" x="411.8719" text-length="44.5200px" y="36.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="411.8719" text-length="8.6800px" y="52.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14" transform="rotate( 332.21 403.1440 25.0000 )"><path d=" M 355.3440,54.1000 L 355.3440,24.5000 L 401.3640,24.5000 L 401.3640,54.1000 L 355.3440,54.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_14_text" x="355.8440" text-length="44.5200px" y="36.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="355.8440" text-length="8.6800px" y="52.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17" transform="rotate( 332.21 347.1160 25.0000 )"><path d=" M 299.3160,54.1000 L 299.3160,24.5000 L 345.3360,24.5000 L 345.3360,54.1000 L 299.3160,54.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_17_text" x="299.8160" text-length="44.5200px" y="36.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="299.8160" text-length="8.6800px" y="52.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20" transform="rotate( 332.21 291.0880 25.0000 )"><path d=" M 243.2880,54.1000 L 243.2880,24.5000 L 289.3080,24.5000 L 289.3080,54.1000 L 243.2880,54.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_20_text" x="243.7880" text-length="44.5200px" y="36.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="243.7880" text-length="8.6800px" y="52.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23" transform="rotate( 332.21 235.0601 25.0000 )"><path d=" M 187.2600,54.1000 L 187.2600,24.5000 L 233.2800,24.5000 L 233.2800,54.1000 L 187.2600,54.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_23_text" x="187.7600" text-length="44.5200px" y="36.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="187.7600" text-length="8.6800px" y="52.3000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_28"><path d=" M 504.0200,47.5833 L 504.0200,32.0833 L 514.2000,32.0833 L 514.2000,47.5833 L 504.0200,47.5833 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_28_text" x="504.5200" text-length="8.6800px" y="44.4833" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31"><path d=" M 486.6600,76.7500 L 486.6600,61.2500 L 514.2000,61.2500 L 514.2000,76.7500 L 486.6600,76.7500 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_31_text" x="487.1600" text-length="26.0400px" y="73.6500" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_34"><path d=" M 486.6600,105.9167 L 486.6600,90.4167 L 514.2000,90.4167 L 514.2000,105.9167 L 486.6600,105.9167 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_34_text" x="487.1600" text-length="26.0400px" y="102.8167" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_37"><path d=" M 486.6600,135.0833 L 486.6600,119.5833 L 514.2000,119.5833 L 514.2000,135.0833 L 486.6600,135.0833 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_37_text" x="487.1600" text-length="26.0400px" y="131.9833" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_40"><path d=" M 486.6600,164.2500 L 486.6600,148.7500 L 514.2000,148.7500 L 514.2000,164.2500 L 486.6600,164.2500 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_40_text" x="487.1600" text-length="26.0400px" y="161.1500" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_43"><path d=" M 486.6600,193.4167 L 486.6600,177.9167 L 514.2000,177.9167 L 514.2000,193.4167 L 486.6600,193.4167 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_43_text" x="487.1600" text-length="26.0400px" y="190.3167" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_2.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_2.svg new file mode 100644 index 0000000..5264bbf --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_2.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,12.5000 L 560.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,8.5000 L 560.0000,12.5000 L 552.0000,16.5000 L 552.0000,8.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 268.8000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 268.8000,9.5000 L 268.8000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 336.0000,12.5000 L 336.0000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 336.0000,9.5000 L 336.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 403.2000,12.5000 L 403.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 403.2000,9.5000 L 403.2000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 470.4000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 470.4000,9.5000 L 470.4000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 537.6000,9.5000 L 537.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 201.6000,0.0000 L 201.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 205.6000,242.0000 L 201.6000,250.0000 L 197.6000,242.0000 L 205.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 201.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 202.6000,23.1250 L 201.6000,23.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 202.6000,33.7500 L 201.6000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 202.6000,44.3750 L 201.6000,44.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 204.6000,55.0000 L 201.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 202.6000,65.6250 L 201.6000,65.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 202.6000,76.2500 L 201.6000,76.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 202.6000,86.8750 L 201.6000,86.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 204.6000,97.5000 L 201.6000,97.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 202.6000,108.1250 L 201.6000,108.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 202.6000,118.7500 L 201.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 202.6000,129.3750 L 201.6000,129.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 204.6000,140.0000 L 201.6000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 202.6000,150.6250 L 201.6000,150.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 202.6000,161.2500 L 201.6000,161.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 202.6000,171.8750 L 201.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 204.6000,182.5000 L 201.6000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 202.6000,193.1250 L 201.6000,193.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 202.6000,203.7500 L 201.6000,203.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 202.6000,214.3750 L 201.6000,214.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 204.6000,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,118.7500 L 201.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 201.6000,118.7500 L 268.8000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 268.8000,118.7500 L 336.0000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 336.0000,12.5000 L 403.2000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 403.2000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 470.4000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="201.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="268.8000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="336.0000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="403.2000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="470.4000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="537.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 249.2200,24.5000 L 249.2200,14.0000 L 288.8800,14.0000 L 288.8800,24.5000 L 249.2200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_10_text" x="249.7200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_13"><path d=" M 316.4200,24.5000 L 316.4200,14.0000 L 356.0800,14.0000 L 356.0800,24.5000 L 316.4200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_13_text" x="316.9200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_16"><path d=" M 383.6200,24.5000 L 383.6200,14.0000 L 423.2800,14.0000 L 423.2800,24.5000 L 383.6200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_16_text" x="384.1200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_19"><path d=" M 450.8200,24.5000 L 450.8200,14.0000 L 490.4800,14.0000 L 490.4800,24.5000 L 450.8200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_19_text" x="451.3200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 518.0200,24.5000 L 518.0200,14.0000 L 557.6800,14.0000 L 557.6800,24.5000 L 518.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_22_text" x="518.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_25"><path d=" M 193.5200,24.5000 L 193.5200,14.0000 L 200.6000,14.0000 L 200.6000,24.5000 L 193.5200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_25_text" x="194.0200" text-length="5.5800px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_34"><path d=" M 182.3600,67.0000 L 182.3600,56.5000 L 200.6000,56.5000 L 200.6000,67.0000 L 182.3600,67.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="182.8600" text-length="16.7400px" y="64.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 182.3600,109.5000 L 182.3600,99.0000 L 200.6000,99.0000 L 200.6000,109.5000 L 182.3600,109.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="182.8600" text-length="16.7400px" y="107.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 182.3600,152.0000 L 182.3600,141.5000 L 200.6000,141.5000 L 200.6000,152.0000 L 182.3600,152.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="182.8600" text-length="16.7400px" y="149.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 182.3600,194.5000 L 182.3600,184.0000 L 200.6000,184.0000 L 200.6000,194.5000 L 182.3600,194.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="182.8600" text-length="16.7400px" y="192.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 182.3600,224.0000 L 182.3600,213.5000 L 200.6000,213.5000 L 200.6000,224.0000 L 182.3600,224.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="182.8600" text-length="16.7400px" y="221.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_20.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_20.svg new file mode 100644 index 0000000..2b827c5 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_20.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,12.5000 L 112.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,16.5000 L 112.0000,12.5000 L 120.0000,8.5000 L 120.0000,16.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 470.4000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 470.4000,12.5000 L 470.4000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 403.2000,12.5000 L 403.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 403.2000,12.5000 L 403.2000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 336.0000,12.5000 L 336.0000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 336.0000,12.5000 L 336.0000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 268.8000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 268.8000,12.5000 L 268.8000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 201.6000,12.5000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 201.6000,12.5000 L 201.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 537.6000,0.0000 L 537.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 541.6000,242.0000 L 537.6000,250.0000 L 533.6000,242.0000 L 541.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 201.6000,47.9167 L 537.6000,47.9167" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 540.6000,47.9167 L 534.6000,47.9167" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,83.3333 L 537.6000,83.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 540.6000,83.3333 L 534.6000,83.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 540.6000,118.7500 L 534.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,154.1667 L 537.6000,154.1667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 540.6000,154.1667 L 534.6000,154.1667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,189.5833 L 537.6000,189.5833" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 540.6000,189.5833 L 534.6000,189.5833" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 540.6000,225.0000 L 534.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 537.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 537.6000,118.7500 L 470.4000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 470.4000,118.7500 L 403.2000,30.2083" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 403.2000,30.2083 L 336.0000,30.2083" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 336.0000,30.2083 L 268.8000,207.2917" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 268.8000,207.2917 L 201.6000,207.2917" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="537.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="470.4000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="403.2000" cy="30.2083" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="336.0000" cy="30.2083" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="268.8000" cy="207.2917" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="201.6000" cy="207.2917" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 450.8200,24.5000 L 450.8200,14.0000 L 490.4800,14.0000 L 490.4800,24.5000 L 450.8200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="451.3200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_13"><path d=" M 383.6200,24.5000 L 383.6200,14.0000 L 423.2800,14.0000 L 423.2800,24.5000 L 383.6200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="384.1200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_16"><path d=" M 316.4200,24.5000 L 316.4200,14.0000 L 356.0800,14.0000 L 356.0800,24.5000 L 316.4200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="316.9200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_19"><path d=" M 249.2200,24.5000 L 249.2200,14.0000 L 288.8800,14.0000 L 288.8800,24.5000 L 249.2200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="249.7200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 186.7900,33.6000 L 186.7900,14.0000 L 216.9100,14.0000 L 216.9100,33.6000 L 186.7900,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="187.2900" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="198.8100" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25"><path d=" M 529.5200,35.7083 L 529.5200,25.2083 L 536.6000,25.2083 L 536.6000,35.7083 L 529.5200,35.7083 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="530.0200" text-length="5.5800px" y="33.3583" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28"><path d=" M 518.3600,71.1250 L 518.3600,60.6250 L 536.6000,60.6250 L 536.6000,71.1250 L 518.3600,71.1250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="518.8600" text-length="16.7400px" y="68.7750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31"><path d=" M 518.3600,106.5417 L 518.3600,96.0417 L 536.6000,96.0417 L 536.6000,106.5417 L 518.3600,106.5417 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="518.8600" text-length="16.7400px" y="104.1917" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34"><path d=" M 518.3600,141.9583 L 518.3600,131.4583 L 536.6000,131.4583 L 536.6000,141.9583 L 518.3600,141.9583 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="518.8600" text-length="16.7400px" y="139.6083" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37"><path d=" M 518.3600,177.3750 L 518.3600,166.8750 L 536.6000,166.8750 L 536.6000,177.3750 L 518.3600,177.3750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="518.8600" text-length="16.7400px" y="175.0250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40"><path d=" M 518.3600,212.7917 L 518.3600,202.2917 L 536.6000,202.2917 L 536.6000,212.7917 L 518.3600,212.7917 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="518.8600" text-length="16.7400px" y="210.4417" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_21.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_21.svg new file mode 100644 index 0000000..0d5e923 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_21.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,225.0000 L 560.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,221.0000 L 560.0000,225.0000 L 552.0000,229.0000 L 552.0000,221.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 264.3200,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 264.3200,222.0000 L 264.3200,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 327.0400,25.0000 L 327.0400,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 327.0400,222.0000 L 327.0400,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 389.7600,25.0000 L 389.7600,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 389.7600,222.0000 L 389.7600,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 452.4800,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 452.4800,222.0000 L 452.4800,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 515.2000,222.0000 L 515.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 201.6000,250.0000 L 201.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 197.6000,8.0000 L 201.6000,0.0000 L 205.6000,8.0000 L 197.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 201.6000,191.6667 L 515.2000,191.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 198.6000,191.6667 L 204.6000,191.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,158.3333 L 515.2000,158.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 198.6000,158.3333 L 204.6000,158.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 198.6000,125.0000 L 204.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,91.6667 L 515.2000,91.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 198.6000,91.6667 L 204.6000,91.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,58.3333 L 515.2000,58.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 198.6000,58.3333 L 204.6000,58.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 198.6000,25.0000 L 204.6000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,125.0000 L 201.6000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,125.0000 L 264.3200,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 264.3200,125.0000 L 327.0400,208.3333" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 327.0400,208.3333 L 389.7600,208.3333" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 389.7600,208.3333 L 452.4800,41.6667" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 452.4800,41.6667 L 515.2000,41.6667" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="201.6000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="264.3200" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="327.0400" cy="208.3333" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="389.7600" cy="208.3333" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="452.4800" cy="41.6667" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="515.2000" cy="41.6667" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 236.2600,241.0000 L 236.2600,226.5000 L 292.8800,226.5000 L 292.8800,241.0000 L 236.2600,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="236.7600" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_13"><path d=" M 298.9800,241.0000 L 298.9800,226.5000 L 355.6000,226.5000 L 355.6000,241.0000 L 298.9800,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="299.4800" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_16"><path d=" M 361.7000,241.0000 L 361.7000,226.5000 L 418.3200,226.5000 L 418.3200,241.0000 L 361.7000,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="362.2000" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_19"><path d=" M 424.4200,241.0000 L 424.4200,226.5000 L 481.0400,226.5000 L 481.0400,241.0000 L 424.4200,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="424.9200" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 487.1400,241.0000 L 487.1400,226.5000 L 543.7600,226.5000 L 543.7600,241.0000 L 487.1400,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="487.6400" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_25"><path d=" M 191.0400,215.8333 L 191.0400,201.3333 L 200.6000,201.3333 L 200.6000,215.8333 L 191.0400,215.8333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="191.5400" text-length="8.0600px" y="212.8833" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28"><path d=" M 174.9200,182.5000 L 174.9200,168.0000 L 200.6000,168.0000 L 200.6000,182.5000 L 174.9200,182.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="175.4200" text-length="24.1800px" y="179.5500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31"><path d=" M 174.9200,149.1667 L 174.9200,134.6667 L 200.6000,134.6667 L 200.6000,149.1667 L 174.9200,149.1667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="175.4200" text-length="24.1800px" y="146.2167" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34"><path d=" M 174.9200,115.8333 L 174.9200,101.3333 L 200.6000,101.3333 L 200.6000,115.8333 L 174.9200,115.8333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="175.4200" text-length="24.1800px" y="112.8833" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37"><path d=" M 174.9200,82.5000 L 174.9200,68.0000 L 200.6000,68.0000 L 200.6000,82.5000 L 174.9200,82.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="175.4200" text-length="24.1800px" y="79.5500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40"><path d=" M 174.9200,49.1667 L 174.9200,34.6667 L 200.6000,34.6667 L 200.6000,49.1667 L 174.9200,49.1667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="175.4200" text-length="24.1800px" y="46.2167" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_22.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_22.svg new file mode 100644 index 0000000..8e91f5f --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_22.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,25.0000 L 560.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,21.0000 L 560.0000,25.0000 L 552.0000,29.0000 L 552.0000,21.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 264.3200,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 264.3200,22.0000 L 264.3200,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 327.0400,25.0000 L 327.0400,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 327.0400,22.0000 L 327.0400,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 389.7600,25.0000 L 389.7600,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 389.7600,22.0000 L 389.7600,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 452.4800,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 452.4800,22.0000 L 452.4800,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 515.2000,22.0000 L 515.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 201.6000,0.0000 L 201.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 205.6000,242.0000 L 201.6000,250.0000 L 197.6000,242.0000 L 205.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 201.6000,58.3333 L 515.2000,58.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 204.6000,58.3333 L 198.6000,58.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,91.6667 L 515.2000,91.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 204.6000,91.6667 L 198.6000,91.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 204.6000,125.0000 L 198.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,158.3333 L 515.2000,158.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 204.6000,158.3333 L 198.6000,158.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,191.6667 L 515.2000,191.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 204.6000,191.6667 L 198.6000,191.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 204.6000,225.0000 L 198.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,125.0000 L 201.6000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,125.0000 L 264.3200,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 264.3200,125.0000 L 327.0400,41.6667" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 327.0400,41.6667 L 389.7600,41.6667" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 389.7600,41.6667 L 452.4800,208.3333" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 452.4800,208.3333 L 515.2000,208.3333" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="201.6000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="264.3200" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="327.0400" cy="41.6667" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="389.7600" cy="41.6667" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="452.4800" cy="208.3333" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="515.2000" cy="208.3333" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 236.2600,41.0000 L 236.2600,26.5000 L 292.8800,26.5000 L 292.8800,41.0000 L 236.2600,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="236.7600" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_13"><path d=" M 298.9800,41.0000 L 298.9800,26.5000 L 355.6000,26.5000 L 355.6000,41.0000 L 298.9800,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="299.4800" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_16"><path d=" M 361.7000,41.0000 L 361.7000,26.5000 L 418.3200,26.5000 L 418.3200,41.0000 L 361.7000,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="362.2000" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_19"><path d=" M 424.4200,41.0000 L 424.4200,26.5000 L 481.0400,26.5000 L 481.0400,41.0000 L 424.4200,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="424.9200" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 487.1400,41.0000 L 487.1400,26.5000 L 543.7600,26.5000 L 543.7600,41.0000 L 487.1400,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="487.6400" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_25"><path d=" M 191.0400,49.1667 L 191.0400,34.6667 L 200.6000,34.6667 L 200.6000,49.1667 L 191.0400,49.1667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="191.5400" text-length="8.0600px" y="46.2167" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28"><path d=" M 174.9200,82.5000 L 174.9200,68.0000 L 200.6000,68.0000 L 200.6000,82.5000 L 174.9200,82.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="175.4200" text-length="24.1800px" y="79.5500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31"><path d=" M 174.9200,115.8333 L 174.9200,101.3333 L 200.6000,101.3333 L 200.6000,115.8333 L 174.9200,115.8333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="175.4200" text-length="24.1800px" y="112.8833" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34"><path d=" M 174.9200,149.1667 L 174.9200,134.6667 L 200.6000,134.6667 L 200.6000,149.1667 L 174.9200,149.1667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="175.4200" text-length="24.1800px" y="146.2167" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37"><path d=" M 174.9200,182.5000 L 174.9200,168.0000 L 200.6000,168.0000 L 200.6000,182.5000 L 174.9200,182.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="175.4200" text-length="24.1800px" y="179.5500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40"><path d=" M 174.9200,215.8333 L 174.9200,201.3333 L 200.6000,201.3333 L 200.6000,215.8333 L 174.9200,215.8333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="175.4200" text-length="24.1800px" y="212.8833" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_23.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_23.svg new file mode 100644 index 0000000..a475cc1 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_23.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,225.0000 L 112.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,229.0000 L 112.0000,225.0000 L 120.0000,221.0000 L 120.0000,229.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 452.4800,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 452.4800,225.0000 L 452.4800,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 389.7600,25.0000 L 389.7600,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 389.7600,225.0000 L 389.7600,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 327.0400,25.0000 L 327.0400,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 327.0400,225.0000 L 327.0400,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 264.3200,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 264.3200,225.0000 L 264.3200,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 201.6000,25.0000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 201.6000,225.0000 L 201.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 515.2000,250.0000 L 515.2000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 511.2000,8.0000 L 515.2000,0.0000 L 519.2000,8.0000 L 511.2000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 201.6000,191.6667 L 515.2000,191.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 512.2000,191.6667 L 518.2000,191.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,158.3333 L 515.2000,158.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 512.2000,158.3333 L 518.2000,158.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 512.2000,125.0000 L 518.2000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,91.6667 L 515.2000,91.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 512.2000,91.6667 L 518.2000,91.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,58.3333 L 515.2000,58.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 512.2000,58.3333 L 518.2000,58.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 512.2000,25.0000 L 518.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 515.2000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 515.2000,125.0000 L 452.4800,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 452.4800,125.0000 L 389.7600,208.3333" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 389.7600,208.3333 L 327.0400,208.3333" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 327.0400,208.3333 L 264.3200,41.6667" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 264.3200,41.6667 L 201.6000,41.6667" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="515.2000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="452.4800" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="389.7600" cy="208.3333" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="327.0400" cy="208.3333" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="264.3200" cy="41.6667" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="201.6000" cy="41.6667" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 424.4200,241.0000 L 424.4200,226.5000 L 481.0400,226.5000 L 481.0400,241.0000 L 424.4200,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="424.9200" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_13"><path d=" M 361.7000,241.0000 L 361.7000,226.5000 L 418.3200,226.5000 L 418.3200,241.0000 L 361.7000,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="362.2000" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_16"><path d=" M 298.9800,241.0000 L 298.9800,226.5000 L 355.6000,226.5000 L 355.6000,241.0000 L 298.9800,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="299.4800" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_19"><path d=" M 236.2600,241.0000 L 236.2600,226.5000 L 292.8800,226.5000 L 292.8800,241.0000 L 236.2600,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="236.7600" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 173.5400,241.0000 L 173.5400,226.5000 L 230.1600,226.5000 L 230.1600,241.0000 L 173.5400,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="174.0400" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_25"><path d=" M 504.6400,215.8333 L 504.6400,201.3333 L 514.2000,201.3333 L 514.2000,215.8333 L 504.6400,215.8333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="505.1400" text-length="8.0600px" y="212.8833" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28"><path d=" M 488.5200,182.5000 L 488.5200,168.0000 L 514.2000,168.0000 L 514.2000,182.5000 L 488.5200,182.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="489.0200" text-length="24.1800px" y="179.5500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31"><path d=" M 488.5200,149.1667 L 488.5200,134.6667 L 514.2000,134.6667 L 514.2000,149.1667 L 488.5200,149.1667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="489.0200" text-length="24.1800px" y="146.2167" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34"><path d=" M 488.5200,115.8333 L 488.5200,101.3333 L 514.2000,101.3333 L 514.2000,115.8333 L 488.5200,115.8333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="489.0200" text-length="24.1800px" y="112.8833" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37"><path d=" M 488.5200,82.5000 L 488.5200,68.0000 L 514.2000,68.0000 L 514.2000,82.5000 L 488.5200,82.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="489.0200" text-length="24.1800px" y="79.5500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40"><path d=" M 488.5200,49.1667 L 488.5200,34.6667 L 514.2000,34.6667 L 514.2000,49.1667 L 488.5200,49.1667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="489.0200" text-length="24.1800px" y="46.2167" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_24.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_24.svg new file mode 100644 index 0000000..9616dfc --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_24.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,25.0000 L 112.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,29.0000 L 112.0000,25.0000 L 120.0000,21.0000 L 120.0000,29.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 452.4800,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 452.4800,25.0000 L 452.4800,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 389.7600,25.0000 L 389.7600,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 389.7600,25.0000 L 389.7600,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 327.0400,25.0000 L 327.0400,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 327.0400,25.0000 L 327.0400,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 264.3200,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 264.3200,25.0000 L 264.3200,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 201.6000,25.0000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 201.6000,25.0000 L 201.6000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 515.2000,0.0000 L 515.2000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 519.2000,242.0000 L 515.2000,250.0000 L 511.2000,242.0000 L 519.2000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 201.6000,58.3333 L 515.2000,58.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 518.2000,58.3333 L 512.2000,58.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,91.6667 L 515.2000,91.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 518.2000,91.6667 L 512.2000,91.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 518.2000,125.0000 L 512.2000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,158.3333 L 515.2000,158.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 518.2000,158.3333 L 512.2000,158.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,191.6667 L 515.2000,191.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 518.2000,191.6667 L 512.2000,191.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 518.2000,225.0000 L 512.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 515.2000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 515.2000,125.0000 L 452.4800,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 452.4800,125.0000 L 389.7600,41.6667" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 389.7600,41.6667 L 327.0400,41.6667" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 327.0400,41.6667 L 264.3200,208.3333" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 264.3200,208.3333 L 201.6000,208.3333" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="515.2000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="452.4800" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="389.7600" cy="41.6667" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="327.0400" cy="41.6667" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="264.3200" cy="208.3333" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="201.6000" cy="208.3333" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 424.4200,41.0000 L 424.4200,26.5000 L 481.0400,26.5000 L 481.0400,41.0000 L 424.4200,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="424.9200" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_13"><path d=" M 361.7000,41.0000 L 361.7000,26.5000 L 418.3200,26.5000 L 418.3200,41.0000 L 361.7000,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="362.2000" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_16"><path d=" M 298.9800,41.0000 L 298.9800,26.5000 L 355.6000,26.5000 L 355.6000,41.0000 L 298.9800,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="299.4800" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_19"><path d=" M 236.2600,41.0000 L 236.2600,26.5000 L 292.8800,26.5000 L 292.8800,41.0000 L 236.2600,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="236.7600" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 173.5400,41.0000 L 173.5400,26.5000 L 230.1600,26.5000 L 230.1600,41.0000 L 173.5400,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="174.0400" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_25"><path d=" M 504.6400,49.1667 L 504.6400,34.6667 L 514.2000,34.6667 L 514.2000,49.1667 L 504.6400,49.1667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="505.1400" text-length="8.0600px" y="46.2167" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28"><path d=" M 488.5200,82.5000 L 488.5200,68.0000 L 514.2000,68.0000 L 514.2000,82.5000 L 488.5200,82.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="489.0200" text-length="24.1800px" y="79.5500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31"><path d=" M 488.5200,115.8333 L 488.5200,101.3333 L 514.2000,101.3333 L 514.2000,115.8333 L 488.5200,115.8333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="489.0200" text-length="24.1800px" y="112.8833" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34"><path d=" M 488.5200,149.1667 L 488.5200,134.6667 L 514.2000,134.6667 L 514.2000,149.1667 L 488.5200,149.1667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="489.0200" text-length="24.1800px" y="146.2167" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37"><path d=" M 488.5200,182.5000 L 488.5200,168.0000 L 514.2000,168.0000 L 514.2000,182.5000 L 488.5200,182.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="489.0200" text-length="24.1800px" y="179.5500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40"><path d=" M 488.5200,215.8333 L 488.5200,201.3333 L 514.2000,201.3333 L 514.2000,215.8333 L 488.5200,215.8333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="489.0200" text-length="24.1800px" y="212.8833" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_25.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_25.svg new file mode 100644 index 0000000..2f3088b --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_25.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,200.0000 L 560.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,196.0000 L 560.0000,200.0000 L 552.0000,204.0000 L 552.0000,196.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 232.9600,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 232.9600,197.0000 L 232.9600,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 309.1200,12.5000 L 309.1200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 309.1200,197.0000 L 309.1200,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 385.2800,12.5000 L 385.2800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 385.2800,197.0000 L 385.2800,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 461.4400,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 461.4400,197.0000 L 461.4400,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 537.6000,197.0000 L 537.6000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 156.8000,250.0000 L 156.8000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 153.8000,6.0000 L 156.8000,0.0000 L 159.8000,6.0000 L 153.8000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 156.8000,168.7500 L 537.6000,168.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 153.8000,168.7500 L 159.8000,168.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,137.5000 L 537.6000,137.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 153.8000,137.5000 L 159.8000,137.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 153.8000,106.2500 L 159.8000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,75.0000 L 537.6000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 153.8000,75.0000 L 159.8000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,43.7500 L 537.6000,43.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 153.8000,43.7500 L 159.8000,43.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 153.8000,12.5000 L 159.8000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,106.2500 L 156.8000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,106.2500 L 232.9600,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 232.9600,106.2500 L 309.1200,184.3750" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 309.1200,184.3750 L 385.2800,184.3750" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 385.2800,184.3750 L 461.4400,28.1250" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 461.4400,28.1250 L 537.6000,28.1250" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="156.8000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="232.9600" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="309.1200" cy="184.3750" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="385.2800" cy="184.3750" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="461.4400" cy="28.1250" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="537.6000" cy="28.1250" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 218.1500,221.1000 L 218.1500,201.5000 L 248.2700,201.5000 L 248.2700,221.1000 L 218.1500,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="218.6500" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_10_text" x="230.1700" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_13"><path d=" M 294.3100,221.1000 L 294.3100,201.5000 L 324.4300,201.5000 L 324.4300,221.1000 L 294.3100,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="294.8100" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_13_text" x="306.3300" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_16"><path d=" M 370.4700,221.1000 L 370.4700,201.5000 L 400.5900,201.5000 L 400.5900,221.1000 L 370.4700,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="370.9700" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_16_text" x="382.4900" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_19"><path d=" M 446.6300,221.1000 L 446.6300,201.5000 L 476.7500,201.5000 L 476.7500,221.1000 L 446.6300,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="447.1300" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_19_text" x="458.6500" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_22"><path d=" M 522.7900,221.1000 L 522.7900,201.5000 L 552.9100,201.5000 L 552.9100,221.1000 L 522.7900,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="523.2900" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="534.8100" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25"><path d=" M 148.7200,189.8750 L 148.7200,179.3750 L 155.8000,179.3750 L 155.8000,189.8750 L 148.7200,189.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="149.2200" text-length="5.5800px" y="187.5250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28"><path d=" M 137.5600,158.6250 L 137.5600,148.1250 L 155.8000,148.1250 L 155.8000,158.6250 L 137.5600,158.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="138.0600" text-length="16.7400px" y="156.2750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31"><path d=" M 137.5600,127.3750 L 137.5600,116.8750 L 155.8000,116.8750 L 155.8000,127.3750 L 137.5600,127.3750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="138.0600" text-length="16.7400px" y="125.0250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34"><path d=" M 137.5600,96.1250 L 137.5600,85.6250 L 155.8000,85.6250 L 155.8000,96.1250 L 137.5600,96.1250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="138.0600" text-length="16.7400px" y="93.7750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37"><path d=" M 137.5600,64.8750 L 137.5600,54.3750 L 155.8000,54.3750 L 155.8000,64.8750 L 137.5600,64.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="138.0600" text-length="16.7400px" y="62.5250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40"><path d=" M 137.5600,33.6250 L 137.5600,23.1250 L 155.8000,23.1250 L 155.8000,33.6250 L 137.5600,33.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="138.0600" text-length="16.7400px" y="31.2750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_26.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_26.svg new file mode 100644 index 0000000..5a3d98e --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_26.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,12.5000 L 560.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,8.5000 L 560.0000,12.5000 L 552.0000,16.5000 L 552.0000,8.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 232.9600,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 232.9600,9.5000 L 232.9600,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 309.1200,12.5000 L 309.1200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 309.1200,9.5000 L 309.1200,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 385.2800,12.5000 L 385.2800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 385.2800,9.5000 L 385.2800,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 461.4400,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 461.4400,9.5000 L 461.4400,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 537.6000,9.5000 L 537.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 156.8000,0.0000 L 156.8000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 160.3000,243.0000 L 156.8000,250.0000 L 153.3000,243.0000 L 160.3000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 156.8000,43.7500 L 537.6000,43.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 159.8000,43.7500 L 153.8000,43.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,75.0000 L 537.6000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 159.8000,75.0000 L 153.8000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 159.8000,106.2500 L 153.8000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,137.5000 L 537.6000,137.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 159.8000,137.5000 L 153.8000,137.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,168.7500 L 537.6000,168.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 159.8000,168.7500 L 153.8000,168.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 159.8000,200.0000 L 153.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,106.2500 L 156.8000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,106.2500 L 232.9600,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 232.9600,106.2500 L 309.1200,28.1250" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 309.1200,28.1250 L 385.2800,28.1250" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 385.2800,28.1250 L 461.4400,184.3750" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 461.4400,184.3750 L 537.6000,184.3750" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="156.8000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="232.9600" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="309.1200" cy="28.1250" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="385.2800" cy="28.1250" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="461.4400" cy="184.3750" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="537.6000" cy="184.3750" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 218.1500,33.6000 L 218.1500,14.0000 L 248.2700,14.0000 L 248.2700,33.6000 L 218.1500,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="218.6500" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_10_text" x="230.1700" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_13"><path d=" M 294.3100,33.6000 L 294.3100,14.0000 L 324.4300,14.0000 L 324.4300,33.6000 L 294.3100,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="294.8100" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_13_text" x="306.3300" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_16"><path d=" M 370.4700,33.6000 L 370.4700,14.0000 L 400.5900,14.0000 L 400.5900,33.6000 L 370.4700,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="370.9700" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_16_text" x="382.4900" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_19"><path d=" M 446.6300,33.6000 L 446.6300,14.0000 L 476.7500,14.0000 L 476.7500,33.6000 L 446.6300,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="447.1300" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_19_text" x="458.6500" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_22"><path d=" M 522.7900,33.6000 L 522.7900,14.0000 L 552.9100,14.0000 L 552.9100,33.6000 L 522.7900,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="523.2900" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="534.8100" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25"><path d=" M 148.7200,33.6250 L 148.7200,23.1250 L 155.8000,23.1250 L 155.8000,33.6250 L 148.7200,33.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="149.2200" text-length="5.5800px" y="31.2750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28"><path d=" M 137.5600,64.8750 L 137.5600,54.3750 L 155.8000,54.3750 L 155.8000,64.8750 L 137.5600,64.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="138.0600" text-length="16.7400px" y="62.5250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31"><path d=" M 137.5600,96.1250 L 137.5600,85.6250 L 155.8000,85.6250 L 155.8000,96.1250 L 137.5600,96.1250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="138.0600" text-length="16.7400px" y="93.7750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34"><path d=" M 137.5600,127.3750 L 137.5600,116.8750 L 155.8000,116.8750 L 155.8000,127.3750 L 137.5600,127.3750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="138.0600" text-length="16.7400px" y="125.0250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37"><path d=" M 137.5600,158.6250 L 137.5600,148.1250 L 155.8000,148.1250 L 155.8000,158.6250 L 137.5600,158.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="138.0600" text-length="16.7400px" y="156.2750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40"><path d=" M 137.5600,189.8750 L 137.5600,179.3750 L 155.8000,179.3750 L 155.8000,189.8750 L 137.5600,189.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="138.0600" text-length="16.7400px" y="187.5250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_27.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_27.svg new file mode 100644 index 0000000..2b176c9 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_27.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,200.0000 L 112.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,204.0000 L 112.0000,200.0000 L 120.0000,196.0000 L 120.0000,204.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 461.4400,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 461.4400,200.0000 L 461.4400,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 385.2800,12.5000 L 385.2800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 385.2800,200.0000 L 385.2800,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 309.1200,12.5000 L 309.1200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 309.1200,200.0000 L 309.1200,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 232.9600,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 232.9600,200.0000 L 232.9600,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 156.8000,12.5000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 156.8000,200.0000 L 156.8000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 537.6000,250.0000 L 537.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 534.6000,6.0000 L 537.6000,0.0000 L 540.6000,6.0000 L 534.6000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 156.8000,168.7500 L 537.6000,168.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 534.6000,168.7500 L 540.6000,168.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,137.5000 L 537.6000,137.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 534.6000,137.5000 L 540.6000,137.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 534.6000,106.2500 L 540.6000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,75.0000 L 537.6000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 534.6000,75.0000 L 540.6000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,43.7500 L 537.6000,43.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 534.6000,43.7500 L 540.6000,43.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 534.6000,12.5000 L 540.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 537.6000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 537.6000,106.2500 L 461.4400,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 461.4400,106.2500 L 385.2800,184.3750" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 385.2800,184.3750 L 309.1200,184.3750" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 309.1200,184.3750 L 232.9600,28.1250" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 232.9600,28.1250 L 156.8000,28.1250" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="537.6000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="461.4400" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="385.2800" cy="184.3750" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="309.1200" cy="184.3750" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="232.9600" cy="28.1250" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="156.8000" cy="28.1250" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 446.6300,221.1000 L 446.6300,201.5000 L 476.7500,201.5000 L 476.7500,221.1000 L 446.6300,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="447.1300" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_10_text" x="458.6500" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_13"><path d=" M 370.4700,221.1000 L 370.4700,201.5000 L 400.5900,201.5000 L 400.5900,221.1000 L 370.4700,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="370.9700" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_13_text" x="382.4900" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_16"><path d=" M 294.3100,221.1000 L 294.3100,201.5000 L 324.4300,201.5000 L 324.4300,221.1000 L 294.3100,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="294.8100" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_16_text" x="306.3300" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_19"><path d=" M 218.1500,221.1000 L 218.1500,201.5000 L 248.2700,201.5000 L 248.2700,221.1000 L 218.1500,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="218.6500" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_19_text" x="230.1700" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_22"><path d=" M 141.9900,221.1000 L 141.9900,201.5000 L 172.1100,201.5000 L 172.1100,221.1000 L 141.9900,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="142.4900" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="154.0100" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25"><path d=" M 529.5200,189.8750 L 529.5200,179.3750 L 536.6000,179.3750 L 536.6000,189.8750 L 529.5200,189.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="530.0200" text-length="5.5800px" y="187.5250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28"><path d=" M 518.3600,158.6250 L 518.3600,148.1250 L 536.6000,148.1250 L 536.6000,158.6250 L 518.3600,158.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="518.8600" text-length="16.7400px" y="156.2750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31"><path d=" M 518.3600,127.3750 L 518.3600,116.8750 L 536.6000,116.8750 L 536.6000,127.3750 L 518.3600,127.3750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="518.8600" text-length="16.7400px" y="125.0250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34"><path d=" M 518.3600,96.1250 L 518.3600,85.6250 L 536.6000,85.6250 L 536.6000,96.1250 L 518.3600,96.1250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="518.8600" text-length="16.7400px" y="93.7750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37"><path d=" M 518.3600,64.8750 L 518.3600,54.3750 L 536.6000,54.3750 L 536.6000,64.8750 L 518.3600,64.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="518.8600" text-length="16.7400px" y="62.5250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40"><path d=" M 518.3600,33.6250 L 518.3600,23.1250 L 536.6000,23.1250 L 536.6000,33.6250 L 518.3600,33.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="518.8600" text-length="16.7400px" y="31.2750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_28.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_28.svg new file mode 100644 index 0000000..648bdef --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_28.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,12.5000 L 112.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,16.5000 L 112.0000,12.5000 L 120.0000,8.5000 L 120.0000,16.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 461.4400,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 461.4400,12.5000 L 461.4400,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 385.2800,12.5000 L 385.2800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 385.2800,12.5000 L 385.2800,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 309.1200,12.5000 L 309.1200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 309.1200,12.5000 L 309.1200,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 232.9600,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 232.9600,12.5000 L 232.9600,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 156.8000,12.5000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 156.8000,12.5000 L 156.8000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 537.6000,0.0000 L 537.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 541.1000,243.0000 L 537.6000,250.0000 L 534.1000,243.0000 L 541.1000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 156.8000,43.7500 L 537.6000,43.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 540.6000,43.7500 L 534.6000,43.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,75.0000 L 537.6000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 540.6000,75.0000 L 534.6000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 540.6000,106.2500 L 534.6000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,137.5000 L 537.6000,137.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 540.6000,137.5000 L 534.6000,137.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,168.7500 L 537.6000,168.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 540.6000,168.7500 L 534.6000,168.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 540.6000,200.0000 L 534.6000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 537.6000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 537.6000,106.2500 L 461.4400,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 461.4400,106.2500 L 385.2800,28.1250" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 385.2800,28.1250 L 309.1200,28.1250" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 309.1200,28.1250 L 232.9600,184.3750" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 232.9600,184.3750 L 156.8000,184.3750" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="537.6000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="461.4400" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="385.2800" cy="28.1250" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="309.1200" cy="28.1250" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="232.9600" cy="184.3750" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="156.8000" cy="184.3750" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 446.6300,33.6000 L 446.6300,14.0000 L 476.7500,14.0000 L 476.7500,33.6000 L 446.6300,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="447.1300" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_10_text" x="458.6500" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_13"><path d=" M 370.4700,33.6000 L 370.4700,14.0000 L 400.5900,14.0000 L 400.5900,33.6000 L 370.4700,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="370.9700" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_13_text" x="382.4900" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_16"><path d=" M 294.3100,33.6000 L 294.3100,14.0000 L 324.4300,14.0000 L 324.4300,33.6000 L 294.3100,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="294.8100" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_16_text" x="306.3300" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_19"><path d=" M 218.1500,33.6000 L 218.1500,14.0000 L 248.2700,14.0000 L 248.2700,33.6000 L 218.1500,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="218.6500" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_19_text" x="230.1700" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_22"><path d=" M 141.9900,33.6000 L 141.9900,14.0000 L 172.1100,14.0000 L 172.1100,33.6000 L 141.9900,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="142.4900" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="154.0100" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25"><path d=" M 529.5200,33.6250 L 529.5200,23.1250 L 536.6000,23.1250 L 536.6000,33.6250 L 529.5200,33.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="530.0200" text-length="5.5800px" y="31.2750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28"><path d=" M 518.3600,64.8750 L 518.3600,54.3750 L 536.6000,54.3750 L 536.6000,64.8750 L 518.3600,64.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="518.8600" text-length="16.7400px" y="62.5250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31"><path d=" M 518.3600,96.1250 L 518.3600,85.6250 L 536.6000,85.6250 L 536.6000,96.1250 L 518.3600,96.1250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="518.8600" text-length="16.7400px" y="93.7750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34"><path d=" M 518.3600,127.3750 L 518.3600,116.8750 L 536.6000,116.8750 L 536.6000,127.3750 L 518.3600,127.3750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="518.8600" text-length="16.7400px" y="125.0250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37"><path d=" M 518.3600,158.6250 L 518.3600,148.1250 L 536.6000,148.1250 L 536.6000,158.6250 L 518.3600,158.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="518.8600" text-length="16.7400px" y="156.2750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40"><path d=" M 518.3600,189.8750 L 518.3600,179.3750 L 536.6000,179.3750 L 536.6000,189.8750 L 518.3600,189.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="518.8600" text-length="16.7400px" y="187.5250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_29.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_29.svg new file mode 100644 index 0000000..f7aa975 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_29.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,200.0000 L 560.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,196.0000 L 560.0000,200.0000 L 552.0000,204.0000 L 552.0000,196.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 228.4800,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 228.4800,197.0000 L 228.4800,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 300.1600,25.0000 L 300.1600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 300.1600,197.0000 L 300.1600,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 371.8400,25.0000 L 371.8400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 371.8400,197.0000 L 371.8400,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 443.5200,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 443.5200,197.0000 L 443.5200,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 515.2000,197.0000 L 515.2000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 156.8000,250.0000 L 156.8000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 153.8000,6.0000 L 156.8000,0.0000 L 159.8000,6.0000 L 153.8000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 156.8000,170.8333 L 515.2000,170.8333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 153.8000,170.8333 L 159.8000,170.8333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,141.6667 L 515.2000,141.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 153.8000,141.6667 L 159.8000,141.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 153.8000,112.5000 L 159.8000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,83.3333 L 515.2000,83.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 153.8000,83.3333 L 159.8000,83.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,54.1667 L 515.2000,54.1667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 153.8000,54.1667 L 159.8000,54.1667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 153.8000,25.0000 L 159.8000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,112.5000 L 156.8000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,112.5000 L 228.4800,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 228.4800,112.5000 L 300.1600,185.4167" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 300.1600,185.4167 L 371.8400,185.4167" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 371.8400,185.4167 L 443.5200,39.5833" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 443.5200,39.5833 L 515.2000,39.5833" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="156.8000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="228.4800" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="300.1600" cy="185.4167" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="371.8400" cy="185.4167" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="443.5200" cy="39.5833" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="515.2000" cy="39.5833" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 194.5900,245.1000 L 194.5900,201.5000 L 262.8700,201.5000 L 262.8700,245.1000 L 194.5900,245.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="195.0900" text-length="66.7800px" y="219.8500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_10_text" x="221.9700" text-length="13.0200px" y="242.9500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_13"><path d=" M 266.2700,245.1000 L 266.2700,201.5000 L 334.5500,201.5000 L 334.5500,245.1000 L 266.2700,245.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="266.7700" text-length="66.7800px" y="219.8500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_13_text" x="293.6500" text-length="13.0200px" y="242.9500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_16"><path d=" M 337.9500,245.1000 L 337.9500,201.5000 L 406.2300,201.5000 L 406.2300,245.1000 L 337.9500,245.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="338.4500" text-length="66.7800px" y="219.8500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_16_text" x="365.3300" text-length="13.0200px" y="242.9500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_19"><path d=" M 409.6300,245.1000 L 409.6300,201.5000 L 477.9100,201.5000 L 477.9100,245.1000 L 409.6300,245.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="410.1300" text-length="66.7800px" y="219.8500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_19_text" x="437.0100" text-length="13.0200px" y="242.9500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_22"><path d=" M 481.3100,245.1000 L 481.3100,201.5000 L 549.5900,201.5000 L 549.5900,245.1000 L 481.3100,245.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="481.8100" text-length="66.7800px" y="219.8500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="508.6900" text-length="13.0200px" y="242.9500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25"><path d=" M 141.2800,196.9167 L 141.2800,174.4167 L 155.8000,174.4167 L 155.8000,196.9167 L 141.2800,196.9167 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="141.7800" text-length="13.0200px" y="192.7667" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28"><path d=" M 115.2400,167.7500 L 115.2400,145.2500 L 155.8000,145.2500 L 155.8000,167.7500 L 115.2400,167.7500 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="115.7400" text-length="39.0600px" y="163.6000" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31"><path d=" M 115.2400,138.5833 L 115.2400,116.0833 L 155.8000,116.0833 L 155.8000,138.5833 L 115.2400,138.5833 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="115.7400" text-length="39.0600px" y="134.4333" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34"><path d=" M 115.2400,109.4167 L 115.2400,86.9167 L 155.8000,86.9167 L 155.8000,109.4167 L 115.2400,109.4167 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="115.7400" text-length="39.0600px" y="105.2667" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37"><path d=" M 115.2400,80.2500 L 115.2400,57.7500 L 155.8000,57.7500 L 155.8000,80.2500 L 115.2400,80.2500 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="115.7400" text-length="39.0600px" y="76.1000" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40"><path d=" M 115.2400,51.0833 L 115.2400,28.5833 L 155.8000,28.5833 L 155.8000,51.0833 L 115.2400,51.0833 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="115.7400" text-length="39.0600px" y="46.9333" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_3.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_3.svg new file mode 100644 index 0000000..dab4f3c --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_3.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,225.0000 L 112.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,229.0000 L 112.0000,225.0000 L 120.0000,221.0000 L 120.0000,229.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 470.4000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 470.4000,225.0000 L 470.4000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 403.2000,12.5000 L 403.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 403.2000,225.0000 L 403.2000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 336.0000,12.5000 L 336.0000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 336.0000,225.0000 L 336.0000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 268.8000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 268.8000,225.0000 L 268.8000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 201.6000,12.5000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 201.6000,225.0000 L 201.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 537.6000,250.0000 L 537.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 533.6000,8.0000 L 537.6000,0.0000 L 541.6000,8.0000 L 533.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 201.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 537.6000,214.3750 L 538.6000,214.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 537.6000,203.7500 L 538.6000,203.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 537.6000,193.1250 L 538.6000,193.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 537.6000,182.5000 L 540.6000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 537.6000,171.8750 L 538.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 537.6000,161.2500 L 538.6000,161.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 537.6000,150.6250 L 538.6000,150.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 537.6000,140.0000 L 540.6000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 537.6000,129.3750 L 538.6000,129.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 537.6000,118.7500 L 538.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 537.6000,108.1250 L 538.6000,108.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 537.6000,97.5000 L 540.6000,97.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 537.6000,86.8750 L 538.6000,86.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 537.6000,76.2500 L 538.6000,76.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 537.6000,65.6250 L 538.6000,65.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 537.6000,55.0000 L 540.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 537.6000,44.3750 L 538.6000,44.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 537.6000,33.7500 L 538.6000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 537.6000,23.1250 L 538.6000,23.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 537.6000,12.5000 L 540.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 537.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 537.6000,118.7500 L 470.4000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 470.4000,118.7500 L 403.2000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 403.2000,225.0000 L 336.0000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 336.0000,225.0000 L 268.8000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 268.8000,12.5000 L 201.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="537.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="470.4000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="403.2000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="336.0000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="268.8000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="201.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 450.8200,237.0000 L 450.8200,226.5000 L 490.4800,226.5000 L 490.4800,237.0000 L 450.8200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_10_text" x="451.3200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_13"><path d=" M 383.6200,237.0000 L 383.6200,226.5000 L 423.2800,226.5000 L 423.2800,237.0000 L 383.6200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_13_text" x="384.1200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_16"><path d=" M 316.4200,237.0000 L 316.4200,226.5000 L 356.0800,226.5000 L 356.0800,237.0000 L 316.4200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_16_text" x="316.9200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_19"><path d=" M 249.2200,237.0000 L 249.2200,226.5000 L 288.8800,226.5000 L 288.8800,237.0000 L 249.2200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_19_text" x="249.7200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 186.7900,246.1000 L 186.7900,226.5000 L 216.9100,226.5000 L 216.9100,246.1000 L 186.7900,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_22_text" x="187.2900" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="198.8100" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25"><path d=" M 529.5200,224.0000 L 529.5200,213.5000 L 536.6000,213.5000 L 536.6000,224.0000 L 529.5200,224.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_25_text" x="530.0200" text-length="5.5800px" y="221.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_34"><path d=" M 518.3600,181.5000 L 518.3600,171.0000 L 536.6000,171.0000 L 536.6000,181.5000 L 518.3600,181.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="518.8600" text-length="16.7400px" y="179.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 518.3600,139.0000 L 518.3600,128.5000 L 536.6000,128.5000 L 536.6000,139.0000 L 518.3600,139.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="518.8600" text-length="16.7400px" y="136.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 518.3600,96.5000 L 518.3600,86.0000 L 536.6000,86.0000 L 536.6000,96.5000 L 518.3600,96.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="518.8600" text-length="16.7400px" y="94.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 518.3600,54.0000 L 518.3600,43.5000 L 536.6000,43.5000 L 536.6000,54.0000 L 518.3600,54.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="518.8600" text-length="16.7400px" y="51.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 518.3600,24.5000 L 518.3600,14.0000 L 536.6000,14.0000 L 536.6000,24.5000 L 518.3600,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="518.8600" text-length="16.7400px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_30.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_30.svg new file mode 100644 index 0000000..0750b77 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_30.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,25.0000 L 560.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,21.0000 L 560.0000,25.0000 L 552.0000,29.0000 L 552.0000,21.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 228.4800,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 228.4800,22.0000 L 228.4800,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 300.1600,25.0000 L 300.1600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 300.1600,22.0000 L 300.1600,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 371.8400,25.0000 L 371.8400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 371.8400,22.0000 L 371.8400,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 443.5200,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 443.5200,22.0000 L 443.5200,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 515.2000,22.0000 L 515.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 156.8000,0.0000 L 156.8000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 160.3000,243.0000 L 156.8000,250.0000 L 153.3000,243.0000 L 160.3000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 156.8000,54.1667 L 515.2000,54.1667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 159.8000,54.1667 L 153.8000,54.1667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,83.3333 L 515.2000,83.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 159.8000,83.3333 L 153.8000,83.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 159.8000,112.5000 L 153.8000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,141.6667 L 515.2000,141.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 159.8000,141.6667 L 153.8000,141.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,170.8333 L 515.2000,170.8333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 159.8000,170.8333 L 153.8000,170.8333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 159.8000,200.0000 L 153.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,112.5000 L 156.8000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,112.5000 L 228.4800,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 228.4800,112.5000 L 300.1600,39.5833" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 300.1600,39.5833 L 371.8400,39.5833" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 371.8400,39.5833 L 443.5200,185.4167" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 443.5200,185.4167 L 515.2000,185.4167" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="156.8000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="228.4800" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="300.1600" cy="39.5833" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="371.8400" cy="39.5833" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="443.5200" cy="185.4167" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="515.2000" cy="185.4167" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 194.5900,70.1000 L 194.5900,26.5000 L 262.8700,26.5000 L 262.8700,70.1000 L 194.5900,70.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="195.0900" text-length="66.7800px" y="44.8500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_10_text" x="221.9700" text-length="13.0200px" y="67.9500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_13"><path d=" M 266.2700,70.1000 L 266.2700,26.5000 L 334.5500,26.5000 L 334.5500,70.1000 L 266.2700,70.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="266.7700" text-length="66.7800px" y="44.8500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_13_text" x="293.6500" text-length="13.0200px" y="67.9500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_16"><path d=" M 337.9500,70.1000 L 337.9500,26.5000 L 406.2300,26.5000 L 406.2300,70.1000 L 337.9500,70.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="338.4500" text-length="66.7800px" y="44.8500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_16_text" x="365.3300" text-length="13.0200px" y="67.9500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_19"><path d=" M 409.6300,70.1000 L 409.6300,26.5000 L 477.9100,26.5000 L 477.9100,70.1000 L 409.6300,70.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="410.1300" text-length="66.7800px" y="44.8500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_19_text" x="437.0100" text-length="13.0200px" y="67.9500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_22"><path d=" M 481.3100,70.1000 L 481.3100,26.5000 L 549.5900,26.5000 L 549.5900,70.1000 L 481.3100,70.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="481.8100" text-length="66.7800px" y="44.8500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="508.6900" text-length="13.0200px" y="67.9500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25"><path d=" M 141.2800,51.0833 L 141.2800,28.5833 L 155.8000,28.5833 L 155.8000,51.0833 L 141.2800,51.0833 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="141.7800" text-length="13.0200px" y="46.9333" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28"><path d=" M 115.2400,80.2500 L 115.2400,57.7500 L 155.8000,57.7500 L 155.8000,80.2500 L 115.2400,80.2500 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="115.7400" text-length="39.0600px" y="76.1000" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31"><path d=" M 115.2400,109.4167 L 115.2400,86.9167 L 155.8000,86.9167 L 155.8000,109.4167 L 115.2400,109.4167 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="115.7400" text-length="39.0600px" y="105.2667" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34"><path d=" M 115.2400,138.5833 L 115.2400,116.0833 L 155.8000,116.0833 L 155.8000,138.5833 L 115.2400,138.5833 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="115.7400" text-length="39.0600px" y="134.4333" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37"><path d=" M 115.2400,167.7500 L 115.2400,145.2500 L 155.8000,145.2500 L 155.8000,167.7500 L 115.2400,167.7500 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="115.7400" text-length="39.0600px" y="163.6000" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40"><path d=" M 115.2400,196.9167 L 115.2400,174.4167 L 155.8000,174.4167 L 155.8000,196.9167 L 115.2400,196.9167 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="115.7400" text-length="39.0600px" y="192.7667" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_31.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_31.svg new file mode 100644 index 0000000..9696333 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_31.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,200.0000 L 112.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,204.0000 L 112.0000,200.0000 L 120.0000,196.0000 L 120.0000,204.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 443.5200,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 443.5200,200.0000 L 443.5200,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 371.8400,25.0000 L 371.8400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 371.8400,200.0000 L 371.8400,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 300.1600,25.0000 L 300.1600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 300.1600,200.0000 L 300.1600,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 228.4800,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 228.4800,200.0000 L 228.4800,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 156.8000,25.0000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 156.8000,200.0000 L 156.8000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 515.2000,250.0000 L 515.2000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 512.2000,6.0000 L 515.2000,0.0000 L 518.2000,6.0000 L 512.2000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 156.8000,170.8333 L 515.2000,170.8333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 512.2000,170.8333 L 518.2000,170.8333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,141.6667 L 515.2000,141.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 512.2000,141.6667 L 518.2000,141.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 512.2000,112.5000 L 518.2000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,83.3333 L 515.2000,83.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 512.2000,83.3333 L 518.2000,83.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,54.1667 L 515.2000,54.1667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 512.2000,54.1667 L 518.2000,54.1667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 512.2000,25.0000 L 518.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 515.2000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 515.2000,112.5000 L 443.5200,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 443.5200,112.5000 L 371.8400,185.4167" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 371.8400,185.4167 L 300.1600,185.4167" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 300.1600,185.4167 L 228.4800,39.5833" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 228.4800,39.5833 L 156.8000,39.5833" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="515.2000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="443.5200" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="371.8400" cy="185.4167" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="300.1600" cy="185.4167" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="228.4800" cy="39.5833" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="156.8000" cy="39.5833" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 409.6300,245.1000 L 409.6300,201.5000 L 477.9100,201.5000 L 477.9100,245.1000 L 409.6300,245.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="410.1300" text-length="66.7800px" y="219.8500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_10_text" x="437.0100" text-length="13.0200px" y="242.9500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_13"><path d=" M 337.9500,245.1000 L 337.9500,201.5000 L 406.2300,201.5000 L 406.2300,245.1000 L 337.9500,245.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="338.4500" text-length="66.7800px" y="219.8500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_13_text" x="365.3300" text-length="13.0200px" y="242.9500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_16"><path d=" M 266.2700,245.1000 L 266.2700,201.5000 L 334.5500,201.5000 L 334.5500,245.1000 L 266.2700,245.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="266.7700" text-length="66.7800px" y="219.8500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_16_text" x="293.6500" text-length="13.0200px" y="242.9500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_19"><path d=" M 194.5900,245.1000 L 194.5900,201.5000 L 262.8700,201.5000 L 262.8700,245.1000 L 194.5900,245.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="195.0900" text-length="66.7800px" y="219.8500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_19_text" x="221.9700" text-length="13.0200px" y="242.9500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_22"><path d=" M 122.9100,245.1000 L 122.9100,201.5000 L 191.1900,201.5000 L 191.1900,245.1000 L 122.9100,245.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="123.4100" text-length="66.7800px" y="219.8500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="150.2900" text-length="13.0200px" y="242.9500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25"><path d=" M 499.6800,196.9167 L 499.6800,174.4167 L 514.2000,174.4167 L 514.2000,196.9167 L 499.6800,196.9167 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="500.1800" text-length="13.0200px" y="192.7667" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28"><path d=" M 473.6400,167.7500 L 473.6400,145.2500 L 514.2000,145.2500 L 514.2000,167.7500 L 473.6400,167.7500 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="474.1400" text-length="39.0600px" y="163.6000" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31"><path d=" M 473.6400,138.5833 L 473.6400,116.0833 L 514.2000,116.0833 L 514.2000,138.5833 L 473.6400,138.5833 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="474.1400" text-length="39.0600px" y="134.4333" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34"><path d=" M 473.6400,109.4167 L 473.6400,86.9167 L 514.2000,86.9167 L 514.2000,109.4167 L 473.6400,109.4167 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="474.1400" text-length="39.0600px" y="105.2667" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37"><path d=" M 473.6400,80.2500 L 473.6400,57.7500 L 514.2000,57.7500 L 514.2000,80.2500 L 473.6400,80.2500 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="474.1400" text-length="39.0600px" y="76.1000" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40"><path d=" M 473.6400,51.0833 L 473.6400,28.5833 L 514.2000,28.5833 L 514.2000,51.0833 L 473.6400,51.0833 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="474.1400" text-length="39.0600px" y="46.9333" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_32.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_32.svg new file mode 100644 index 0000000..9a8e82d --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_32.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,25.0000 L 112.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,29.0000 L 112.0000,25.0000 L 120.0000,21.0000 L 120.0000,29.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 443.5200,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 443.5200,25.0000 L 443.5200,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 371.8400,25.0000 L 371.8400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 371.8400,25.0000 L 371.8400,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 300.1600,25.0000 L 300.1600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 300.1600,25.0000 L 300.1600,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 228.4800,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 228.4800,25.0000 L 228.4800,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 156.8000,25.0000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 156.8000,25.0000 L 156.8000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 515.2000,0.0000 L 515.2000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 518.7000,243.0000 L 515.2000,250.0000 L 511.7000,243.0000 L 518.7000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 156.8000,54.1667 L 515.2000,54.1667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 518.2000,54.1667 L 512.2000,54.1667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,83.3333 L 515.2000,83.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 518.2000,83.3333 L 512.2000,83.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 518.2000,112.5000 L 512.2000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,141.6667 L 515.2000,141.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 518.2000,141.6667 L 512.2000,141.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,170.8333 L 515.2000,170.8333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 518.2000,170.8333 L 512.2000,170.8333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 518.2000,200.0000 L 512.2000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 515.2000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 515.2000,112.5000 L 443.5200,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 443.5200,112.5000 L 371.8400,39.5833" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 371.8400,39.5833 L 300.1600,39.5833" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 300.1600,39.5833 L 228.4800,185.4167" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 228.4800,185.4167 L 156.8000,185.4167" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="515.2000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="443.5200" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="371.8400" cy="39.5833" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="300.1600" cy="39.5833" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="228.4800" cy="185.4167" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="156.8000" cy="185.4167" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 409.6300,70.1000 L 409.6300,26.5000 L 477.9100,26.5000 L 477.9100,70.1000 L 409.6300,70.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="410.1300" text-length="66.7800px" y="44.8500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_10_text" x="437.0100" text-length="13.0200px" y="67.9500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_13"><path d=" M 337.9500,70.1000 L 337.9500,26.5000 L 406.2300,26.5000 L 406.2300,70.1000 L 337.9500,70.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="338.4500" text-length="66.7800px" y="44.8500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_13_text" x="365.3300" text-length="13.0200px" y="67.9500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_16"><path d=" M 266.2700,70.1000 L 266.2700,26.5000 L 334.5500,26.5000 L 334.5500,70.1000 L 266.2700,70.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="266.7700" text-length="66.7800px" y="44.8500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_16_text" x="293.6500" text-length="13.0200px" y="67.9500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_19"><path d=" M 194.5900,70.1000 L 194.5900,26.5000 L 262.8700,26.5000 L 262.8700,70.1000 L 194.5900,70.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="195.0900" text-length="66.7800px" y="44.8500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_19_text" x="221.9700" text-length="13.0200px" y="67.9500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_22"><path d=" M 122.9100,70.1000 L 122.9100,26.5000 L 191.1900,26.5000 L 191.1900,70.1000 L 122.9100,70.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="123.4100" text-length="66.7800px" y="44.8500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="150.2900" text-length="13.0200px" y="67.9500" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25"><path d=" M 499.6800,51.0833 L 499.6800,28.5833 L 514.2000,28.5833 L 514.2000,51.0833 L 499.6800,51.0833 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="500.1800" text-length="13.0200px" y="46.9333" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28"><path d=" M 473.6400,80.2500 L 473.6400,57.7500 L 514.2000,57.7500 L 514.2000,80.2500 L 473.6400,80.2500 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="474.1400" text-length="39.0600px" y="76.1000" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31"><path d=" M 473.6400,109.4167 L 473.6400,86.9167 L 514.2000,86.9167 L 514.2000,109.4167 L 473.6400,109.4167 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="474.1400" text-length="39.0600px" y="105.2667" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34"><path d=" M 473.6400,138.5833 L 473.6400,116.0833 L 514.2000,116.0833 L 514.2000,138.5833 L 473.6400,138.5833 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="474.1400" text-length="39.0600px" y="134.4333" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37"><path d=" M 473.6400,167.7500 L 473.6400,145.2500 L 514.2000,145.2500 L 514.2000,167.7500 L 473.6400,167.7500 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="474.1400" text-length="39.0600px" y="163.6000" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40"><path d=" M 473.6400,196.9167 L 473.6400,174.4167 L 514.2000,174.4167 L 514.2000,196.9167 L 473.6400,196.9167 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="474.1400" text-length="39.0600px" y="192.7667" style="font-size: 21px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_33.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_33.svg new file mode 100644 index 0000000..b8a0b31 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_33.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,225.0000 L 560.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,221.0000 L 560.0000,225.0000 L 552.0000,229.0000 L 552.0000,221.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 268.8000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 268.8000,222.0000 L 268.8000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 336.0000,12.5000 L 336.0000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 336.0000,222.0000 L 336.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 403.2000,12.5000 L 403.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 403.2000,222.0000 L 403.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 470.4000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 470.4000,222.0000 L 470.4000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 537.6000,222.0000 L 537.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 201.6000,250.0000 L 201.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 197.6000,8.0000 L 201.6000,0.0000 L 205.6000,8.0000 L 197.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 201.6000,225.0000 L 204.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,189.5121 L 537.6000,189.5121" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,189.5121 L 204.6000,189.5121" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,154.0242 L 537.6000,154.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,154.0242 L 204.6000,154.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,118.5363 L 537.6000,118.5363" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,118.5363 L 204.6000,118.5363" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,83.0484 L 537.6000,83.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,83.0484 L 204.6000,83.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,47.5605 L 204.6000,47.5605" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,136.2803 L 201.6000,136.2803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,136.2803 L 268.8000,136.2803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 268.8000,136.2803 L 336.0000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 336.0000,225.0000 L 403.2000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 403.2000,225.0000 L 470.4000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 470.4000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="201.6000" cy="136.2803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="268.8000" cy="136.2803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="336.0000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="403.2000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="470.4000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="537.6000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 249.2200,237.0000 L 249.2200,226.5000 L 288.8800,226.5000 L 288.8800,237.0000 L 249.2200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="249.7200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_13"><path d=" M 316.4200,237.0000 L 316.4200,226.5000 L 356.0800,226.5000 L 356.0800,237.0000 L 316.4200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="316.9200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_16"><path d=" M 383.6200,237.0000 L 383.6200,226.5000 L 423.2800,226.5000 L 423.2800,237.0000 L 383.6200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="384.1200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_19"><path d=" M 450.8200,237.0000 L 450.8200,226.5000 L 490.4800,226.5000 L 490.4800,237.0000 L 450.8200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="451.3200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 518.0200,237.0000 L 518.0200,226.5000 L 557.6800,226.5000 L 557.6800,237.0000 L 518.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="518.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_25" transform="rotate( 62.21 201.6000 225.0000 )"><path d=" M 195.5200,235.0000 L 195.5200,224.5000 L 202.6000,224.5000 L 202.6000,235.0000 L 195.5200,235.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="196.0200" text-length="5.5800px" y="232.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 201.6000 189.5121 )"><path d=" M 184.3600,199.5121 L 184.3600,189.0121 L 202.6000,189.0121 L 202.6000,199.5121 L 184.3600,199.5121 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="184.8600" text-length="16.7400px" y="197.1621" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 201.6000 154.0242 )"><path d=" M 184.3600,164.0242 L 184.3600,153.5242 L 202.6000,153.5242 L 202.6000,164.0242 L 184.3600,164.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="184.8600" text-length="16.7400px" y="161.6742" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 201.6000 118.5363 )"><path d=" M 184.3600,128.5363 L 184.3600,118.0363 L 202.6000,118.0363 L 202.6000,128.5363 L 184.3600,128.5363 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="184.8600" text-length="16.7400px" y="126.1863" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 201.6000 83.0484 )"><path d=" M 184.3600,93.0484 L 184.3600,82.5484 L 202.6000,82.5484 L 202.6000,93.0484 L 184.3600,93.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="184.8600" text-length="16.7400px" y="90.6984" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 201.6000 47.5605 )"><path d=" M 184.3600,57.5605 L 184.3600,47.0605 L 202.6000,47.0605 L 202.6000,57.5605 L 184.3600,57.5605 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="184.8600" text-length="16.7400px" y="55.2105" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_34.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_34.svg new file mode 100644 index 0000000..9f680e1 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_34.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,12.5000 L 560.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,8.5000 L 560.0000,12.5000 L 552.0000,16.5000 L 552.0000,8.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 268.8000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 268.8000,9.5000 L 268.8000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 336.0000,12.5000 L 336.0000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 336.0000,9.5000 L 336.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 403.2000,12.5000 L 403.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 403.2000,9.5000 L 403.2000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 470.4000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 470.4000,9.5000 L 470.4000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 537.6000,9.5000 L 537.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 201.6000,0.0000 L 201.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 205.6000,242.0000 L 201.6000,250.0000 L 197.6000,242.0000 L 205.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 201.6000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 204.6000,47.5605 L 201.6000,47.5605" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,83.0484 L 537.6000,83.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 204.6000,83.0484 L 201.6000,83.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,118.5363 L 537.6000,118.5363" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 204.6000,118.5363 L 201.6000,118.5363" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,154.0242 L 537.6000,154.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 204.6000,154.0242 L 201.6000,154.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,189.5121 L 537.6000,189.5121" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 204.6000,189.5121 L 201.6000,189.5121" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 204.6000,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,136.2803 L 201.6000,136.2803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,136.2803 L 268.8000,136.2803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 268.8000,136.2803 L 336.0000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 336.0000,47.5605 L 403.2000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 403.2000,47.5605 L 470.4000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 470.4000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="201.6000" cy="136.2803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="268.8000" cy="136.2803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="336.0000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="403.2000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="470.4000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="537.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 249.2200,24.5000 L 249.2200,14.0000 L 288.8800,14.0000 L 288.8800,24.5000 L 249.2200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="249.7200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_13"><path d=" M 316.4200,24.5000 L 316.4200,14.0000 L 356.0800,14.0000 L 356.0800,24.5000 L 316.4200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="316.9200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_16"><path d=" M 383.6200,24.5000 L 383.6200,14.0000 L 423.2800,14.0000 L 423.2800,24.5000 L 383.6200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="384.1200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_19"><path d=" M 450.8200,24.5000 L 450.8200,14.0000 L 490.4800,14.0000 L 490.4800,24.5000 L 450.8200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="451.3200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 518.0200,24.5000 L 518.0200,14.0000 L 557.6800,14.0000 L 557.6800,24.5000 L 518.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="518.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_25" transform="rotate( 62.21 201.6000 47.5605 )"><path d=" M 195.5200,57.5605 L 195.5200,47.0605 L 202.6000,47.0605 L 202.6000,57.5605 L 195.5200,57.5605 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="196.0200" text-length="5.5800px" y="55.2105" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 201.6000 83.0484 )"><path d=" M 184.3600,93.0484 L 184.3600,82.5484 L 202.6000,82.5484 L 202.6000,93.0484 L 184.3600,93.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="184.8600" text-length="16.7400px" y="90.6984" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 201.6000 118.5363 )"><path d=" M 184.3600,128.5363 L 184.3600,118.0363 L 202.6000,118.0363 L 202.6000,128.5363 L 184.3600,128.5363 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="184.8600" text-length="16.7400px" y="126.1863" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 201.6000 154.0242 )"><path d=" M 184.3600,164.0242 L 184.3600,153.5242 L 202.6000,153.5242 L 202.6000,164.0242 L 184.3600,164.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="184.8600" text-length="16.7400px" y="161.6742" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 201.6000 189.5121 )"><path d=" M 184.3600,199.5121 L 184.3600,189.0121 L 202.6000,189.0121 L 202.6000,199.5121 L 184.3600,199.5121 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="184.8600" text-length="16.7400px" y="197.1621" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 201.6000 225.0000 )"><path d=" M 184.3600,235.0000 L 184.3600,224.5000 L 202.6000,224.5000 L 202.6000,235.0000 L 184.3600,235.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="184.8600" text-length="16.7400px" y="232.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_35.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_35.svg new file mode 100644 index 0000000..c8d01a4 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_35.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,225.0000 L 112.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,229.0000 L 112.0000,225.0000 L 120.0000,221.0000 L 120.0000,229.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 470.4000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 470.4000,225.0000 L 470.4000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 403.2000,12.5000 L 403.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 403.2000,225.0000 L 403.2000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 336.0000,12.5000 L 336.0000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 336.0000,225.0000 L 336.0000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 268.8000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 268.8000,225.0000 L 268.8000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 201.6000,12.5000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 201.6000,225.0000 L 201.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 537.6000,250.0000 L 537.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 533.6000,8.0000 L 537.6000,0.0000 L 541.6000,8.0000 L 533.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 537.6000,225.0000 L 540.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,189.5121 L 537.6000,189.5121" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 537.6000,189.5121 L 540.6000,189.5121" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,154.0242 L 537.6000,154.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 537.6000,154.0242 L 540.6000,154.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,118.5363 L 537.6000,118.5363" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 537.6000,118.5363 L 540.6000,118.5363" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,83.0484 L 537.6000,83.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 537.6000,83.0484 L 540.6000,83.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 537.6000,47.5605 L 540.6000,47.5605" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 537.6000,136.2803 L 537.6000,136.2803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 537.6000,136.2803 L 470.4000,136.2803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 470.4000,136.2803 L 403.2000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 403.2000,225.0000 L 336.0000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 336.0000,225.0000 L 268.8000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 268.8000,47.5605 L 201.6000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="537.6000" cy="136.2803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="470.4000" cy="136.2803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="403.2000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="336.0000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="268.8000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="201.6000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 450.8200,237.0000 L 450.8200,226.5000 L 490.4800,226.5000 L 490.4800,237.0000 L 450.8200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="451.3200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_13"><path d=" M 383.6200,237.0000 L 383.6200,226.5000 L 423.2800,226.5000 L 423.2800,237.0000 L 383.6200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="384.1200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_16"><path d=" M 316.4200,237.0000 L 316.4200,226.5000 L 356.0800,226.5000 L 356.0800,237.0000 L 316.4200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="316.9200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_19"><path d=" M 249.2200,237.0000 L 249.2200,226.5000 L 288.8800,226.5000 L 288.8800,237.0000 L 249.2200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="249.7200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 186.7900,246.1000 L 186.7900,226.5000 L 216.9100,226.5000 L 216.9100,246.1000 L 186.7900,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="187.2900" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="198.8100" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25" transform="rotate( 62.21 537.6000 225.0000 )"><path d=" M 531.5200,235.0000 L 531.5200,224.5000 L 538.6000,224.5000 L 538.6000,235.0000 L 531.5200,235.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="532.0200" text-length="5.5800px" y="232.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 537.6000 189.5121 )"><path d=" M 520.3600,199.5121 L 520.3600,189.0121 L 538.6000,189.0121 L 538.6000,199.5121 L 520.3600,199.5121 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="520.8600" text-length="16.7400px" y="197.1621" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 537.6000 154.0242 )"><path d=" M 520.3600,164.0242 L 520.3600,153.5242 L 538.6000,153.5242 L 538.6000,164.0242 L 520.3600,164.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="520.8600" text-length="16.7400px" y="161.6742" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 537.6000 118.5363 )"><path d=" M 520.3600,128.5363 L 520.3600,118.0363 L 538.6000,118.0363 L 538.6000,128.5363 L 520.3600,128.5363 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="520.8600" text-length="16.7400px" y="126.1863" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 537.6000 83.0484 )"><path d=" M 520.3600,93.0484 L 520.3600,82.5484 L 538.6000,82.5484 L 538.6000,93.0484 L 520.3600,93.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="520.8600" text-length="16.7400px" y="90.6984" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 537.6000 47.5605 )"><path d=" M 520.3600,57.5605 L 520.3600,47.0605 L 538.6000,47.0605 L 538.6000,57.5605 L 520.3600,57.5605 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="520.8600" text-length="16.7400px" y="55.2105" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_36.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_36.svg new file mode 100644 index 0000000..90deb1f --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_36.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,12.5000 L 112.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,16.5000 L 112.0000,12.5000 L 120.0000,8.5000 L 120.0000,16.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 470.4000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 470.4000,12.5000 L 470.4000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 403.2000,12.5000 L 403.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 403.2000,12.5000 L 403.2000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 336.0000,12.5000 L 336.0000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 336.0000,12.5000 L 336.0000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 268.8000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 268.8000,12.5000 L 268.8000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 201.6000,12.5000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 201.6000,12.5000 L 201.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 537.6000,0.0000 L 537.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 541.6000,242.0000 L 537.6000,250.0000 L 533.6000,242.0000 L 541.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 201.6000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 540.6000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,83.0484 L 537.6000,83.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 540.6000,83.0484 L 537.6000,83.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,118.5363 L 537.6000,118.5363" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 540.6000,118.5363 L 537.6000,118.5363" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,154.0242 L 537.6000,154.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 540.6000,154.0242 L 537.6000,154.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,189.5121 L 537.6000,189.5121" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 540.6000,189.5121 L 537.6000,189.5121" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 540.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 537.6000,136.2803 L 537.6000,136.2803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 537.6000,136.2803 L 470.4000,136.2803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 470.4000,136.2803 L 403.2000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 403.2000,47.5605 L 336.0000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 336.0000,47.5605 L 268.8000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 268.8000,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="537.6000" cy="136.2803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="470.4000" cy="136.2803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="403.2000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="336.0000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="268.8000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="201.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 450.8200,24.5000 L 450.8200,14.0000 L 490.4800,14.0000 L 490.4800,24.5000 L 450.8200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="451.3200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_13"><path d=" M 383.6200,24.5000 L 383.6200,14.0000 L 423.2800,14.0000 L 423.2800,24.5000 L 383.6200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="384.1200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_16"><path d=" M 316.4200,24.5000 L 316.4200,14.0000 L 356.0800,14.0000 L 356.0800,24.5000 L 316.4200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="316.9200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_19"><path d=" M 249.2200,24.5000 L 249.2200,14.0000 L 288.8800,14.0000 L 288.8800,24.5000 L 249.2200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="249.7200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 186.7900,33.6000 L 186.7900,14.0000 L 216.9100,14.0000 L 216.9100,33.6000 L 186.7900,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="187.2900" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="198.8100" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25" transform="rotate( 62.21 537.6000 47.5605 )"><path d=" M 531.5200,57.5605 L 531.5200,47.0605 L 538.6000,47.0605 L 538.6000,57.5605 L 531.5200,57.5605 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="532.0200" text-length="5.5800px" y="55.2105" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 537.6000 83.0484 )"><path d=" M 520.3600,93.0484 L 520.3600,82.5484 L 538.6000,82.5484 L 538.6000,93.0484 L 520.3600,93.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="520.8600" text-length="16.7400px" y="90.6984" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 537.6000 118.5363 )"><path d=" M 520.3600,128.5363 L 520.3600,118.0363 L 538.6000,118.0363 L 538.6000,128.5363 L 520.3600,128.5363 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="520.8600" text-length="16.7400px" y="126.1863" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 537.6000 154.0242 )"><path d=" M 520.3600,164.0242 L 520.3600,153.5242 L 538.6000,153.5242 L 538.6000,164.0242 L 520.3600,164.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="520.8600" text-length="16.7400px" y="161.6742" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 537.6000 189.5121 )"><path d=" M 520.3600,199.5121 L 520.3600,189.0121 L 538.6000,189.0121 L 538.6000,199.5121 L 520.3600,199.5121 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="520.8600" text-length="16.7400px" y="197.1621" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 537.6000 225.0000 )"><path d=" M 520.3600,235.0000 L 520.3600,224.5000 L 538.6000,224.5000 L 538.6000,235.0000 L 520.3600,235.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="520.8600" text-length="16.7400px" y="232.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_37.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_37.svg new file mode 100644 index 0000000..cff6090 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_37.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,225.0000 L 560.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,221.0000 L 560.0000,225.0000 L 552.0000,229.0000 L 552.0000,221.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 264.3200,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 264.3200,222.0000 L 264.3200,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 327.0400,25.0000 L 327.0400,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 327.0400,222.0000 L 327.0400,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 389.7600,25.0000 L 389.7600,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 389.7600,222.0000 L 389.7600,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 452.4800,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 452.4800,222.0000 L 452.4800,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 515.2000,222.0000 L 515.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 201.6000,250.0000 L 201.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 197.6000,8.0000 L 201.6000,0.0000 L 205.6000,8.0000 L 197.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 201.6000,225.0000 L 204.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,199.0242 L 515.2000,199.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,199.0242 L 204.6000,199.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,173.0484 L 515.2000,173.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,173.0484 L 204.6000,173.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,147.0726 L 515.2000,147.0726" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,147.0726 L 204.6000,147.0726" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,121.0968 L 515.2000,121.0968" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,121.0968 L 204.6000,121.0968" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,95.1210 L 204.6000,95.1210" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,160.0605 L 201.6000,160.0605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,160.0605 L 264.3200,160.0605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 264.3200,160.0605 L 327.0400,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 327.0400,225.0000 L 389.7600,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 389.7600,225.0000 L 452.4800,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 452.4800,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="201.6000" cy="160.0605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="264.3200" cy="160.0605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="327.0400" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="389.7600" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="452.4800" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="515.2000" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 236.2600,241.0000 L 236.2600,226.5000 L 292.8800,226.5000 L 292.8800,241.0000 L 236.2600,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="236.7600" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_13"><path d=" M 298.9800,241.0000 L 298.9800,226.5000 L 355.6000,226.5000 L 355.6000,241.0000 L 298.9800,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="299.4800" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_16"><path d=" M 361.7000,241.0000 L 361.7000,226.5000 L 418.3200,226.5000 L 418.3200,241.0000 L 361.7000,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="362.2000" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_19"><path d=" M 424.4200,241.0000 L 424.4200,226.5000 L 481.0400,226.5000 L 481.0400,241.0000 L 424.4200,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="424.9200" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 487.1400,241.0000 L 487.1400,226.5000 L 543.7600,226.5000 L 543.7600,241.0000 L 487.1400,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="487.6400" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_25" transform="rotate( 62.21 201.6000 225.0000 )"><path d=" M 193.0400,239.0000 L 193.0400,224.5000 L 202.6000,224.5000 L 202.6000,239.0000 L 193.0400,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="193.5400" text-length="8.0600px" y="236.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 201.6000 199.0242 )"><path d=" M 176.9200,213.0242 L 176.9200,198.5242 L 202.6000,198.5242 L 202.6000,213.0242 L 176.9200,213.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="177.4200" text-length="24.1800px" y="210.0742" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 201.6000 173.0484 )"><path d=" M 176.9200,187.0484 L 176.9200,172.5484 L 202.6000,172.5484 L 202.6000,187.0484 L 176.9200,187.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="177.4200" text-length="24.1800px" y="184.0984" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 201.6000 147.0726 )"><path d=" M 176.9200,161.0726 L 176.9200,146.5726 L 202.6000,146.5726 L 202.6000,161.0726 L 176.9200,161.0726 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="177.4200" text-length="24.1800px" y="158.1226" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 201.6000 121.0968 )"><path d=" M 176.9200,135.0968 L 176.9200,120.5968 L 202.6000,120.5968 L 202.6000,135.0968 L 176.9200,135.0968 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="177.4200" text-length="24.1800px" y="132.1468" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 201.6000 95.1210 )"><path d=" M 176.9200,109.1210 L 176.9200,94.6210 L 202.6000,94.6210 L 202.6000,109.1210 L 176.9200,109.1210 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="177.4200" text-length="24.1800px" y="106.1710" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_38.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_38.svg new file mode 100644 index 0000000..75e97c3 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_38.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,25.0000 L 560.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,21.0000 L 560.0000,25.0000 L 552.0000,29.0000 L 552.0000,21.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 264.3200,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 264.3200,22.0000 L 264.3200,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 327.0400,25.0000 L 327.0400,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 327.0400,22.0000 L 327.0400,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 389.7600,25.0000 L 389.7600,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 389.7600,22.0000 L 389.7600,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 452.4800,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 452.4800,22.0000 L 452.4800,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 515.2000,22.0000 L 515.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 201.6000,0.0000 L 201.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 205.6000,242.0000 L 201.6000,250.0000 L 197.6000,242.0000 L 205.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 201.6000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 204.6000,95.1210 L 201.6000,95.1210" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,121.0968 L 515.2000,121.0968" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 204.6000,121.0968 L 201.6000,121.0968" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,147.0726 L 515.2000,147.0726" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 204.6000,147.0726 L 201.6000,147.0726" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,173.0484 L 515.2000,173.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 204.6000,173.0484 L 201.6000,173.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,199.0242 L 515.2000,199.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 204.6000,199.0242 L 201.6000,199.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 204.6000,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,160.0605 L 201.6000,160.0605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,160.0605 L 264.3200,160.0605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 264.3200,160.0605 L 327.0400,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 327.0400,95.1210 L 389.7600,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 389.7600,95.1210 L 452.4800,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 452.4800,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="201.6000" cy="160.0605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="264.3200" cy="160.0605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="327.0400" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="389.7600" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="452.4800" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="515.2000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 236.2600,41.0000 L 236.2600,26.5000 L 292.8800,26.5000 L 292.8800,41.0000 L 236.2600,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="236.7600" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_13"><path d=" M 298.9800,41.0000 L 298.9800,26.5000 L 355.6000,26.5000 L 355.6000,41.0000 L 298.9800,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="299.4800" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_16"><path d=" M 361.7000,41.0000 L 361.7000,26.5000 L 418.3200,26.5000 L 418.3200,41.0000 L 361.7000,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="362.2000" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_19"><path d=" M 424.4200,41.0000 L 424.4200,26.5000 L 481.0400,26.5000 L 481.0400,41.0000 L 424.4200,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="424.9200" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 487.1400,41.0000 L 487.1400,26.5000 L 543.7600,26.5000 L 543.7600,41.0000 L 487.1400,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="487.6400" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_25" transform="rotate( 62.21 201.6000 95.1210 )"><path d=" M 193.0400,109.1210 L 193.0400,94.6210 L 202.6000,94.6210 L 202.6000,109.1210 L 193.0400,109.1210 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="193.5400" text-length="8.0600px" y="106.1710" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 201.6000 121.0968 )"><path d=" M 176.9200,135.0968 L 176.9200,120.5968 L 202.6000,120.5968 L 202.6000,135.0968 L 176.9200,135.0968 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="177.4200" text-length="24.1800px" y="132.1468" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 201.6000 147.0726 )"><path d=" M 176.9200,161.0726 L 176.9200,146.5726 L 202.6000,146.5726 L 202.6000,161.0726 L 176.9200,161.0726 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="177.4200" text-length="24.1800px" y="158.1226" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 201.6000 173.0484 )"><path d=" M 176.9200,187.0484 L 176.9200,172.5484 L 202.6000,172.5484 L 202.6000,187.0484 L 176.9200,187.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="177.4200" text-length="24.1800px" y="184.0984" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 201.6000 199.0242 )"><path d=" M 176.9200,213.0242 L 176.9200,198.5242 L 202.6000,198.5242 L 202.6000,213.0242 L 176.9200,213.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="177.4200" text-length="24.1800px" y="210.0742" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 201.6000 225.0000 )"><path d=" M 176.9200,239.0000 L 176.9200,224.5000 L 202.6000,224.5000 L 202.6000,239.0000 L 176.9200,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="177.4200" text-length="24.1800px" y="236.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_39.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_39.svg new file mode 100644 index 0000000..2dc02d0 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_39.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,225.0000 L 112.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,229.0000 L 112.0000,225.0000 L 120.0000,221.0000 L 120.0000,229.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 452.4800,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 452.4800,225.0000 L 452.4800,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 389.7600,25.0000 L 389.7600,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 389.7600,225.0000 L 389.7600,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 327.0400,25.0000 L 327.0400,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 327.0400,225.0000 L 327.0400,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 264.3200,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 264.3200,225.0000 L 264.3200,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 201.6000,25.0000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 201.6000,225.0000 L 201.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 515.2000,250.0000 L 515.2000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 511.2000,8.0000 L 515.2000,0.0000 L 519.2000,8.0000 L 511.2000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 515.2000,225.0000 L 518.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,199.0242 L 515.2000,199.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 515.2000,199.0242 L 518.2000,199.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,173.0484 L 515.2000,173.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 515.2000,173.0484 L 518.2000,173.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,147.0726 L 515.2000,147.0726" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 515.2000,147.0726 L 518.2000,147.0726" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,121.0968 L 515.2000,121.0968" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 515.2000,121.0968 L 518.2000,121.0968" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 515.2000,95.1210 L 518.2000,95.1210" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 515.2000,160.0605 L 515.2000,160.0605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 515.2000,160.0605 L 452.4800,160.0605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 452.4800,160.0605 L 389.7600,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 389.7600,225.0000 L 327.0400,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 327.0400,225.0000 L 264.3200,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 264.3200,95.1210 L 201.6000,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="515.2000" cy="160.0605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="452.4800" cy="160.0605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="389.7600" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="327.0400" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="264.3200" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="201.6000" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 424.4200,241.0000 L 424.4200,226.5000 L 481.0400,226.5000 L 481.0400,241.0000 L 424.4200,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="424.9200" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_13"><path d=" M 361.7000,241.0000 L 361.7000,226.5000 L 418.3200,226.5000 L 418.3200,241.0000 L 361.7000,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="362.2000" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_16"><path d=" M 298.9800,241.0000 L 298.9800,226.5000 L 355.6000,226.5000 L 355.6000,241.0000 L 298.9800,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="299.4800" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_19"><path d=" M 236.2600,241.0000 L 236.2600,226.5000 L 292.8800,226.5000 L 292.8800,241.0000 L 236.2600,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="236.7600" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 173.5400,241.0000 L 173.5400,226.5000 L 230.1600,226.5000 L 230.1600,241.0000 L 173.5400,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="174.0400" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_25" transform="rotate( 62.21 515.2000 225.0000 )"><path d=" M 506.6400,239.0000 L 506.6400,224.5000 L 516.2000,224.5000 L 516.2000,239.0000 L 506.6400,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="507.1400" text-length="8.0600px" y="236.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 515.2000 199.0242 )"><path d=" M 490.5200,213.0242 L 490.5200,198.5242 L 516.2000,198.5242 L 516.2000,213.0242 L 490.5200,213.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="491.0200" text-length="24.1800px" y="210.0742" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 515.2000 173.0484 )"><path d=" M 490.5200,187.0484 L 490.5200,172.5484 L 516.2000,172.5484 L 516.2000,187.0484 L 490.5200,187.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="491.0200" text-length="24.1800px" y="184.0984" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 515.2000 147.0726 )"><path d=" M 490.5200,161.0726 L 490.5200,146.5726 L 516.2000,146.5726 L 516.2000,161.0726 L 490.5200,161.0726 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="491.0200" text-length="24.1800px" y="158.1226" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 515.2000 121.0968 )"><path d=" M 490.5200,135.0968 L 490.5200,120.5968 L 516.2000,120.5968 L 516.2000,135.0968 L 490.5200,135.0968 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="491.0200" text-length="24.1800px" y="132.1468" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 515.2000 95.1210 )"><path d=" M 490.5200,109.1210 L 490.5200,94.6210 L 516.2000,94.6210 L 516.2000,109.1210 L 490.5200,109.1210 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="491.0200" text-length="24.1800px" y="106.1710" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_4.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_4.svg new file mode 100644 index 0000000..69b1352 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_4.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,12.5000 L 112.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,16.5000 L 112.0000,12.5000 L 120.0000,8.5000 L 120.0000,16.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 470.4000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 470.4000,12.5000 L 470.4000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 403.2000,12.5000 L 403.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 403.2000,12.5000 L 403.2000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 336.0000,12.5000 L 336.0000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 336.0000,12.5000 L 336.0000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 268.8000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 268.8000,12.5000 L 268.8000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 201.6000,12.5000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 201.6000,12.5000 L 201.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 537.6000,0.0000 L 537.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 541.6000,242.0000 L 537.6000,250.0000 L 533.6000,242.0000 L 541.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 201.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 538.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 538.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 538.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 540.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 538.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 538.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 538.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 540.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 538.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 538.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 538.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 540.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 538.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 538.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 538.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 540.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 538.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 538.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 538.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 540.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 537.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 537.6000,118.7500 L 470.4000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 470.4000,118.7500 L 403.2000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 403.2000,12.5000 L 336.0000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 336.0000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 268.8000,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="537.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="470.4000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="403.2000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="336.0000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="268.8000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="201.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 450.8200,24.5000 L 450.8200,14.0000 L 490.4800,14.0000 L 490.4800,24.5000 L 450.8200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_10_text" x="451.3200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_13"><path d=" M 383.6200,24.5000 L 383.6200,14.0000 L 423.2800,14.0000 L 423.2800,24.5000 L 383.6200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_13_text" x="384.1200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_16"><path d=" M 316.4200,24.5000 L 316.4200,14.0000 L 356.0800,14.0000 L 356.0800,24.5000 L 316.4200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_16_text" x="316.9200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_19"><path d=" M 249.2200,24.5000 L 249.2200,14.0000 L 288.8800,14.0000 L 288.8800,24.5000 L 249.2200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_19_text" x="249.7200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 186.7900,33.6000 L 186.7900,14.0000 L 216.9100,14.0000 L 216.9100,33.6000 L 186.7900,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_22_text" x="187.2900" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="198.8100" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25"><path d=" M 529.5200,24.5000 L 529.5200,14.0000 L 536.6000,14.0000 L 536.6000,24.5000 L 529.5200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_25_text" x="530.0200" text-length="5.5800px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_34"><path d=" M 518.3600,67.0000 L 518.3600,56.5000 L 536.6000,56.5000 L 536.6000,67.0000 L 518.3600,67.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="518.8600" text-length="16.7400px" y="64.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 518.3600,109.5000 L 518.3600,99.0000 L 536.6000,99.0000 L 536.6000,109.5000 L 518.3600,109.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="518.8600" text-length="16.7400px" y="107.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 518.3600,152.0000 L 518.3600,141.5000 L 536.6000,141.5000 L 536.6000,152.0000 L 518.3600,152.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="518.8600" text-length="16.7400px" y="149.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 518.3600,194.5000 L 518.3600,184.0000 L 536.6000,184.0000 L 536.6000,194.5000 L 518.3600,194.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="518.8600" text-length="16.7400px" y="192.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 518.3600,224.0000 L 518.3600,213.5000 L 536.6000,213.5000 L 536.6000,224.0000 L 518.3600,224.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="518.8600" text-length="16.7400px" y="221.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_40.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_40.svg new file mode 100644 index 0000000..17b8f4f --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_40.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,25.0000 L 112.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,29.0000 L 112.0000,25.0000 L 120.0000,21.0000 L 120.0000,29.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 452.4800,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 452.4800,25.0000 L 452.4800,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 389.7600,25.0000 L 389.7600,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 389.7600,25.0000 L 389.7600,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 327.0400,25.0000 L 327.0400,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 327.0400,25.0000 L 327.0400,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 264.3200,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 264.3200,25.0000 L 264.3200,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 201.6000,25.0000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 201.6000,25.0000 L 201.6000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 515.2000,0.0000 L 515.2000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 519.2000,242.0000 L 515.2000,250.0000 L 511.2000,242.0000 L 519.2000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 201.6000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 518.2000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,121.0968 L 515.2000,121.0968" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 518.2000,121.0968 L 515.2000,121.0968" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,147.0726 L 515.2000,147.0726" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 518.2000,147.0726 L 515.2000,147.0726" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,173.0484 L 515.2000,173.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 518.2000,173.0484 L 515.2000,173.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,199.0242 L 515.2000,199.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 518.2000,199.0242 L 515.2000,199.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 518.2000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 515.2000,160.0605 L 515.2000,160.0605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 515.2000,160.0605 L 452.4800,160.0605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 452.4800,160.0605 L 389.7600,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 389.7600,95.1210 L 327.0400,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 327.0400,95.1210 L 264.3200,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 264.3200,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="515.2000" cy="160.0605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="452.4800" cy="160.0605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="389.7600" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="327.0400" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="264.3200" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="201.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 424.4200,41.0000 L 424.4200,26.5000 L 481.0400,26.5000 L 481.0400,41.0000 L 424.4200,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="424.9200" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_13"><path d=" M 361.7000,41.0000 L 361.7000,26.5000 L 418.3200,26.5000 L 418.3200,41.0000 L 361.7000,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="362.2000" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_16"><path d=" M 298.9800,41.0000 L 298.9800,26.5000 L 355.6000,26.5000 L 355.6000,41.0000 L 298.9800,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="299.4800" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_19"><path d=" M 236.2600,41.0000 L 236.2600,26.5000 L 292.8800,26.5000 L 292.8800,41.0000 L 236.2600,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="236.7600" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 173.5400,41.0000 L 173.5400,26.5000 L 230.1600,26.5000 L 230.1600,41.0000 L 173.5400,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="174.0400" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_25" transform="rotate( 62.21 515.2000 95.1210 )"><path d=" M 506.6400,109.1210 L 506.6400,94.6210 L 516.2000,94.6210 L 516.2000,109.1210 L 506.6400,109.1210 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="507.1400" text-length="8.0600px" y="106.1710" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 515.2000 121.0968 )"><path d=" M 490.5200,135.0968 L 490.5200,120.5968 L 516.2000,120.5968 L 516.2000,135.0968 L 490.5200,135.0968 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="491.0200" text-length="24.1800px" y="132.1468" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 515.2000 147.0726 )"><path d=" M 490.5200,161.0726 L 490.5200,146.5726 L 516.2000,146.5726 L 516.2000,161.0726 L 490.5200,161.0726 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="491.0200" text-length="24.1800px" y="158.1226" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 515.2000 173.0484 )"><path d=" M 490.5200,187.0484 L 490.5200,172.5484 L 516.2000,172.5484 L 516.2000,187.0484 L 490.5200,187.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="491.0200" text-length="24.1800px" y="184.0984" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 515.2000 199.0242 )"><path d=" M 490.5200,213.0242 L 490.5200,198.5242 L 516.2000,198.5242 L 516.2000,213.0242 L 490.5200,213.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="491.0200" text-length="24.1800px" y="210.0742" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 515.2000 225.0000 )"><path d=" M 490.5200,239.0000 L 490.5200,224.5000 L 516.2000,224.5000 L 516.2000,239.0000 L 490.5200,239.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="491.0200" text-length="24.1800px" y="236.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_41.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_41.svg new file mode 100644 index 0000000..520e0f9 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_41.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,200.0000 L 560.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,196.0000 L 560.0000,200.0000 L 552.0000,204.0000 L 552.0000,196.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 232.9600,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 232.9600,197.0000 L 232.9600,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 309.1200,12.5000 L 309.1200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 309.1200,197.0000 L 309.1200,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 385.2800,12.5000 L 385.2800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 385.2800,197.0000 L 385.2800,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 461.4400,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 461.4400,197.0000 L 461.4400,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 537.6000,197.0000 L 537.6000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 156.8000,250.0000 L 156.8000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 153.8000,6.0000 L 156.8000,0.0000 L 159.8000,6.0000 L 153.8000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 156.8000,200.0000 L 159.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,169.5121 L 537.6000,169.5121" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,169.5121 L 159.8000,169.5121" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,139.0242 L 537.6000,139.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,139.0242 L 159.8000,139.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,108.5363 L 537.6000,108.5363" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,108.5363 L 159.8000,108.5363" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,78.0484 L 537.6000,78.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,78.0484 L 159.8000,78.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,47.5605 L 159.8000,47.5605" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,123.7803 L 156.8000,123.7803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,123.7803 L 232.9600,123.7803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 232.9600,123.7803 L 309.1200,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 309.1200,200.0000 L 385.2800,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 385.2800,200.0000 L 461.4400,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 461.4400,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="156.8000" cy="123.7803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="232.9600" cy="123.7803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="309.1200" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="385.2800" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="461.4400" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="537.6000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 216.5600,223.1000 L 216.5600,201.5000 L 249.8600,201.5000 L 249.8600,223.1000 L 216.5600,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="217.0600" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_10_text" x="229.8600" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_13"><path d=" M 292.7200,223.1000 L 292.7200,201.5000 L 326.0200,201.5000 L 326.0200,223.1000 L 292.7200,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="293.2200" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_13_text" x="306.0200" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_16"><path d=" M 368.8800,223.1000 L 368.8800,201.5000 L 402.1800,201.5000 L 402.1800,223.1000 L 368.8800,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="369.3800" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_16_text" x="382.1800" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_19"><path d=" M 445.0400,223.1000 L 445.0400,201.5000 L 478.3400,201.5000 L 478.3400,223.1000 L 445.0400,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="445.5400" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_19_text" x="458.3400" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_22"><path d=" M 521.2000,223.1000 L 521.2000,201.5000 L 554.5000,201.5000 L 554.5000,223.1000 L 521.2000,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="521.7000" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="534.5000" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25" transform="rotate( 62.21 156.8000 200.0000 )"><path d=" M 150.1000,211.0000 L 150.1000,199.5000 L 157.8000,199.5000 L 157.8000,211.0000 L 150.1000,211.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="150.6000" text-length="6.2000px" y="208.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 156.8000 169.5121 )"><path d=" M 137.7000,180.5121 L 137.7000,169.0121 L 157.8000,169.0121 L 157.8000,180.5121 L 137.7000,180.5121 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="138.2000" text-length="18.6000px" y="178.0121" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 156.8000 139.0242 )"><path d=" M 137.7000,150.0242 L 137.7000,138.5242 L 157.8000,138.5242 L 157.8000,150.0242 L 137.7000,150.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="138.2000" text-length="18.6000px" y="147.5242" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 156.8000 108.5363 )"><path d=" M 137.7000,119.5363 L 137.7000,108.0363 L 157.8000,108.0363 L 157.8000,119.5363 L 137.7000,119.5363 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="138.2000" text-length="18.6000px" y="117.0363" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 156.8000 78.0484 )"><path d=" M 137.7000,89.0484 L 137.7000,77.5484 L 157.8000,77.5484 L 157.8000,89.0484 L 137.7000,89.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="138.2000" text-length="18.6000px" y="86.5484" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 156.8000 47.5605 )"><path d=" M 137.7000,58.5605 L 137.7000,47.0605 L 157.8000,47.0605 L 157.8000,58.5605 L 137.7000,58.5605 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="138.2000" text-length="18.6000px" y="56.0605" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_42.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_42.svg new file mode 100644 index 0000000..d9811e8 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_42.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,12.5000 L 560.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,8.5000 L 560.0000,12.5000 L 552.0000,16.5000 L 552.0000,8.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 232.9600,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 232.9600,9.5000 L 232.9600,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 309.1200,12.5000 L 309.1200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 309.1200,9.5000 L 309.1200,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 385.2800,12.5000 L 385.2800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 385.2800,9.5000 L 385.2800,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 461.4400,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 461.4400,9.5000 L 461.4400,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 537.6000,9.5000 L 537.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 156.8000,0.0000 L 156.8000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 160.3000,243.0000 L 156.8000,250.0000 L 153.3000,243.0000 L 160.3000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 156.8000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 159.8000,47.5605 L 156.8000,47.5605" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,78.0484 L 537.6000,78.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 159.8000,78.0484 L 156.8000,78.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,108.5363 L 537.6000,108.5363" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 159.8000,108.5363 L 156.8000,108.5363" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,139.0242 L 537.6000,139.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 159.8000,139.0242 L 156.8000,139.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,169.5121 L 537.6000,169.5121" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 159.8000,169.5121 L 156.8000,169.5121" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 159.8000,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,123.7803 L 156.8000,123.7803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,123.7803 L 232.9600,123.7803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 232.9600,123.7803 L 309.1200,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 309.1200,47.5605 L 385.2800,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 385.2800,47.5605 L 461.4400,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 461.4400,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="156.8000" cy="123.7803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="232.9600" cy="123.7803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="309.1200" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="385.2800" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="461.4400" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="537.6000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 216.5600,35.6000 L 216.5600,14.0000 L 249.8600,14.0000 L 249.8600,35.6000 L 216.5600,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="217.0600" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_10_text" x="229.8600" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_13"><path d=" M 292.7200,35.6000 L 292.7200,14.0000 L 326.0200,14.0000 L 326.0200,35.6000 L 292.7200,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="293.2200" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_13_text" x="306.0200" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_16"><path d=" M 368.8800,35.6000 L 368.8800,14.0000 L 402.1800,14.0000 L 402.1800,35.6000 L 368.8800,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="369.3800" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_16_text" x="382.1800" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_19"><path d=" M 445.0400,35.6000 L 445.0400,14.0000 L 478.3400,14.0000 L 478.3400,35.6000 L 445.0400,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="445.5400" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_19_text" x="458.3400" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_22"><path d=" M 521.2000,35.6000 L 521.2000,14.0000 L 554.5000,14.0000 L 554.5000,35.6000 L 521.2000,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="521.7000" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="534.5000" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25" transform="rotate( 62.21 156.8000 47.5605 )"><path d=" M 150.1000,58.5605 L 150.1000,47.0605 L 157.8000,47.0605 L 157.8000,58.5605 L 150.1000,58.5605 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="150.6000" text-length="6.2000px" y="56.0605" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 156.8000 78.0484 )"><path d=" M 137.7000,89.0484 L 137.7000,77.5484 L 157.8000,77.5484 L 157.8000,89.0484 L 137.7000,89.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="138.2000" text-length="18.6000px" y="86.5484" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 156.8000 108.5363 )"><path d=" M 137.7000,119.5363 L 137.7000,108.0363 L 157.8000,108.0363 L 157.8000,119.5363 L 137.7000,119.5363 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="138.2000" text-length="18.6000px" y="117.0363" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 156.8000 139.0242 )"><path d=" M 137.7000,150.0242 L 137.7000,138.5242 L 157.8000,138.5242 L 157.8000,150.0242 L 137.7000,150.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="138.2000" text-length="18.6000px" y="147.5242" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 156.8000 169.5121 )"><path d=" M 137.7000,180.5121 L 137.7000,169.0121 L 157.8000,169.0121 L 157.8000,180.5121 L 137.7000,180.5121 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="138.2000" text-length="18.6000px" y="178.0121" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 156.8000 200.0000 )"><path d=" M 137.7000,211.0000 L 137.7000,199.5000 L 157.8000,199.5000 L 157.8000,211.0000 L 137.7000,211.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="138.2000" text-length="18.6000px" y="208.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_43.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_43.svg new file mode 100644 index 0000000..a7f2b2f --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_43.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,200.0000 L 112.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,204.0000 L 112.0000,200.0000 L 120.0000,196.0000 L 120.0000,204.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 461.4400,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 461.4400,200.0000 L 461.4400,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 385.2800,12.5000 L 385.2800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 385.2800,200.0000 L 385.2800,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 309.1200,12.5000 L 309.1200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 309.1200,200.0000 L 309.1200,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 232.9600,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 232.9600,200.0000 L 232.9600,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 156.8000,12.5000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 156.8000,200.0000 L 156.8000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 537.6000,250.0000 L 537.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 534.6000,6.0000 L 537.6000,0.0000 L 540.6000,6.0000 L 534.6000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 537.6000,200.0000 L 540.6000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,169.5121 L 537.6000,169.5121" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 537.6000,169.5121 L 540.6000,169.5121" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,139.0242 L 537.6000,139.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 537.6000,139.0242 L 540.6000,139.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,108.5363 L 537.6000,108.5363" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 537.6000,108.5363 L 540.6000,108.5363" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,78.0484 L 537.6000,78.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 537.6000,78.0484 L 540.6000,78.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 537.6000,47.5605 L 540.6000,47.5605" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 537.6000,123.7803 L 537.6000,123.7803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 537.6000,123.7803 L 461.4400,123.7803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 461.4400,123.7803 L 385.2800,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 385.2800,200.0000 L 309.1200,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 309.1200,200.0000 L 232.9600,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 232.9600,47.5605 L 156.8000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="537.6000" cy="123.7803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="461.4400" cy="123.7803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="385.2800" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="309.1200" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="232.9600" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="156.8000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 445.0400,223.1000 L 445.0400,201.5000 L 478.3400,201.5000 L 478.3400,223.1000 L 445.0400,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="445.5400" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_10_text" x="458.3400" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_13"><path d=" M 368.8800,223.1000 L 368.8800,201.5000 L 402.1800,201.5000 L 402.1800,223.1000 L 368.8800,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="369.3800" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_13_text" x="382.1800" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_16"><path d=" M 292.7200,223.1000 L 292.7200,201.5000 L 326.0200,201.5000 L 326.0200,223.1000 L 292.7200,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="293.2200" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_16_text" x="306.0200" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_19"><path d=" M 216.5600,223.1000 L 216.5600,201.5000 L 249.8600,201.5000 L 249.8600,223.1000 L 216.5600,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="217.0600" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_19_text" x="229.8600" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_22"><path d=" M 140.4000,223.1000 L 140.4000,201.5000 L 173.7000,201.5000 L 173.7000,223.1000 L 140.4000,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="140.9000" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="153.7000" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25" transform="rotate( 62.21 537.6000 200.0000 )"><path d=" M 530.9000,211.0000 L 530.9000,199.5000 L 538.6000,199.5000 L 538.6000,211.0000 L 530.9000,211.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="531.4000" text-length="6.2000px" y="208.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 537.6000 169.5121 )"><path d=" M 518.5000,180.5121 L 518.5000,169.0121 L 538.6000,169.0121 L 538.6000,180.5121 L 518.5000,180.5121 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="519.0000" text-length="18.6000px" y="178.0121" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 537.6000 139.0242 )"><path d=" M 518.5000,150.0242 L 518.5000,138.5242 L 538.6000,138.5242 L 538.6000,150.0242 L 518.5000,150.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="519.0000" text-length="18.6000px" y="147.5242" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 537.6000 108.5363 )"><path d=" M 518.5000,119.5363 L 518.5000,108.0363 L 538.6000,108.0363 L 538.6000,119.5363 L 518.5000,119.5363 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="519.0000" text-length="18.6000px" y="117.0363" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 537.6000 78.0484 )"><path d=" M 518.5000,89.0484 L 518.5000,77.5484 L 538.6000,77.5484 L 538.6000,89.0484 L 518.5000,89.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="519.0000" text-length="18.6000px" y="86.5484" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 537.6000 47.5605 )"><path d=" M 518.5000,58.5605 L 518.5000,47.0605 L 538.6000,47.0605 L 538.6000,58.5605 L 518.5000,58.5605 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="519.0000" text-length="18.6000px" y="56.0605" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_44.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_44.svg new file mode 100644 index 0000000..35ca7c4 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_44.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,12.5000 L 112.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,16.5000 L 112.0000,12.5000 L 120.0000,8.5000 L 120.0000,16.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 461.4400,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 461.4400,12.5000 L 461.4400,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 385.2800,12.5000 L 385.2800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 385.2800,12.5000 L 385.2800,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 309.1200,12.5000 L 309.1200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 309.1200,12.5000 L 309.1200,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 232.9600,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 232.9600,12.5000 L 232.9600,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 156.8000,12.5000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 156.8000,12.5000 L 156.8000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 537.6000,0.0000 L 537.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 541.1000,243.0000 L 537.6000,250.0000 L 534.1000,243.0000 L 541.1000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 156.8000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 540.6000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,78.0484 L 537.6000,78.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 540.6000,78.0484 L 537.6000,78.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,108.5363 L 537.6000,108.5363" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 540.6000,108.5363 L 537.6000,108.5363" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,139.0242 L 537.6000,139.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 540.6000,139.0242 L 537.6000,139.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,169.5121 L 537.6000,169.5121" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 540.6000,169.5121 L 537.6000,169.5121" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 540.6000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 537.6000,123.7803 L 537.6000,123.7803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 537.6000,123.7803 L 461.4400,123.7803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 461.4400,123.7803 L 385.2800,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 385.2800,47.5605 L 309.1200,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 309.1200,47.5605 L 232.9600,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 232.9600,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="537.6000" cy="123.7803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="461.4400" cy="123.7803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="385.2800" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="309.1200" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="232.9600" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="156.8000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 445.0400,35.6000 L 445.0400,14.0000 L 478.3400,14.0000 L 478.3400,35.6000 L 445.0400,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="445.5400" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_10_text" x="458.3400" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_13"><path d=" M 368.8800,35.6000 L 368.8800,14.0000 L 402.1800,14.0000 L 402.1800,35.6000 L 368.8800,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="369.3800" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_13_text" x="382.1800" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_16"><path d=" M 292.7200,35.6000 L 292.7200,14.0000 L 326.0200,14.0000 L 326.0200,35.6000 L 292.7200,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="293.2200" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_16_text" x="306.0200" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_19"><path d=" M 216.5600,35.6000 L 216.5600,14.0000 L 249.8600,14.0000 L 249.8600,35.6000 L 216.5600,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="217.0600" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_19_text" x="229.8600" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_22"><path d=" M 140.4000,35.6000 L 140.4000,14.0000 L 173.7000,14.0000 L 173.7000,35.6000 L 140.4000,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="140.9000" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="153.7000" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25" transform="rotate( 62.21 537.6000 47.5605 )"><path d=" M 530.9000,58.5605 L 530.9000,47.0605 L 538.6000,47.0605 L 538.6000,58.5605 L 530.9000,58.5605 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="531.4000" text-length="6.2000px" y="56.0605" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 537.6000 78.0484 )"><path d=" M 518.5000,89.0484 L 518.5000,77.5484 L 538.6000,77.5484 L 538.6000,89.0484 L 518.5000,89.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="519.0000" text-length="18.6000px" y="86.5484" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 537.6000 108.5363 )"><path d=" M 518.5000,119.5363 L 518.5000,108.0363 L 538.6000,108.0363 L 538.6000,119.5363 L 518.5000,119.5363 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="519.0000" text-length="18.6000px" y="117.0363" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 537.6000 139.0242 )"><path d=" M 518.5000,150.0242 L 518.5000,138.5242 L 538.6000,138.5242 L 538.6000,150.0242 L 518.5000,150.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="519.0000" text-length="18.6000px" y="147.5242" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 537.6000 169.5121 )"><path d=" M 518.5000,180.5121 L 518.5000,169.0121 L 538.6000,169.0121 L 538.6000,180.5121 L 518.5000,180.5121 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="519.0000" text-length="18.6000px" y="178.0121" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 537.6000 200.0000 )"><path d=" M 518.5000,211.0000 L 518.5000,199.5000 L 538.6000,199.5000 L 538.6000,211.0000 L 518.5000,211.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="519.0000" text-length="18.6000px" y="208.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_45.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_45.svg new file mode 100644 index 0000000..dcc4b35 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_45.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,200.0000 L 560.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,196.0000 L 560.0000,200.0000 L 552.0000,204.0000 L 552.0000,196.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 228.4800,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 228.4800,197.0000 L 228.4800,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 300.1600,25.0000 L 300.1600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 300.1600,197.0000 L 300.1600,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 371.8400,25.0000 L 371.8400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 371.8400,197.0000 L 371.8400,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 443.5200,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 443.5200,197.0000 L 443.5200,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 515.2000,197.0000 L 515.2000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 156.8000,250.0000 L 156.8000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 153.8000,6.0000 L 156.8000,0.0000 L 159.8000,6.0000 L 153.8000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 156.8000,200.0000 L 159.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,179.0242 L 515.2000,179.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,179.0242 L 159.8000,179.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,158.0484 L 515.2000,158.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,158.0484 L 159.8000,158.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,137.0726 L 515.2000,137.0726" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,137.0726 L 159.8000,137.0726" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,116.0968 L 515.2000,116.0968" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,116.0968 L 159.8000,116.0968" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,95.1210 L 159.8000,95.1210" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,147.5605 L 156.8000,147.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,147.5605 L 228.4800,147.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 228.4800,147.5605 L 300.1600,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 300.1600,200.0000 L 371.8400,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 371.8400,200.0000 L 443.5200,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 443.5200,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="156.8000" cy="147.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="228.4800" cy="147.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="300.1600" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="371.8400" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="443.5200" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="515.2000" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 202.0326,235.7383 L 202.0326,201.5000 L 255.4274,201.5000 L 255.4274,235.7383 L 202.0326,235.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="202.5326" text-length="51.8949px" y="215.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_10_text" x="223.4211" text-length="10.1179px" y="233.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_13"><path d=" M 273.7126,235.7383 L 273.7126,201.5000 L 327.1074,201.5000 L 327.1074,235.7383 L 273.7126,235.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="274.2126" text-length="51.8949px" y="215.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_13_text" x="295.1011" text-length="10.1179px" y="233.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_16"><path d=" M 345.3926,235.7383 L 345.3926,201.5000 L 398.7874,201.5000 L 398.7874,235.7383 L 345.3926,235.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="345.8926" text-length="51.8949px" y="215.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_16_text" x="366.7811" text-length="10.1179px" y="233.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_19"><path d=" M 417.0726,235.7383 L 417.0726,201.5000 L 470.4674,201.5000 L 470.4674,235.7383 L 417.0726,235.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="417.5726" text-length="51.8949px" y="215.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_19_text" x="438.4611" text-length="10.1179px" y="233.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_22"><path d=" M 488.7526,235.7383 L 488.7526,201.5000 L 542.1474,201.5000 L 542.1474,235.7383 L 488.7526,235.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="489.2526" text-length="51.8949px" y="215.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="510.1411" text-length="10.1179px" y="233.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25" transform="rotate( 62.21 156.8000 200.0000 )"><path d=" M 146.1821,217.3191 L 146.1821,199.5000 L 157.8000,199.5000 L 157.8000,217.3191 L 146.1821,217.3191 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="146.6821" text-length="10.1179px" y="213.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 156.8000 179.0242 )"><path d=" M 125.9464,196.3433 L 125.9464,178.5242 L 157.8000,178.5242 L 157.8000,196.3433 L 125.9464,196.3433 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="126.4464" text-length="30.3536px" y="192.8955" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 156.8000 158.0484 )"><path d=" M 125.9464,175.3675 L 125.9464,157.5484 L 157.8000,157.5484 L 157.8000,175.3675 L 125.9464,175.3675 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="126.4464" text-length="30.3536px" y="171.9197" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 156.8000 137.0726 )"><path d=" M 125.9464,154.3917 L 125.9464,136.5726 L 157.8000,136.5726 L 157.8000,154.3917 L 125.9464,154.3917 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="126.4464" text-length="30.3536px" y="150.9439" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 156.8000 116.0968 )"><path d=" M 125.9464,133.4159 L 125.9464,115.5968 L 157.8000,115.5968 L 157.8000,133.4159 L 125.9464,133.4159 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="126.4464" text-length="30.3536px" y="129.9681" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 156.8000 95.1210 )"><path d=" M 125.9464,112.4402 L 125.9464,94.6210 L 157.8000,94.6210 L 157.8000,112.4402 L 125.9464,112.4402 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="126.4464" text-length="30.3536px" y="108.9923" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_46.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_46.svg new file mode 100644 index 0000000..78e0157 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_46.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,25.0000 L 560.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,21.0000 L 560.0000,25.0000 L 552.0000,29.0000 L 552.0000,21.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 228.4800,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 228.4800,22.0000 L 228.4800,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 300.1600,25.0000 L 300.1600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 300.1600,22.0000 L 300.1600,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 371.8400,25.0000 L 371.8400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 371.8400,22.0000 L 371.8400,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 443.5200,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 443.5200,22.0000 L 443.5200,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 515.2000,22.0000 L 515.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 156.8000,0.0000 L 156.8000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 160.3000,243.0000 L 156.8000,250.0000 L 153.3000,243.0000 L 160.3000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 156.8000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 159.8000,95.1210 L 156.8000,95.1210" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,116.0968 L 515.2000,116.0968" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 159.8000,116.0968 L 156.8000,116.0968" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,137.0726 L 515.2000,137.0726" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 159.8000,137.0726 L 156.8000,137.0726" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,158.0484 L 515.2000,158.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 159.8000,158.0484 L 156.8000,158.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,179.0242 L 515.2000,179.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 159.8000,179.0242 L 156.8000,179.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 159.8000,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,147.5605 L 156.8000,147.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,147.5605 L 228.4800,147.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 228.4800,147.5605 L 300.1600,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 300.1600,95.1210 L 371.8400,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 371.8400,95.1210 L 443.5200,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 443.5200,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="156.8000" cy="147.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="228.4800" cy="147.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="300.1600" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="371.8400" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="443.5200" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="515.2000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 202.0326,60.7383 L 202.0326,26.5000 L 255.4274,26.5000 L 255.4274,60.7383 L 202.0326,60.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="202.5326" text-length="51.8949px" y="40.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_10_text" x="223.4211" text-length="10.1179px" y="58.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_13"><path d=" M 273.7126,60.7383 L 273.7126,26.5000 L 327.1074,26.5000 L 327.1074,60.7383 L 273.7126,60.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="274.2126" text-length="51.8949px" y="40.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_13_text" x="295.1011" text-length="10.1179px" y="58.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_16"><path d=" M 345.3926,60.7383 L 345.3926,26.5000 L 398.7874,26.5000 L 398.7874,60.7383 L 345.3926,60.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="345.8926" text-length="51.8949px" y="40.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_16_text" x="366.7811" text-length="10.1179px" y="58.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_19"><path d=" M 417.0726,60.7383 L 417.0726,26.5000 L 470.4674,26.5000 L 470.4674,60.7383 L 417.0726,60.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="417.5726" text-length="51.8949px" y="40.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_19_text" x="438.4611" text-length="10.1179px" y="58.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_22"><path d=" M 488.7526,60.7383 L 488.7526,26.5000 L 542.1474,26.5000 L 542.1474,60.7383 L 488.7526,60.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="489.2526" text-length="51.8949px" y="40.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="510.1411" text-length="10.1179px" y="58.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25" transform="rotate( 62.21 156.8000 95.1210 )"><path d=" M 146.1821,112.4402 L 146.1821,94.6210 L 157.8000,94.6210 L 157.8000,112.4402 L 146.1821,112.4402 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="146.6821" text-length="10.1179px" y="108.9923" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 156.8000 116.0968 )"><path d=" M 125.9464,133.4159 L 125.9464,115.5968 L 157.8000,115.5968 L 157.8000,133.4159 L 125.9464,133.4159 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="126.4464" text-length="30.3536px" y="129.9681" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 156.8000 137.0726 )"><path d=" M 125.9464,154.3917 L 125.9464,136.5726 L 157.8000,136.5726 L 157.8000,154.3917 L 125.9464,154.3917 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="126.4464" text-length="30.3536px" y="150.9439" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 156.8000 158.0484 )"><path d=" M 125.9464,175.3675 L 125.9464,157.5484 L 157.8000,157.5484 L 157.8000,175.3675 L 125.9464,175.3675 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="126.4464" text-length="30.3536px" y="171.9197" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 156.8000 179.0242 )"><path d=" M 125.9464,196.3433 L 125.9464,178.5242 L 157.8000,178.5242 L 157.8000,196.3433 L 125.9464,196.3433 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="126.4464" text-length="30.3536px" y="192.8955" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 156.8000 200.0000 )"><path d=" M 125.9464,217.3191 L 125.9464,199.5000 L 157.8000,199.5000 L 157.8000,217.3191 L 125.9464,217.3191 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="126.4464" text-length="30.3536px" y="213.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_47.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_47.svg new file mode 100644 index 0000000..dbbfcc6 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_47.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,200.0000 L 112.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,204.0000 L 112.0000,200.0000 L 120.0000,196.0000 L 120.0000,204.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 443.5200,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 443.5200,200.0000 L 443.5200,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 371.8400,25.0000 L 371.8400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 371.8400,200.0000 L 371.8400,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 300.1600,25.0000 L 300.1600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 300.1600,200.0000 L 300.1600,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 228.4800,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 228.4800,200.0000 L 228.4800,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 156.8000,25.0000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 156.8000,200.0000 L 156.8000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 515.2000,250.0000 L 515.2000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 512.2000,6.0000 L 515.2000,0.0000 L 518.2000,6.0000 L 512.2000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 515.2000,200.0000 L 518.2000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,179.0242 L 515.2000,179.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 515.2000,179.0242 L 518.2000,179.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,158.0484 L 515.2000,158.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 515.2000,158.0484 L 518.2000,158.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,137.0726 L 515.2000,137.0726" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 515.2000,137.0726 L 518.2000,137.0726" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,116.0968 L 515.2000,116.0968" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 515.2000,116.0968 L 518.2000,116.0968" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 515.2000,95.1210 L 518.2000,95.1210" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 515.2000,147.5605 L 515.2000,147.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 515.2000,147.5605 L 443.5200,147.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 443.5200,147.5605 L 371.8400,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 371.8400,200.0000 L 300.1600,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 300.1600,200.0000 L 228.4800,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 228.4800,95.1210 L 156.8000,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="515.2000" cy="147.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="443.5200" cy="147.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="371.8400" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="300.1600" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="228.4800" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="156.8000" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 417.0726,235.7383 L 417.0726,201.5000 L 470.4674,201.5000 L 470.4674,235.7383 L 417.0726,235.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="417.5726" text-length="51.8949px" y="215.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_10_text" x="438.4611" text-length="10.1179px" y="233.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_13"><path d=" M 345.3926,235.7383 L 345.3926,201.5000 L 398.7874,201.5000 L 398.7874,235.7383 L 345.3926,235.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="345.8926" text-length="51.8949px" y="215.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_13_text" x="366.7811" text-length="10.1179px" y="233.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_16"><path d=" M 273.7126,235.7383 L 273.7126,201.5000 L 327.1074,201.5000 L 327.1074,235.7383 L 273.7126,235.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="274.2126" text-length="51.8949px" y="215.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_16_text" x="295.1011" text-length="10.1179px" y="233.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_19"><path d=" M 202.0326,235.7383 L 202.0326,201.5000 L 255.4274,201.5000 L 255.4274,235.7383 L 202.0326,235.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="202.5326" text-length="51.8949px" y="215.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_19_text" x="223.4211" text-length="10.1179px" y="233.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_22"><path d=" M 130.3526,235.7383 L 130.3526,201.5000 L 183.7474,201.5000 L 183.7474,235.7383 L 130.3526,235.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="130.8526" text-length="51.8949px" y="215.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="151.7411" text-length="10.1179px" y="233.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25" transform="rotate( 62.21 515.2000 200.0000 )"><path d=" M 504.5821,217.3191 L 504.5821,199.5000 L 516.2000,199.5000 L 516.2000,217.3191 L 504.5821,217.3191 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="505.0821" text-length="10.1179px" y="213.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 515.2000 179.0242 )"><path d=" M 484.3464,196.3433 L 484.3464,178.5242 L 516.2000,178.5242 L 516.2000,196.3433 L 484.3464,196.3433 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="484.8464" text-length="30.3536px" y="192.8955" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 515.2000 158.0484 )"><path d=" M 484.3464,175.3675 L 484.3464,157.5484 L 516.2000,157.5484 L 516.2000,175.3675 L 484.3464,175.3675 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="484.8464" text-length="30.3536px" y="171.9197" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 515.2000 137.0726 )"><path d=" M 484.3464,154.3917 L 484.3464,136.5726 L 516.2000,136.5726 L 516.2000,154.3917 L 484.3464,154.3917 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="484.8464" text-length="30.3536px" y="150.9439" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 515.2000 116.0968 )"><path d=" M 484.3464,133.4159 L 484.3464,115.5968 L 516.2000,115.5968 L 516.2000,133.4159 L 484.3464,133.4159 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="484.8464" text-length="30.3536px" y="129.9681" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 515.2000 95.1210 )"><path d=" M 484.3464,112.4402 L 484.3464,94.6210 L 516.2000,94.6210 L 516.2000,112.4402 L 484.3464,112.4402 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="484.8464" text-length="30.3536px" y="108.9923" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_48.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_48.svg new file mode 100644 index 0000000..33733f2 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_48.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,25.0000 L 112.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,29.0000 L 112.0000,25.0000 L 120.0000,21.0000 L 120.0000,29.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 443.5200,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 443.5200,25.0000 L 443.5200,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 371.8400,25.0000 L 371.8400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 371.8400,25.0000 L 371.8400,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 300.1600,25.0000 L 300.1600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 300.1600,25.0000 L 300.1600,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 228.4800,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 228.4800,25.0000 L 228.4800,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 156.8000,25.0000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 156.8000,25.0000 L 156.8000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 515.2000,0.0000 L 515.2000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 518.7000,243.0000 L 515.2000,250.0000 L 511.7000,243.0000 L 518.7000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 156.8000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 518.2000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,116.0968 L 515.2000,116.0968" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 518.2000,116.0968 L 515.2000,116.0968" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,137.0726 L 515.2000,137.0726" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 518.2000,137.0726 L 515.2000,137.0726" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,158.0484 L 515.2000,158.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 518.2000,158.0484 L 515.2000,158.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,179.0242 L 515.2000,179.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 518.2000,179.0242 L 515.2000,179.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 518.2000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 515.2000,147.5605 L 515.2000,147.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 515.2000,147.5605 L 443.5200,147.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 443.5200,147.5605 L 371.8400,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 371.8400,95.1210 L 300.1600,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 300.1600,95.1210 L 228.4800,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 228.4800,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><ellipse cx="515.2000" cy="147.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_49"/><ellipse cx="443.5200" cy="147.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="371.8400" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="300.1600" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="228.4800" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="156.8000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_55"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 417.0726,60.7383 L 417.0726,26.5000 L 470.4674,26.5000 L 470.4674,60.7383 L 417.0726,60.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_10_text" x="417.5726" text-length="51.8949px" y="40.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_10_text" x="438.4611" text-length="10.1179px" y="58.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_13"><path d=" M 345.3926,60.7383 L 345.3926,26.5000 L 398.7874,26.5000 L 398.7874,60.7383 L 345.3926,60.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_13_text" x="345.8926" text-length="51.8949px" y="40.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_13_text" x="366.7811" text-length="10.1179px" y="58.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_16"><path d=" M 273.7126,60.7383 L 273.7126,26.5000 L 327.1074,26.5000 L 327.1074,60.7383 L 273.7126,60.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_16_text" x="274.2126" text-length="51.8949px" y="40.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_16_text" x="295.1011" text-length="10.1179px" y="58.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_19"><path d=" M 202.0326,60.7383 L 202.0326,26.5000 L 255.4274,26.5000 L 255.4274,60.7383 L 202.0326,60.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_19_text" x="202.5326" text-length="51.8949px" y="40.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_19_text" x="223.4211" text-length="10.1179px" y="58.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_22"><path d=" M 130.3526,60.7383 L 130.3526,26.5000 L 183.7474,26.5000 L 183.7474,60.7383 L 130.3526,60.7383 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_22_text" x="130.8526" text-length="51.8949px" y="40.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="151.7411" text-length="10.1179px" y="58.8223" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25" transform="rotate( 62.21 515.2000 95.1210 )"><path d=" M 504.5821,112.4402 L 504.5821,94.6210 L 516.2000,94.6210 L 516.2000,112.4402 L 504.5821,112.4402 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_25_text" x="505.0821" text-length="10.1179px" y="108.9923" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_28" transform="rotate( 62.21 515.2000 116.0968 )"><path d=" M 484.3464,133.4159 L 484.3464,115.5968 L 516.2000,115.5968 L 516.2000,133.4159 L 484.3464,133.4159 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_28_text" x="484.8464" text-length="30.3536px" y="129.9681" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_31" transform="rotate( 62.21 515.2000 137.0726 )"><path d=" M 484.3464,154.3917 L 484.3464,136.5726 L 516.2000,136.5726 L 516.2000,154.3917 L 484.3464,154.3917 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_31_text" x="484.8464" text-length="30.3536px" y="150.9439" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_34" transform="rotate( 62.21 515.2000 158.0484 )"><path d=" M 484.3464,175.3675 L 484.3464,157.5484 L 516.2000,157.5484 L 516.2000,175.3675 L 484.3464,175.3675 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_34_text" x="484.8464" text-length="30.3536px" y="171.9197" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_37" transform="rotate( 62.21 515.2000 179.0242 )"><path d=" M 484.3464,196.3433 L 484.3464,178.5242 L 516.2000,178.5242 L 516.2000,196.3433 L 484.3464,196.3433 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_37_text" x="484.8464" text-length="30.3536px" y="192.8955" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_40" transform="rotate( 62.21 515.2000 200.0000 )"><path d=" M 484.3464,217.3191 L 484.3464,199.5000 L 516.2000,199.5000 L 516.2000,217.3191 L 484.3464,217.3191 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_40_text" x="484.8464" text-length="30.3536px" y="213.8713" style="font-size: 16px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_49.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_49.svg new file mode 100644 index 0000000..d99e08f --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_49.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,225.0000 L 560.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,221.0000 L 560.0000,225.0000 L 552.0000,229.0000 L 552.0000,221.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 268.8000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 268.8000,222.0000 L 268.8000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 336.0000,12.5000 L 336.0000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 336.0000,222.0000 L 336.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 403.2000,12.5000 L 403.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 403.2000,222.0000 L 403.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 470.4000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 470.4000,222.0000 L 470.4000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 537.6000,222.0000 L 537.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 201.6000,250.0000 L 201.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 197.6000,8.0000 L 201.6000,0.0000 L 205.6000,8.0000 L 197.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 201.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 201.6000,214.3750 L 202.6000,214.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 201.6000,203.7500 L 202.6000,203.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,193.1250 L 202.6000,193.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,182.5000 L 204.6000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,171.8750 L 202.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 201.6000,161.2500 L 202.6000,161.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,150.6250 L 202.6000,150.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,140.0000 L 204.6000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,129.3750 L 202.6000,129.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 201.6000,118.7500 L 202.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 201.6000,108.1250 L 202.6000,108.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 201.6000,97.5000 L 204.6000,97.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 201.6000,86.8750 L 202.6000,86.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 201.6000,76.2500 L 202.6000,76.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 201.6000,65.6250 L 202.6000,65.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 201.6000,55.0000 L 204.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 201.6000,44.3750 L 202.6000,44.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 201.6000,33.7500 L 202.6000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 201.6000,23.1250 L 202.6000,23.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 201.6000,12.5000 L 204.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,118.7500 L 201.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 201.6000,118.7500 L 268.8000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 268.8000,118.7500 L 336.0000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 336.0000,225.0000 L 403.2000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 403.2000,225.0000 L 470.4000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 470.4000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="201.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="268.8000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="336.0000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="403.2000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="470.4000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="537.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 203.1000,246.1000 L 203.1000,226.5000 L 233.2200,226.5000 L 233.2200,246.1000 L 203.1000,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_8_text" x="203.6000" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="203.6000" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 270.3000,246.1000 L 270.3000,226.5000 L 300.4200,226.5000 L 300.4200,246.1000 L 270.3000,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_11_text" x="270.8000" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="270.8000" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 337.5000,246.1000 L 337.5000,226.5000 L 367.6200,226.5000 L 367.6200,246.1000 L 337.5000,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_14_text" x="338.0000" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="338.0000" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 404.7000,246.1000 L 404.7000,226.5000 L 434.8200,226.5000 L 434.8200,246.1000 L 404.7000,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_17_text" x="405.2000" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="405.2000" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 471.9000,246.1000 L 471.9000,226.5000 L 502.0200,226.5000 L 502.0200,246.1000 L 471.9000,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_20_text" x="472.4000" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="472.4000" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 506.4800,246.1000 L 506.4800,226.5000 L 536.6000,226.5000 L 536.6000,246.1000 L 506.4800,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_23_text" x="506.9800" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="530.0200" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_34"><path d=" M 182.3600,188.0000 L 182.3600,177.5000 L 200.6000,177.5000 L 200.6000,188.0000 L 182.3600,188.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="182.8600" text-length="16.7400px" y="185.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 182.3600,145.5000 L 182.3600,135.0000 L 200.6000,135.0000 L 200.6000,145.5000 L 182.3600,145.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="182.8600" text-length="16.7400px" y="143.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 182.3600,103.0000 L 182.3600,92.5000 L 200.6000,92.5000 L 200.6000,103.0000 L 182.3600,103.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="182.8600" text-length="16.7400px" y="100.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 182.3600,60.5000 L 182.3600,50.0000 L 200.6000,50.0000 L 200.6000,60.5000 L 182.3600,60.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="182.8600" text-length="16.7400px" y="58.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 182.3600,18.0000 L 182.3600,7.5000 L 200.6000,7.5000 L 200.6000,18.0000 L 182.3600,18.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="182.8600" text-length="16.7400px" y="15.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_5.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_5.svg new file mode 100644 index 0000000..be785ae --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_5.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,225.0000 L 560.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,221.0000 L 560.0000,225.0000 L 552.0000,229.0000 L 552.0000,221.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 264.3200,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 264.3200,222.0000 L 264.3200,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 327.0400,25.0000 L 327.0400,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 327.0400,222.0000 L 327.0400,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 389.7600,25.0000 L 389.7600,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 389.7600,222.0000 L 389.7600,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 452.4800,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 452.4800,222.0000 L 452.4800,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 515.2000,222.0000 L 515.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 201.6000,250.0000 L 201.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 197.6000,8.0000 L 201.6000,0.0000 L 205.6000,8.0000 L 197.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 201.6000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 201.6000,215.0000 L 202.6000,215.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 201.6000,205.0000 L 202.6000,205.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,195.0000 L 202.6000,195.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,185.0000 L 204.6000,185.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,175.0000 L 202.6000,175.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 201.6000,165.0000 L 202.6000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,155.0000 L 202.6000,155.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,145.0000 L 204.6000,145.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,135.0000 L 202.6000,135.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 201.6000,125.0000 L 202.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 201.6000,115.0000 L 202.6000,115.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 201.6000,105.0000 L 204.6000,105.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 201.6000,95.0000 L 202.6000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 201.6000,85.0000 L 202.6000,85.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 201.6000,75.0000 L 202.6000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 201.6000,65.0000 L 204.6000,65.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 201.6000,55.0000 L 202.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 201.6000,45.0000 L 202.6000,45.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 201.6000,35.0000 L 202.6000,35.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 201.6000,25.0000 L 204.6000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,125.0000 L 201.6000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 201.6000,125.0000 L 264.3200,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 264.3200,125.0000 L 327.0400,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 327.0400,225.0000 L 389.7600,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 389.7600,225.0000 L 452.4800,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 452.4800,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="201.6000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="264.3200" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="327.0400" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="389.7600" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="452.4800" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="515.2000" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 236.2600,241.0000 L 236.2600,226.5000 L 292.8800,226.5000 L 292.8800,241.0000 L 236.2600,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_10_text" x="236.7600" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_13"><path d=" M 298.9800,241.0000 L 298.9800,226.5000 L 355.6000,226.5000 L 355.6000,241.0000 L 298.9800,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_13_text" x="299.4800" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_16"><path d=" M 361.7000,241.0000 L 361.7000,226.5000 L 418.3200,226.5000 L 418.3200,241.0000 L 361.7000,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_16_text" x="362.2000" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_19"><path d=" M 424.4200,241.0000 L 424.4200,226.5000 L 481.0400,226.5000 L 481.0400,241.0000 L 424.4200,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_19_text" x="424.9200" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 487.1400,241.0000 L 487.1400,226.5000 L 543.7600,226.5000 L 543.7600,241.0000 L 487.1400,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_22_text" x="487.6400" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_25"><path d=" M 191.0400,224.0000 L 191.0400,209.5000 L 200.6000,209.5000 L 200.6000,224.0000 L 191.0400,224.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_25_text" x="191.5400" text-length="8.0600px" y="221.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_34"><path d=" M 174.9200,184.0000 L 174.9200,169.5000 L 200.6000,169.5000 L 200.6000,184.0000 L 174.9200,184.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="175.4200" text-length="24.1800px" y="181.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 174.9200,144.0000 L 174.9200,129.5000 L 200.6000,129.5000 L 200.6000,144.0000 L 174.9200,144.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="175.4200" text-length="24.1800px" y="141.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 174.9200,104.0000 L 174.9200,89.5000 L 200.6000,89.5000 L 200.6000,104.0000 L 174.9200,104.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="175.4200" text-length="24.1800px" y="101.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 174.9200,64.0000 L 174.9200,49.5000 L 200.6000,49.5000 L 200.6000,64.0000 L 174.9200,64.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="175.4200" text-length="24.1800px" y="61.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 174.9200,41.0000 L 174.9200,26.5000 L 200.6000,26.5000 L 200.6000,41.0000 L 174.9200,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="175.4200" text-length="24.1800px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_50.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_50.svg new file mode 100644 index 0000000..c8411f9 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_50.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,12.5000 L 560.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,8.5000 L 560.0000,12.5000 L 552.0000,16.5000 L 552.0000,8.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 268.8000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 268.8000,9.5000 L 268.8000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 336.0000,12.5000 L 336.0000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 336.0000,9.5000 L 336.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 403.2000,12.5000 L 403.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 403.2000,9.5000 L 403.2000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 470.4000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 470.4000,9.5000 L 470.4000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 537.6000,9.5000 L 537.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 201.6000,0.0000 L 201.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 205.6000,242.0000 L 201.6000,250.0000 L 197.6000,242.0000 L 205.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 201.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 202.6000,23.1250 L 201.6000,23.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 202.6000,33.7500 L 201.6000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 202.6000,44.3750 L 201.6000,44.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 204.6000,55.0000 L 201.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 202.6000,65.6250 L 201.6000,65.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 202.6000,76.2500 L 201.6000,76.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 202.6000,86.8750 L 201.6000,86.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 204.6000,97.5000 L 201.6000,97.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 202.6000,108.1250 L 201.6000,108.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 202.6000,118.7500 L 201.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 202.6000,129.3750 L 201.6000,129.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 204.6000,140.0000 L 201.6000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 202.6000,150.6250 L 201.6000,150.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 202.6000,161.2500 L 201.6000,161.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 202.6000,171.8750 L 201.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 204.6000,182.5000 L 201.6000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 202.6000,193.1250 L 201.6000,193.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 202.6000,203.7500 L 201.6000,203.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 202.6000,214.3750 L 201.6000,214.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 204.6000,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,118.7500 L 201.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 201.6000,118.7500 L 268.8000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 268.8000,118.7500 L 336.0000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 336.0000,12.5000 L 403.2000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 403.2000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 470.4000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="201.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="268.8000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="336.0000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="403.2000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="470.4000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="537.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 203.1000,33.6000 L 203.1000,14.0000 L 233.2200,14.0000 L 233.2200,33.6000 L 203.1000,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_8_text" x="203.6000" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="203.6000" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 270.3000,33.6000 L 270.3000,14.0000 L 300.4200,14.0000 L 300.4200,33.6000 L 270.3000,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_11_text" x="270.8000" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="270.8000" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 337.5000,33.6000 L 337.5000,14.0000 L 367.6200,14.0000 L 367.6200,33.6000 L 337.5000,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_14_text" x="338.0000" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="338.0000" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 404.7000,33.6000 L 404.7000,14.0000 L 434.8200,14.0000 L 434.8200,33.6000 L 404.7000,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_17_text" x="405.2000" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="405.2000" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 471.9000,33.6000 L 471.9000,14.0000 L 502.0200,14.0000 L 502.0200,33.6000 L 471.9000,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_20_text" x="472.4000" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="472.4000" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 506.4800,33.6000 L 506.4800,14.0000 L 536.6000,14.0000 L 536.6000,33.6000 L 506.4800,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_23_text" x="506.9800" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="530.0200" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_34"><path d=" M 182.3600,60.5000 L 182.3600,50.0000 L 200.6000,50.0000 L 200.6000,60.5000 L 182.3600,60.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="182.8600" text-length="16.7400px" y="58.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 182.3600,103.0000 L 182.3600,92.5000 L 200.6000,92.5000 L 200.6000,103.0000 L 182.3600,103.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="182.8600" text-length="16.7400px" y="100.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 182.3600,145.5000 L 182.3600,135.0000 L 200.6000,135.0000 L 200.6000,145.5000 L 182.3600,145.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="182.8600" text-length="16.7400px" y="143.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 182.3600,188.0000 L 182.3600,177.5000 L 200.6000,177.5000 L 200.6000,188.0000 L 182.3600,188.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="182.8600" text-length="16.7400px" y="185.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 182.3600,230.5000 L 182.3600,220.0000 L 200.6000,220.0000 L 200.6000,230.5000 L 182.3600,230.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="182.8600" text-length="16.7400px" y="228.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_51.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_51.svg new file mode 100644 index 0000000..4127d13 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_51.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,225.0000 L 112.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,229.0000 L 112.0000,225.0000 L 120.0000,221.0000 L 120.0000,229.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 470.4000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 470.4000,225.0000 L 470.4000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 403.2000,12.5000 L 403.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 403.2000,225.0000 L 403.2000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 336.0000,12.5000 L 336.0000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 336.0000,225.0000 L 336.0000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 268.8000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 268.8000,225.0000 L 268.8000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 201.6000,12.5000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 201.6000,225.0000 L 201.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,250.0000 L 537.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 533.6000,8.0000 L 537.6000,0.0000 L 541.6000,8.0000 L 533.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 201.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 537.6000,214.3750 L 538.6000,214.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 537.6000,203.7500 L 538.6000,203.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 537.6000,193.1250 L 538.6000,193.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 537.6000,182.5000 L 540.6000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 537.6000,171.8750 L 538.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 537.6000,161.2500 L 538.6000,161.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 537.6000,150.6250 L 538.6000,150.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 537.6000,140.0000 L 540.6000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 537.6000,129.3750 L 538.6000,129.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 537.6000,118.7500 L 538.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 537.6000,108.1250 L 538.6000,108.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 537.6000,97.5000 L 540.6000,97.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 537.6000,86.8750 L 538.6000,86.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 537.6000,76.2500 L 538.6000,76.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 537.6000,65.6250 L 538.6000,65.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 537.6000,55.0000 L 540.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 537.6000,44.3750 L 538.6000,44.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 537.6000,33.7500 L 538.6000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 537.6000,23.1250 L 538.6000,23.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 537.6000,12.5000 L 540.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 537.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 537.6000,118.7500 L 470.4000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 470.4000,118.7500 L 403.2000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 403.2000,225.0000 L 336.0000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 336.0000,225.0000 L 268.8000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 268.8000,12.5000 L 201.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="537.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="470.4000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="403.2000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="336.0000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="268.8000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="201.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 506.4800,246.1000 L 506.4800,226.5000 L 536.6000,226.5000 L 536.6000,246.1000 L 506.4800,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_8_text" x="506.9800" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="530.0200" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 439.2800,246.1000 L 439.2800,226.5000 L 469.4000,226.5000 L 469.4000,246.1000 L 439.2800,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_11_text" x="439.7800" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="462.8200" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 372.0800,246.1000 L 372.0800,226.5000 L 402.2000,226.5000 L 402.2000,246.1000 L 372.0800,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_14_text" x="372.5800" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="395.6200" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 304.8800,246.1000 L 304.8800,226.5000 L 335.0000,226.5000 L 335.0000,246.1000 L 304.8800,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_17_text" x="305.3800" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="328.4200" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 237.6800,246.1000 L 237.6800,226.5000 L 267.8000,226.5000 L 267.8000,246.1000 L 237.6800,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_20_text" x="238.1800" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="261.2200" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 203.1000,246.1000 L 203.1000,226.5000 L 233.2200,226.5000 L 233.2200,246.1000 L 203.1000,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_23_text" x="203.6000" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="203.6000" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_34"><path d=" M 518.3600,188.0000 L 518.3600,177.5000 L 536.6000,177.5000 L 536.6000,188.0000 L 518.3600,188.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="518.8600" text-length="16.7400px" y="185.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 518.3600,145.5000 L 518.3600,135.0000 L 536.6000,135.0000 L 536.6000,145.5000 L 518.3600,145.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="518.8600" text-length="16.7400px" y="143.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 518.3600,103.0000 L 518.3600,92.5000 L 536.6000,92.5000 L 536.6000,103.0000 L 518.3600,103.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="518.8600" text-length="16.7400px" y="100.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 518.3600,60.5000 L 518.3600,50.0000 L 536.6000,50.0000 L 536.6000,60.5000 L 518.3600,60.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="518.8600" text-length="16.7400px" y="58.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 518.3600,18.0000 L 518.3600,7.5000 L 536.6000,7.5000 L 536.6000,18.0000 L 518.3600,18.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="518.8600" text-length="16.7400px" y="15.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_52.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_52.svg new file mode 100644 index 0000000..691e387 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_52.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,12.5000 L 112.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,16.5000 L 112.0000,12.5000 L 120.0000,8.5000 L 120.0000,16.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 470.4000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 470.4000,12.5000 L 470.4000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 403.2000,12.5000 L 403.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 403.2000,12.5000 L 403.2000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 336.0000,12.5000 L 336.0000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 336.0000,12.5000 L 336.0000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 268.8000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 268.8000,12.5000 L 268.8000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 201.6000,12.5000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 201.6000,12.5000 L 201.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,0.0000 L 537.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 541.6000,242.0000 L 537.6000,250.0000 L 533.6000,242.0000 L 541.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 201.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 538.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 538.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 538.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 540.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 538.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 538.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 538.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 540.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 538.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 538.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 538.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 540.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 538.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 538.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 538.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 540.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 538.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 538.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 538.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 540.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 537.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 537.6000,118.7500 L 470.4000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 470.4000,118.7500 L 403.2000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 403.2000,12.5000 L 336.0000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 336.0000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 268.8000,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="537.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="470.4000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="403.2000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="336.0000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="268.8000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="201.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 506.4800,33.6000 L 506.4800,14.0000 L 536.6000,14.0000 L 536.6000,33.6000 L 506.4800,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_8_text" x="506.9800" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="530.0200" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 439.2800,33.6000 L 439.2800,14.0000 L 469.4000,14.0000 L 469.4000,33.6000 L 439.2800,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_11_text" x="439.7800" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="462.8200" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 372.0800,33.6000 L 372.0800,14.0000 L 402.2000,14.0000 L 402.2000,33.6000 L 372.0800,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_14_text" x="372.5800" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="395.6200" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 304.8800,33.6000 L 304.8800,14.0000 L 335.0000,14.0000 L 335.0000,33.6000 L 304.8800,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_17_text" x="305.3800" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="328.4200" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 237.6800,33.6000 L 237.6800,14.0000 L 267.8000,14.0000 L 267.8000,33.6000 L 237.6800,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_20_text" x="238.1800" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="261.2200" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 203.1000,33.6000 L 203.1000,14.0000 L 233.2200,14.0000 L 233.2200,33.6000 L 203.1000,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_23_text" x="203.6000" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="203.6000" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_34"><path d=" M 518.3600,60.5000 L 518.3600,50.0000 L 536.6000,50.0000 L 536.6000,60.5000 L 518.3600,60.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="518.8600" text-length="16.7400px" y="58.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 518.3600,103.0000 L 518.3600,92.5000 L 536.6000,92.5000 L 536.6000,103.0000 L 518.3600,103.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="518.8600" text-length="16.7400px" y="100.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 518.3600,145.5000 L 518.3600,135.0000 L 536.6000,135.0000 L 536.6000,145.5000 L 518.3600,145.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="518.8600" text-length="16.7400px" y="143.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 518.3600,188.0000 L 518.3600,177.5000 L 536.6000,177.5000 L 536.6000,188.0000 L 518.3600,188.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="518.8600" text-length="16.7400px" y="185.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 518.3600,230.5000 L 518.3600,220.0000 L 536.6000,220.0000 L 536.6000,230.5000 L 518.3600,230.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="518.8600" text-length="16.7400px" y="228.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_53.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_53.svg new file mode 100644 index 0000000..a471648 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_53.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,225.0000 L 560.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,221.0000 L 560.0000,225.0000 L 552.0000,229.0000 L 552.0000,221.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 264.3200,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 264.3200,222.0000 L 264.3200,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 327.0400,25.0000 L 327.0400,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 327.0400,222.0000 L 327.0400,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 389.7600,25.0000 L 389.7600,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 389.7600,222.0000 L 389.7600,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 452.4800,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 452.4800,222.0000 L 452.4800,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 515.2000,222.0000 L 515.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 201.6000,250.0000 L 201.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 197.6000,8.0000 L 201.6000,0.0000 L 205.6000,8.0000 L 197.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 201.6000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 201.6000,215.0000 L 202.6000,215.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 201.6000,205.0000 L 202.6000,205.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,195.0000 L 202.6000,195.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,185.0000 L 204.6000,185.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,175.0000 L 202.6000,175.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 201.6000,165.0000 L 202.6000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,155.0000 L 202.6000,155.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,145.0000 L 204.6000,145.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,135.0000 L 202.6000,135.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 201.6000,125.0000 L 202.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 201.6000,115.0000 L 202.6000,115.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 201.6000,105.0000 L 204.6000,105.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 201.6000,95.0000 L 202.6000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 201.6000,85.0000 L 202.6000,85.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 201.6000,75.0000 L 202.6000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 201.6000,65.0000 L 204.6000,65.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 201.6000,55.0000 L 202.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 201.6000,45.0000 L 202.6000,45.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 201.6000,35.0000 L 202.6000,35.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 201.6000,25.0000 L 204.6000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,125.0000 L 201.6000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 201.6000,125.0000 L 264.3200,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 264.3200,125.0000 L 327.0400,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 327.0400,225.0000 L 389.7600,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 389.7600,225.0000 L 452.4800,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 452.4800,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="201.6000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="264.3200" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="327.0400" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="389.7600" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="452.4800" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="515.2000" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 203.1000,244.1000 L 203.1000,226.5000 L 230.0400,226.5000 L 230.0400,244.1000 L 203.1000,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_8_text" x="203.6000" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="203.6000" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 265.8200,244.1000 L 265.8200,226.5000 L 292.7600,226.5000 L 292.7600,244.1000 L 265.8200,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_11_text" x="266.3200" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="266.3200" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 328.5400,244.1000 L 328.5400,226.5000 L 355.4800,226.5000 L 355.4800,244.1000 L 328.5400,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_14_text" x="329.0400" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="329.0400" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 391.2600,244.1000 L 391.2600,226.5000 L 418.2000,226.5000 L 418.2000,244.1000 L 391.2600,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_17_text" x="391.7600" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="391.7600" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 453.9800,244.1000 L 453.9800,226.5000 L 480.9200,226.5000 L 480.9200,244.1000 L 453.9800,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_20_text" x="454.4800" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="454.4800" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 487.2600,244.1000 L 487.2600,226.5000 L 514.2000,226.5000 L 514.2000,244.1000 L 487.2600,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_23_text" x="487.7600" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="508.2400" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_34"><path d=" M 184.2200,190.0000 L 184.2200,180.5000 L 200.6000,180.5000 L 200.6000,190.0000 L 184.2200,190.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="184.7200" text-length="14.8800px" y="187.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 184.2200,150.0000 L 184.2200,140.5000 L 200.6000,140.5000 L 200.6000,150.0000 L 184.2200,150.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="184.7200" text-length="14.8800px" y="147.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 184.2200,110.0000 L 184.2200,100.5000 L 200.6000,100.5000 L 200.6000,110.0000 L 184.2200,110.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="184.7200" text-length="14.8800px" y="107.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 184.2200,70.0000 L 184.2200,60.5000 L 200.6000,60.5000 L 200.6000,70.0000 L 184.2200,70.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="184.7200" text-length="14.8800px" y="67.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 184.2200,30.0000 L 184.2200,20.5000 L 200.6000,20.5000 L 200.6000,30.0000 L 184.2200,30.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="184.7200" text-length="14.8800px" y="27.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_54.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_54.svg new file mode 100644 index 0000000..eb230f8 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_54.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,25.0000 L 560.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,21.0000 L 560.0000,25.0000 L 552.0000,29.0000 L 552.0000,21.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 264.3200,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 264.3200,22.0000 L 264.3200,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 327.0400,25.0000 L 327.0400,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 327.0400,22.0000 L 327.0400,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 389.7600,25.0000 L 389.7600,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 389.7600,22.0000 L 389.7600,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 452.4800,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 452.4800,22.0000 L 452.4800,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 515.2000,22.0000 L 515.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 201.6000,0.0000 L 201.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 205.6000,242.0000 L 201.6000,250.0000 L 197.6000,242.0000 L 205.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 201.6000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 202.6000,35.0000 L 201.6000,35.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 202.6000,45.0000 L 201.6000,45.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 202.6000,55.0000 L 201.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 204.6000,65.0000 L 201.6000,65.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 202.6000,75.0000 L 201.6000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 202.6000,85.0000 L 201.6000,85.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 202.6000,95.0000 L 201.6000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 204.6000,105.0000 L 201.6000,105.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 202.6000,115.0000 L 201.6000,115.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 202.6000,125.0000 L 201.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 202.6000,135.0000 L 201.6000,135.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 204.6000,145.0000 L 201.6000,145.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 202.6000,155.0000 L 201.6000,155.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 202.6000,165.0000 L 201.6000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 202.6000,175.0000 L 201.6000,175.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 204.6000,185.0000 L 201.6000,185.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 202.6000,195.0000 L 201.6000,195.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 202.6000,205.0000 L 201.6000,205.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 202.6000,215.0000 L 201.6000,215.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 204.6000,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,125.0000 L 201.6000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 201.6000,125.0000 L 264.3200,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 264.3200,125.0000 L 327.0400,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 327.0400,25.0000 L 389.7600,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 389.7600,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 452.4800,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="201.6000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="264.3200" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="327.0400" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="389.7600" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="452.4800" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="515.2000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 203.1000,44.1000 L 203.1000,26.5000 L 230.0400,26.5000 L 230.0400,44.1000 L 203.1000,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_8_text" x="203.6000" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="203.6000" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 265.8200,44.1000 L 265.8200,26.5000 L 292.7600,26.5000 L 292.7600,44.1000 L 265.8200,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_11_text" x="266.3200" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="266.3200" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 328.5400,44.1000 L 328.5400,26.5000 L 355.4800,26.5000 L 355.4800,44.1000 L 328.5400,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_14_text" x="329.0400" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="329.0400" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 391.2600,44.1000 L 391.2600,26.5000 L 418.2000,26.5000 L 418.2000,44.1000 L 391.2600,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_17_text" x="391.7600" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="391.7600" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 453.9800,44.1000 L 453.9800,26.5000 L 480.9200,26.5000 L 480.9200,44.1000 L 453.9800,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_20_text" x="454.4800" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="454.4800" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 487.2600,44.1000 L 487.2600,26.5000 L 514.2000,26.5000 L 514.2000,44.1000 L 487.2600,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_23_text" x="487.7600" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="508.2400" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_34"><path d=" M 184.2200,70.0000 L 184.2200,60.5000 L 200.6000,60.5000 L 200.6000,70.0000 L 184.2200,70.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="184.7200" text-length="14.8800px" y="67.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 184.2200,110.0000 L 184.2200,100.5000 L 200.6000,100.5000 L 200.6000,110.0000 L 184.2200,110.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="184.7200" text-length="14.8800px" y="107.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 184.2200,150.0000 L 184.2200,140.5000 L 200.6000,140.5000 L 200.6000,150.0000 L 184.2200,150.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="184.7200" text-length="14.8800px" y="147.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 184.2200,190.0000 L 184.2200,180.5000 L 200.6000,180.5000 L 200.6000,190.0000 L 184.2200,190.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="184.7200" text-length="14.8800px" y="187.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 184.2200,230.0000 L 184.2200,220.5000 L 200.6000,220.5000 L 200.6000,230.0000 L 184.2200,230.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="184.7200" text-length="14.8800px" y="227.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_55.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_55.svg new file mode 100644 index 0000000..493ce2b --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_55.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,225.0000 L 112.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,229.0000 L 112.0000,225.0000 L 120.0000,221.0000 L 120.0000,229.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 452.4800,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 452.4800,225.0000 L 452.4800,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 389.7600,25.0000 L 389.7600,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 389.7600,225.0000 L 389.7600,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 327.0400,25.0000 L 327.0400,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 327.0400,225.0000 L 327.0400,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 264.3200,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 264.3200,225.0000 L 264.3200,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 201.6000,25.0000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 201.6000,225.0000 L 201.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,250.0000 L 515.2000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 511.2000,8.0000 L 515.2000,0.0000 L 519.2000,8.0000 L 511.2000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 201.6000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 515.2000,215.0000 L 516.2000,215.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 515.2000,205.0000 L 516.2000,205.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 515.2000,195.0000 L 516.2000,195.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 515.2000,185.0000 L 518.2000,185.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 515.2000,175.0000 L 516.2000,175.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 515.2000,165.0000 L 516.2000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 515.2000,155.0000 L 516.2000,155.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 515.2000,145.0000 L 518.2000,145.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 515.2000,135.0000 L 516.2000,135.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 515.2000,125.0000 L 516.2000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 515.2000,115.0000 L 516.2000,115.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 515.2000,105.0000 L 518.2000,105.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 515.2000,95.0000 L 516.2000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 515.2000,85.0000 L 516.2000,85.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 515.2000,75.0000 L 516.2000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 515.2000,65.0000 L 518.2000,65.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 515.2000,55.0000 L 516.2000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 515.2000,45.0000 L 516.2000,45.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 515.2000,35.0000 L 516.2000,35.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 515.2000,25.0000 L 518.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 515.2000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 515.2000,125.0000 L 452.4800,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 452.4800,125.0000 L 389.7600,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 389.7600,225.0000 L 327.0400,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 327.0400,225.0000 L 264.3200,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 264.3200,25.0000 L 201.6000,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="515.2000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="452.4800" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="389.7600" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="327.0400" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="264.3200" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="201.6000" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 487.2600,244.1000 L 487.2600,226.5000 L 514.2000,226.5000 L 514.2000,244.1000 L 487.2600,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_8_text" x="487.7600" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="508.2400" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 424.5400,244.1000 L 424.5400,226.5000 L 451.4800,226.5000 L 451.4800,244.1000 L 424.5400,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_11_text" x="425.0400" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="445.5200" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 361.8200,244.1000 L 361.8200,226.5000 L 388.7600,226.5000 L 388.7600,244.1000 L 361.8200,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_14_text" x="362.3200" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="382.8000" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 299.1000,244.1000 L 299.1000,226.5000 L 326.0400,226.5000 L 326.0400,244.1000 L 299.1000,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_17_text" x="299.6000" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="320.0800" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 236.3800,244.1000 L 236.3800,226.5000 L 263.3200,226.5000 L 263.3200,244.1000 L 236.3800,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_20_text" x="236.8800" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="257.3600" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 203.1000,244.1000 L 203.1000,226.5000 L 230.0400,226.5000 L 230.0400,244.1000 L 203.1000,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_23_text" x="203.6000" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="203.6000" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_34"><path d=" M 497.8200,190.0000 L 497.8200,180.5000 L 514.2000,180.5000 L 514.2000,190.0000 L 497.8200,190.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="498.3200" text-length="14.8800px" y="187.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 497.8200,150.0000 L 497.8200,140.5000 L 514.2000,140.5000 L 514.2000,150.0000 L 497.8200,150.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="498.3200" text-length="14.8800px" y="147.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 497.8200,110.0000 L 497.8200,100.5000 L 514.2000,100.5000 L 514.2000,110.0000 L 497.8200,110.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="498.3200" text-length="14.8800px" y="107.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 497.8200,70.0000 L 497.8200,60.5000 L 514.2000,60.5000 L 514.2000,70.0000 L 497.8200,70.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="498.3200" text-length="14.8800px" y="67.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 497.8200,30.0000 L 497.8200,20.5000 L 514.2000,20.5000 L 514.2000,30.0000 L 497.8200,30.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="498.3200" text-length="14.8800px" y="27.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_56.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_56.svg new file mode 100644 index 0000000..58662ed --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_56.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,25.0000 L 112.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,29.0000 L 112.0000,25.0000 L 120.0000,21.0000 L 120.0000,29.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 452.4800,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 452.4800,25.0000 L 452.4800,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 389.7600,25.0000 L 389.7600,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 389.7600,25.0000 L 389.7600,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 327.0400,25.0000 L 327.0400,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 327.0400,25.0000 L 327.0400,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 264.3200,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 264.3200,25.0000 L 264.3200,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 201.6000,25.0000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 201.6000,25.0000 L 201.6000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,0.0000 L 515.2000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 519.2000,242.0000 L 515.2000,250.0000 L 511.2000,242.0000 L 519.2000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 201.6000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 516.2000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 516.2000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 516.2000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 518.2000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 516.2000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 516.2000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 516.2000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 518.2000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 516.2000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 516.2000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 516.2000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 518.2000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 516.2000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 516.2000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 516.2000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 518.2000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 516.2000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 516.2000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 516.2000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 518.2000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 515.2000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 515.2000,125.0000 L 452.4800,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 452.4800,125.0000 L 389.7600,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 389.7600,25.0000 L 327.0400,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 327.0400,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 264.3200,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="515.2000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="452.4800" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="389.7600" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="327.0400" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="264.3200" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="201.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 487.2600,44.1000 L 487.2600,26.5000 L 514.2000,26.5000 L 514.2000,44.1000 L 487.2600,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_8_text" x="487.7600" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="508.2400" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 424.5400,44.1000 L 424.5400,26.5000 L 451.4800,26.5000 L 451.4800,44.1000 L 424.5400,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_11_text" x="425.0400" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="445.5200" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 361.8200,44.1000 L 361.8200,26.5000 L 388.7600,26.5000 L 388.7600,44.1000 L 361.8200,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_14_text" x="362.3200" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="382.8000" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 299.1000,44.1000 L 299.1000,26.5000 L 326.0400,26.5000 L 326.0400,44.1000 L 299.1000,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_17_text" x="299.6000" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="320.0800" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 236.3800,44.1000 L 236.3800,26.5000 L 263.3200,26.5000 L 263.3200,44.1000 L 236.3800,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_20_text" x="236.8800" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="257.3600" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 203.1000,44.1000 L 203.1000,26.5000 L 230.0400,26.5000 L 230.0400,44.1000 L 203.1000,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_23_text" x="203.6000" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="203.6000" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_34"><path d=" M 497.8200,70.0000 L 497.8200,60.5000 L 514.2000,60.5000 L 514.2000,70.0000 L 497.8200,70.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="498.3200" text-length="14.8800px" y="67.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 497.8200,110.0000 L 497.8200,100.5000 L 514.2000,100.5000 L 514.2000,110.0000 L 497.8200,110.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="498.3200" text-length="14.8800px" y="107.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 497.8200,150.0000 L 497.8200,140.5000 L 514.2000,140.5000 L 514.2000,150.0000 L 497.8200,150.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="498.3200" text-length="14.8800px" y="147.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 497.8200,190.0000 L 497.8200,180.5000 L 514.2000,180.5000 L 514.2000,190.0000 L 497.8200,190.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="498.3200" text-length="14.8800px" y="187.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 497.8200,230.0000 L 497.8200,220.5000 L 514.2000,220.5000 L 514.2000,230.0000 L 497.8200,230.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="498.3200" text-length="14.8800px" y="227.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_57.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_57.svg new file mode 100644 index 0000000..493c6a1 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_57.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,200.0000 L 560.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,196.0000 L 560.0000,200.0000 L 552.0000,204.0000 L 552.0000,196.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 232.9600,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 232.9600,197.0000 L 232.9600,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 309.1200,12.5000 L 309.1200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 309.1200,197.0000 L 309.1200,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 385.2800,12.5000 L 385.2800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 385.2800,197.0000 L 385.2800,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 461.4400,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 461.4400,197.0000 L 461.4400,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 537.6000,197.0000 L 537.6000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 156.8000,250.0000 L 156.8000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 153.8000,6.0000 L 156.8000,0.0000 L 159.8000,6.0000 L 153.8000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 156.8000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 156.8000,190.6250 L 157.8000,190.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 156.8000,181.2500 L 157.8000,181.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,171.8750 L 157.8000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,162.5000 L 159.8000,162.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,153.1250 L 157.8000,153.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 156.8000,143.7500 L 157.8000,143.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,134.3750 L 157.8000,134.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,125.0000 L 159.8000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,115.6250 L 157.8000,115.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 156.8000,106.2500 L 157.8000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 156.8000,96.8750 L 157.8000,96.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 156.8000,87.5000 L 159.8000,87.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 156.8000,78.1250 L 157.8000,78.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 156.8000,68.7500 L 157.8000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 156.8000,59.3750 L 157.8000,59.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 156.8000,50.0000 L 159.8000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 156.8000,40.6250 L 157.8000,40.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 156.8000,31.2500 L 157.8000,31.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 156.8000,21.8750 L 157.8000,21.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 156.8000,12.5000 L 159.8000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,106.2500 L 156.8000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 156.8000,106.2500 L 232.9600,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 232.9600,106.2500 L 309.1200,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 309.1200,200.0000 L 385.2800,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 385.2800,200.0000 L 461.4400,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 461.4400,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="156.8000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="232.9600" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="309.1200" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="385.2800" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="461.4400" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="537.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 158.3000,221.1000 L 158.3000,201.5000 L 188.4200,201.5000 L 188.4200,221.1000 L 158.3000,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_8_text" x="158.8000" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="158.8000" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 234.4600,221.1000 L 234.4600,201.5000 L 264.5800,201.5000 L 264.5800,221.1000 L 234.4600,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_11_text" x="234.9600" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="234.9600" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 310.6200,221.1000 L 310.6200,201.5000 L 340.7400,201.5000 L 340.7400,221.1000 L 310.6200,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_14_text" x="311.1200" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="311.1200" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 386.7800,221.1000 L 386.7800,201.5000 L 416.9000,201.5000 L 416.9000,221.1000 L 386.7800,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_17_text" x="387.2800" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="387.2800" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 462.9400,221.1000 L 462.9400,201.5000 L 493.0600,201.5000 L 493.0600,221.1000 L 462.9400,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_20_text" x="463.4400" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="463.4400" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 506.4800,221.1000 L 506.4800,201.5000 L 536.6000,201.5000 L 536.6000,221.1000 L 506.4800,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_23_text" x="506.9800" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="530.0200" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_34"><path d=" M 137.5600,168.0000 L 137.5600,157.5000 L 155.8000,157.5000 L 155.8000,168.0000 L 137.5600,168.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="138.0600" text-length="16.7400px" y="165.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 137.5600,130.5000 L 137.5600,120.0000 L 155.8000,120.0000 L 155.8000,130.5000 L 137.5600,130.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="138.0600" text-length="16.7400px" y="128.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 137.5600,93.0000 L 137.5600,82.5000 L 155.8000,82.5000 L 155.8000,93.0000 L 137.5600,93.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="138.0600" text-length="16.7400px" y="90.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 137.5600,55.5000 L 137.5600,45.0000 L 155.8000,45.0000 L 155.8000,55.5000 L 137.5600,55.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="138.0600" text-length="16.7400px" y="53.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 137.5600,18.0000 L 137.5600,7.5000 L 155.8000,7.5000 L 155.8000,18.0000 L 137.5600,18.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="138.0600" text-length="16.7400px" y="15.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_58.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_58.svg new file mode 100644 index 0000000..e8f1ae8 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_58.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,12.5000 L 560.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,8.5000 L 560.0000,12.5000 L 552.0000,16.5000 L 552.0000,8.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 232.9600,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 232.9600,9.5000 L 232.9600,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 309.1200,12.5000 L 309.1200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 309.1200,9.5000 L 309.1200,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 385.2800,12.5000 L 385.2800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 385.2800,9.5000 L 385.2800,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 461.4400,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 461.4400,9.5000 L 461.4400,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 537.6000,9.5000 L 537.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 156.8000,0.0000 L 156.8000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 160.3000,243.0000 L 156.8000,250.0000 L 153.3000,243.0000 L 160.3000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 156.8000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 157.8000,21.8750 L 156.8000,21.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 157.8000,31.2500 L 156.8000,31.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 157.8000,40.6250 L 156.8000,40.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 159.8000,50.0000 L 156.8000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 157.8000,59.3750 L 156.8000,59.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 157.8000,68.7500 L 156.8000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 157.8000,78.1250 L 156.8000,78.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 159.8000,87.5000 L 156.8000,87.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 157.8000,96.8750 L 156.8000,96.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 157.8000,106.2500 L 156.8000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 157.8000,115.6250 L 156.8000,115.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 159.8000,125.0000 L 156.8000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 157.8000,134.3750 L 156.8000,134.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 157.8000,143.7500 L 156.8000,143.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 157.8000,153.1250 L 156.8000,153.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 159.8000,162.5000 L 156.8000,162.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 157.8000,171.8750 L 156.8000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 157.8000,181.2500 L 156.8000,181.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 157.8000,190.6250 L 156.8000,190.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 159.8000,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,106.2500 L 156.8000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 156.8000,106.2500 L 232.9600,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 232.9600,106.2500 L 309.1200,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 309.1200,12.5000 L 385.2800,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 385.2800,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 461.4400,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="156.8000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="232.9600" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="309.1200" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="385.2800" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="461.4400" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="537.6000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 158.3000,33.6000 L 158.3000,14.0000 L 188.4200,14.0000 L 188.4200,33.6000 L 158.3000,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_8_text" x="158.8000" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="158.8000" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 234.4600,33.6000 L 234.4600,14.0000 L 264.5800,14.0000 L 264.5800,33.6000 L 234.4600,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_11_text" x="234.9600" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="234.9600" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 310.6200,33.6000 L 310.6200,14.0000 L 340.7400,14.0000 L 340.7400,33.6000 L 310.6200,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_14_text" x="311.1200" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="311.1200" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 386.7800,33.6000 L 386.7800,14.0000 L 416.9000,14.0000 L 416.9000,33.6000 L 386.7800,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_17_text" x="387.2800" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="387.2800" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 462.9400,33.6000 L 462.9400,14.0000 L 493.0600,14.0000 L 493.0600,33.6000 L 462.9400,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_20_text" x="463.4400" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="463.4400" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 506.4800,33.6000 L 506.4800,14.0000 L 536.6000,14.0000 L 536.6000,33.6000 L 506.4800,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_23_text" x="506.9800" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="530.0200" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_34"><path d=" M 137.5600,55.5000 L 137.5600,45.0000 L 155.8000,45.0000 L 155.8000,55.5000 L 137.5600,55.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="138.0600" text-length="16.7400px" y="53.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 137.5600,93.0000 L 137.5600,82.5000 L 155.8000,82.5000 L 155.8000,93.0000 L 137.5600,93.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="138.0600" text-length="16.7400px" y="90.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 137.5600,130.5000 L 137.5600,120.0000 L 155.8000,120.0000 L 155.8000,130.5000 L 137.5600,130.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="138.0600" text-length="16.7400px" y="128.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 137.5600,168.0000 L 137.5600,157.5000 L 155.8000,157.5000 L 155.8000,168.0000 L 137.5600,168.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="138.0600" text-length="16.7400px" y="165.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 137.5600,205.5000 L 137.5600,195.0000 L 155.8000,195.0000 L 155.8000,205.5000 L 137.5600,205.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="138.0600" text-length="16.7400px" y="203.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_59.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_59.svg new file mode 100644 index 0000000..73788fd --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_59.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,200.0000 L 112.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,204.0000 L 112.0000,200.0000 L 120.0000,196.0000 L 120.0000,204.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 461.4400,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 461.4400,200.0000 L 461.4400,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 385.2800,12.5000 L 385.2800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 385.2800,200.0000 L 385.2800,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 309.1200,12.5000 L 309.1200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 309.1200,200.0000 L 309.1200,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 232.9600,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 232.9600,200.0000 L 232.9600,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 156.8000,12.5000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 156.8000,200.0000 L 156.8000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,250.0000 L 537.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 534.6000,6.0000 L 537.6000,0.0000 L 540.6000,6.0000 L 534.6000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 156.8000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 537.6000,190.6250 L 538.6000,190.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 537.6000,181.2500 L 538.6000,181.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 537.6000,171.8750 L 538.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 537.6000,162.5000 L 540.6000,162.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 537.6000,153.1250 L 538.6000,153.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 537.6000,143.7500 L 538.6000,143.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 537.6000,134.3750 L 538.6000,134.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 537.6000,125.0000 L 540.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 537.6000,115.6250 L 538.6000,115.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 537.6000,106.2500 L 538.6000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 537.6000,96.8750 L 538.6000,96.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 537.6000,87.5000 L 540.6000,87.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 537.6000,78.1250 L 538.6000,78.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 537.6000,68.7500 L 538.6000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 537.6000,59.3750 L 538.6000,59.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 537.6000,50.0000 L 540.6000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 537.6000,40.6250 L 538.6000,40.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 537.6000,31.2500 L 538.6000,31.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 537.6000,21.8750 L 538.6000,21.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 537.6000,12.5000 L 540.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 537.6000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 537.6000,106.2500 L 461.4400,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 461.4400,106.2500 L 385.2800,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 385.2800,200.0000 L 309.1200,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 309.1200,200.0000 L 232.9600,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 232.9600,12.5000 L 156.8000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="537.6000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="461.4400" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="385.2800" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="309.1200" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="232.9600" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="156.8000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 506.4800,221.1000 L 506.4800,201.5000 L 536.6000,201.5000 L 536.6000,221.1000 L 506.4800,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_8_text" x="506.9800" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="530.0200" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 430.3200,221.1000 L 430.3200,201.5000 L 460.4400,201.5000 L 460.4400,221.1000 L 430.3200,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_11_text" x="430.8200" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="453.8600" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 354.1600,221.1000 L 354.1600,201.5000 L 384.2800,201.5000 L 384.2800,221.1000 L 354.1600,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_14_text" x="354.6600" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="377.7000" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 278.0000,221.1000 L 278.0000,201.5000 L 308.1200,201.5000 L 308.1200,221.1000 L 278.0000,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_17_text" x="278.5000" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="301.5400" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 201.8400,221.1000 L 201.8400,201.5000 L 231.9600,201.5000 L 231.9600,221.1000 L 201.8400,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_20_text" x="202.3400" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="225.3800" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 158.3000,221.1000 L 158.3000,201.5000 L 188.4200,201.5000 L 188.4200,221.1000 L 158.3000,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_23_text" x="158.8000" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="158.8000" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_34"><path d=" M 518.3600,168.0000 L 518.3600,157.5000 L 536.6000,157.5000 L 536.6000,168.0000 L 518.3600,168.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="518.8600" text-length="16.7400px" y="165.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 518.3600,130.5000 L 518.3600,120.0000 L 536.6000,120.0000 L 536.6000,130.5000 L 518.3600,130.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="518.8600" text-length="16.7400px" y="128.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 518.3600,93.0000 L 518.3600,82.5000 L 536.6000,82.5000 L 536.6000,93.0000 L 518.3600,93.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="518.8600" text-length="16.7400px" y="90.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 518.3600,55.5000 L 518.3600,45.0000 L 536.6000,45.0000 L 536.6000,55.5000 L 518.3600,55.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="518.8600" text-length="16.7400px" y="53.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 518.3600,18.0000 L 518.3600,7.5000 L 536.6000,7.5000 L 536.6000,18.0000 L 518.3600,18.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="518.8600" text-length="16.7400px" y="15.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_6.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_6.svg new file mode 100644 index 0000000..19ca1be --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_6.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,25.0000 L 560.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,21.0000 L 560.0000,25.0000 L 552.0000,29.0000 L 552.0000,21.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 264.3200,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 264.3200,22.0000 L 264.3200,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 327.0400,25.0000 L 327.0400,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 327.0400,22.0000 L 327.0400,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 389.7600,25.0000 L 389.7600,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 389.7600,22.0000 L 389.7600,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 452.4800,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 452.4800,22.0000 L 452.4800,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 515.2000,22.0000 L 515.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 201.6000,0.0000 L 201.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 205.6000,242.0000 L 201.6000,250.0000 L 197.6000,242.0000 L 205.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 201.6000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 202.6000,35.0000 L 201.6000,35.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 202.6000,45.0000 L 201.6000,45.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 202.6000,55.0000 L 201.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 204.6000,65.0000 L 201.6000,65.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 202.6000,75.0000 L 201.6000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 202.6000,85.0000 L 201.6000,85.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 202.6000,95.0000 L 201.6000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 204.6000,105.0000 L 201.6000,105.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 202.6000,115.0000 L 201.6000,115.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 202.6000,125.0000 L 201.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 202.6000,135.0000 L 201.6000,135.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 204.6000,145.0000 L 201.6000,145.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 202.6000,155.0000 L 201.6000,155.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 202.6000,165.0000 L 201.6000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 202.6000,175.0000 L 201.6000,175.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 204.6000,185.0000 L 201.6000,185.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 202.6000,195.0000 L 201.6000,195.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 202.6000,205.0000 L 201.6000,205.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 202.6000,215.0000 L 201.6000,215.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 204.6000,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,125.0000 L 201.6000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 201.6000,125.0000 L 264.3200,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 264.3200,125.0000 L 327.0400,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 327.0400,25.0000 L 389.7600,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 389.7600,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 452.4800,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="201.6000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="264.3200" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="327.0400" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="389.7600" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="452.4800" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="515.2000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 236.2600,41.0000 L 236.2600,26.5000 L 292.8800,26.5000 L 292.8800,41.0000 L 236.2600,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_10_text" x="236.7600" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_13"><path d=" M 298.9800,41.0000 L 298.9800,26.5000 L 355.6000,26.5000 L 355.6000,41.0000 L 298.9800,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_13_text" x="299.4800" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_16"><path d=" M 361.7000,41.0000 L 361.7000,26.5000 L 418.3200,26.5000 L 418.3200,41.0000 L 361.7000,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_16_text" x="362.2000" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_19"><path d=" M 424.4200,41.0000 L 424.4200,26.5000 L 481.0400,26.5000 L 481.0400,41.0000 L 424.4200,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_19_text" x="424.9200" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 487.1400,41.0000 L 487.1400,26.5000 L 543.7600,26.5000 L 543.7600,41.0000 L 487.1400,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_22_text" x="487.6400" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_25"><path d=" M 191.0400,41.0000 L 191.0400,26.5000 L 200.6000,26.5000 L 200.6000,41.0000 L 191.0400,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_25_text" x="191.5400" text-length="8.0600px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_34"><path d=" M 174.9200,81.0000 L 174.9200,66.5000 L 200.6000,66.5000 L 200.6000,81.0000 L 174.9200,81.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="175.4200" text-length="24.1800px" y="78.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 174.9200,121.0000 L 174.9200,106.5000 L 200.6000,106.5000 L 200.6000,121.0000 L 174.9200,121.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="175.4200" text-length="24.1800px" y="118.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 174.9200,161.0000 L 174.9200,146.5000 L 200.6000,146.5000 L 200.6000,161.0000 L 174.9200,161.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="175.4200" text-length="24.1800px" y="158.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 174.9200,201.0000 L 174.9200,186.5000 L 200.6000,186.5000 L 200.6000,201.0000 L 174.9200,201.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="175.4200" text-length="24.1800px" y="198.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 174.9200,224.0000 L 174.9200,209.5000 L 200.6000,209.5000 L 200.6000,224.0000 L 174.9200,224.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="175.4200" text-length="24.1800px" y="221.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_60.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_60.svg new file mode 100644 index 0000000..afe0a00 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_60.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,12.5000 L 112.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,16.5000 L 112.0000,12.5000 L 120.0000,8.5000 L 120.0000,16.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 461.4400,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 461.4400,12.5000 L 461.4400,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 385.2800,12.5000 L 385.2800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 385.2800,12.5000 L 385.2800,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 309.1200,12.5000 L 309.1200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 309.1200,12.5000 L 309.1200,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 232.9600,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 232.9600,12.5000 L 232.9600,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 156.8000,12.5000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 156.8000,12.5000 L 156.8000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,0.0000 L 537.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 541.1000,243.0000 L 537.6000,250.0000 L 534.1000,243.0000 L 541.1000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 156.8000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 538.6000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 538.6000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 538.6000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 540.6000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 538.6000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 538.6000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 538.6000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 540.6000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 538.6000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 538.6000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 538.6000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 540.6000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 538.6000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 538.6000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 538.6000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 540.6000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 538.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 538.6000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 538.6000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 540.6000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 537.6000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 537.6000,106.2500 L 461.4400,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 461.4400,106.2500 L 385.2800,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 385.2800,12.5000 L 309.1200,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 309.1200,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 232.9600,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="537.6000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="461.4400" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="385.2800" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="309.1200" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="232.9600" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="156.8000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 506.4800,33.6000 L 506.4800,14.0000 L 536.6000,14.0000 L 536.6000,33.6000 L 506.4800,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_8_text" x="506.9800" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="530.0200" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 430.3200,33.6000 L 430.3200,14.0000 L 460.4400,14.0000 L 460.4400,33.6000 L 430.3200,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_11_text" x="430.8200" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="453.8600" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 354.1600,33.6000 L 354.1600,14.0000 L 384.2800,14.0000 L 384.2800,33.6000 L 354.1600,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_14_text" x="354.6600" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="377.7000" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 278.0000,33.6000 L 278.0000,14.0000 L 308.1200,14.0000 L 308.1200,33.6000 L 278.0000,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_17_text" x="278.5000" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="301.5400" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 201.8400,33.6000 L 201.8400,14.0000 L 231.9600,14.0000 L 231.9600,33.6000 L 201.8400,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_20_text" x="202.3400" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="225.3800" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 158.3000,33.6000 L 158.3000,14.0000 L 188.4200,14.0000 L 188.4200,33.6000 L 158.3000,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_23_text" x="158.8000" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="158.8000" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_34"><path d=" M 518.3600,55.5000 L 518.3600,45.0000 L 536.6000,45.0000 L 536.6000,55.5000 L 518.3600,55.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="518.8600" text-length="16.7400px" y="53.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 518.3600,93.0000 L 518.3600,82.5000 L 536.6000,82.5000 L 536.6000,93.0000 L 518.3600,93.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="518.8600" text-length="16.7400px" y="90.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 518.3600,130.5000 L 518.3600,120.0000 L 536.6000,120.0000 L 536.6000,130.5000 L 518.3600,130.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="518.8600" text-length="16.7400px" y="128.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 518.3600,168.0000 L 518.3600,157.5000 L 536.6000,157.5000 L 536.6000,168.0000 L 518.3600,168.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="518.8600" text-length="16.7400px" y="165.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 518.3600,205.5000 L 518.3600,195.0000 L 536.6000,195.0000 L 536.6000,205.5000 L 518.3600,205.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="518.8600" text-length="16.7400px" y="203.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_61.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_61.svg new file mode 100644 index 0000000..63d46b9 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_61.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,200.0000 L 560.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,196.0000 L 560.0000,200.0000 L 552.0000,204.0000 L 552.0000,196.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 228.4800,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 228.4800,197.0000 L 228.4800,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 300.1600,25.0000 L 300.1600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 300.1600,197.0000 L 300.1600,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 371.8400,25.0000 L 371.8400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 371.8400,197.0000 L 371.8400,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 443.5200,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 443.5200,197.0000 L 443.5200,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 515.2000,197.0000 L 515.2000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 156.8000,250.0000 L 156.8000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 153.8000,6.0000 L 156.8000,0.0000 L 159.8000,6.0000 L 153.8000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 156.8000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 156.8000,191.2500 L 157.8000,191.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 156.8000,182.5000 L 157.8000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,173.7500 L 157.8000,173.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,165.0000 L 159.8000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,156.2500 L 157.8000,156.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 156.8000,147.5000 L 157.8000,147.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,138.7500 L 157.8000,138.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,130.0000 L 159.8000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,121.2500 L 157.8000,121.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 156.8000,112.5000 L 157.8000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 156.8000,103.7500 L 157.8000,103.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 156.8000,95.0000 L 159.8000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 156.8000,86.2500 L 157.8000,86.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 156.8000,77.5000 L 157.8000,77.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 156.8000,68.7500 L 157.8000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 156.8000,60.0000 L 159.8000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 156.8000,51.2500 L 157.8000,51.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 156.8000,42.5000 L 157.8000,42.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 156.8000,33.7500 L 157.8000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 156.8000,25.0000 L 159.8000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,112.5000 L 156.8000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 156.8000,112.5000 L 228.4800,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 228.4800,112.5000 L 300.1600,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 300.1600,200.0000 L 371.8400,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 371.8400,200.0000 L 443.5200,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 443.5200,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="156.8000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="228.4800" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="300.1600" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="371.8400" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="443.5200" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="515.2000" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 158.3000,223.1000 L 158.3000,201.5000 L 191.6000,201.5000 L 191.6000,223.1000 L 158.3000,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_8_text" x="158.8000" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="158.8000" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 229.9800,223.1000 L 229.9800,201.5000 L 263.2800,201.5000 L 263.2800,223.1000 L 229.9800,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_11_text" x="230.4800" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="230.4800" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 301.6600,223.1000 L 301.6600,201.5000 L 334.9600,201.5000 L 334.9600,223.1000 L 301.6600,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_14_text" x="302.1600" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="302.1600" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 373.3400,223.1000 L 373.3400,201.5000 L 406.6400,201.5000 L 406.6400,223.1000 L 373.3400,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_17_text" x="373.8400" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="373.8400" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 445.0200,223.1000 L 445.0200,201.5000 L 478.3200,201.5000 L 478.3200,223.1000 L 445.0200,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_20_text" x="445.5200" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="445.5200" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 480.9000,223.1000 L 480.9000,201.5000 L 514.2000,201.5000 L 514.2000,223.1000 L 480.9000,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_23_text" x="481.4000" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="507.0000" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_34"><path d=" M 135.7000,171.0000 L 135.7000,159.5000 L 155.8000,159.5000 L 155.8000,171.0000 L 135.7000,171.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="136.2000" text-length="18.6000px" y="168.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 135.7000,136.0000 L 135.7000,124.5000 L 155.8000,124.5000 L 155.8000,136.0000 L 135.7000,136.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="136.2000" text-length="18.6000px" y="133.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 135.7000,101.0000 L 135.7000,89.5000 L 155.8000,89.5000 L 155.8000,101.0000 L 135.7000,101.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="136.2000" text-length="18.6000px" y="98.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 135.7000,66.0000 L 135.7000,54.5000 L 155.8000,54.5000 L 155.8000,66.0000 L 135.7000,66.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="136.2000" text-length="18.6000px" y="63.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 135.7000,31.0000 L 135.7000,19.5000 L 155.8000,19.5000 L 155.8000,31.0000 L 135.7000,31.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="136.2000" text-length="18.6000px" y="28.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_62.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_62.svg new file mode 100644 index 0000000..e295282 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_62.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,25.0000 L 560.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,21.0000 L 560.0000,25.0000 L 552.0000,29.0000 L 552.0000,21.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 228.4800,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 228.4800,22.0000 L 228.4800,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 300.1600,25.0000 L 300.1600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 300.1600,22.0000 L 300.1600,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 371.8400,25.0000 L 371.8400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 371.8400,22.0000 L 371.8400,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 443.5200,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 443.5200,22.0000 L 443.5200,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 515.2000,22.0000 L 515.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 156.8000,0.0000 L 156.8000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 160.3000,243.0000 L 156.8000,250.0000 L 153.3000,243.0000 L 160.3000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 156.8000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 157.8000,33.7500 L 156.8000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 157.8000,42.5000 L 156.8000,42.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 157.8000,51.2500 L 156.8000,51.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 159.8000,60.0000 L 156.8000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 157.8000,68.7500 L 156.8000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 157.8000,77.5000 L 156.8000,77.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 157.8000,86.2500 L 156.8000,86.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 159.8000,95.0000 L 156.8000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 157.8000,103.7500 L 156.8000,103.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 157.8000,112.5000 L 156.8000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 157.8000,121.2500 L 156.8000,121.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 159.8000,130.0000 L 156.8000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 157.8000,138.7500 L 156.8000,138.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 157.8000,147.5000 L 156.8000,147.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 157.8000,156.2500 L 156.8000,156.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 159.8000,165.0000 L 156.8000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 157.8000,173.7500 L 156.8000,173.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 157.8000,182.5000 L 156.8000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 157.8000,191.2500 L 156.8000,191.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 159.8000,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,112.5000 L 156.8000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 156.8000,112.5000 L 228.4800,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 228.4800,112.5000 L 300.1600,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 300.1600,25.0000 L 371.8400,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 371.8400,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 443.5200,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="156.8000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="228.4800" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="300.1600" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="371.8400" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="443.5200" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="515.2000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 158.3000,48.1000 L 158.3000,26.5000 L 191.6000,26.5000 L 191.6000,48.1000 L 158.3000,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_8_text" x="158.8000" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="158.8000" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 229.9800,48.1000 L 229.9800,26.5000 L 263.2800,26.5000 L 263.2800,48.1000 L 229.9800,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_11_text" x="230.4800" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="230.4800" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 301.6600,48.1000 L 301.6600,26.5000 L 334.9600,26.5000 L 334.9600,48.1000 L 301.6600,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_14_text" x="302.1600" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="302.1600" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 373.3400,48.1000 L 373.3400,26.5000 L 406.6400,26.5000 L 406.6400,48.1000 L 373.3400,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_17_text" x="373.8400" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="373.8400" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 445.0200,48.1000 L 445.0200,26.5000 L 478.3200,26.5000 L 478.3200,48.1000 L 445.0200,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_20_text" x="445.5200" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="445.5200" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 480.9000,48.1000 L 480.9000,26.5000 L 514.2000,26.5000 L 514.2000,48.1000 L 480.9000,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_23_text" x="481.4000" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="507.0000" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_34"><path d=" M 135.7000,66.0000 L 135.7000,54.5000 L 155.8000,54.5000 L 155.8000,66.0000 L 135.7000,66.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="136.2000" text-length="18.6000px" y="63.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 135.7000,101.0000 L 135.7000,89.5000 L 155.8000,89.5000 L 155.8000,101.0000 L 135.7000,101.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="136.2000" text-length="18.6000px" y="98.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 135.7000,136.0000 L 135.7000,124.5000 L 155.8000,124.5000 L 155.8000,136.0000 L 135.7000,136.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="136.2000" text-length="18.6000px" y="133.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 135.7000,171.0000 L 135.7000,159.5000 L 155.8000,159.5000 L 155.8000,171.0000 L 135.7000,171.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="136.2000" text-length="18.6000px" y="168.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 135.7000,206.0000 L 135.7000,194.5000 L 155.8000,194.5000 L 155.8000,206.0000 L 135.7000,206.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="136.2000" text-length="18.6000px" y="203.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_63.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_63.svg new file mode 100644 index 0000000..3c80f05 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_63.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,200.0000 L 112.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,204.0000 L 112.0000,200.0000 L 120.0000,196.0000 L 120.0000,204.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 443.5200,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 443.5200,200.0000 L 443.5200,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 371.8400,25.0000 L 371.8400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 371.8400,200.0000 L 371.8400,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 300.1600,25.0000 L 300.1600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.1600,200.0000 L 300.1600,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 228.4800,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 228.4800,200.0000 L 228.4800,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 156.8000,25.0000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 156.8000,200.0000 L 156.8000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,250.0000 L 515.2000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 512.2000,6.0000 L 515.2000,0.0000 L 518.2000,6.0000 L 512.2000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 156.8000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 515.2000,191.2500 L 516.2000,191.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 515.2000,182.5000 L 516.2000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 515.2000,173.7500 L 516.2000,173.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 515.2000,165.0000 L 518.2000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 515.2000,156.2500 L 516.2000,156.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 515.2000,147.5000 L 516.2000,147.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 515.2000,138.7500 L 516.2000,138.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 515.2000,130.0000 L 518.2000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 515.2000,121.2500 L 516.2000,121.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 515.2000,112.5000 L 516.2000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 515.2000,103.7500 L 516.2000,103.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 515.2000,95.0000 L 518.2000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 515.2000,86.2500 L 516.2000,86.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 515.2000,77.5000 L 516.2000,77.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 515.2000,68.7500 L 516.2000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 515.2000,60.0000 L 518.2000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 515.2000,51.2500 L 516.2000,51.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 515.2000,42.5000 L 516.2000,42.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 515.2000,33.7500 L 516.2000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 515.2000,25.0000 L 518.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 515.2000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 515.2000,112.5000 L 443.5200,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 443.5200,112.5000 L 371.8400,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 371.8400,200.0000 L 300.1600,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 300.1600,200.0000 L 228.4800,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 228.4800,25.0000 L 156.8000,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="515.2000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="443.5200" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="371.8400" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="300.1600" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="228.4800" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="156.8000" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 480.9000,223.1000 L 480.9000,201.5000 L 514.2000,201.5000 L 514.2000,223.1000 L 480.9000,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_8_text" x="481.4000" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="507.0000" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 409.2200,223.1000 L 409.2200,201.5000 L 442.5200,201.5000 L 442.5200,223.1000 L 409.2200,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_11_text" x="409.7200" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="435.3200" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 337.5400,223.1000 L 337.5400,201.5000 L 370.8400,201.5000 L 370.8400,223.1000 L 337.5400,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_14_text" x="338.0400" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="363.6400" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 265.8600,223.1000 L 265.8600,201.5000 L 299.1600,201.5000 L 299.1600,223.1000 L 265.8600,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_17_text" x="266.3600" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="291.9600" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 194.1800,223.1000 L 194.1800,201.5000 L 227.4800,201.5000 L 227.4800,223.1000 L 194.1800,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_20_text" x="194.6800" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="220.2800" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 158.3000,223.1000 L 158.3000,201.5000 L 191.6000,201.5000 L 191.6000,223.1000 L 158.3000,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_23_text" x="158.8000" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="158.8000" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_34"><path d=" M 494.1000,171.0000 L 494.1000,159.5000 L 514.2000,159.5000 L 514.2000,171.0000 L 494.1000,171.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="494.6000" text-length="18.6000px" y="168.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 494.1000,136.0000 L 494.1000,124.5000 L 514.2000,124.5000 L 514.2000,136.0000 L 494.1000,136.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="494.6000" text-length="18.6000px" y="133.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 494.1000,101.0000 L 494.1000,89.5000 L 514.2000,89.5000 L 514.2000,101.0000 L 494.1000,101.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="494.6000" text-length="18.6000px" y="98.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 494.1000,66.0000 L 494.1000,54.5000 L 514.2000,54.5000 L 514.2000,66.0000 L 494.1000,66.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="494.6000" text-length="18.6000px" y="63.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 494.1000,31.0000 L 494.1000,19.5000 L 514.2000,19.5000 L 514.2000,31.0000 L 494.1000,31.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="494.6000" text-length="18.6000px" y="28.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_64.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_64.svg new file mode 100644 index 0000000..74c8f5e --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_64.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,25.0000 L 112.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,29.0000 L 112.0000,25.0000 L 120.0000,21.0000 L 120.0000,29.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 443.5200,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 443.5200,25.0000 L 443.5200,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 371.8400,25.0000 L 371.8400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 371.8400,25.0000 L 371.8400,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 300.1600,25.0000 L 300.1600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.1600,25.0000 L 300.1600,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 228.4800,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 228.4800,25.0000 L 228.4800,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 156.8000,25.0000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 156.8000,25.0000 L 156.8000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,0.0000 L 515.2000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 518.7000,243.0000 L 515.2000,250.0000 L 511.7000,243.0000 L 518.7000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 156.8000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 516.2000,33.7500 L 515.2000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 516.2000,42.5000 L 515.2000,42.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 516.2000,51.2500 L 515.2000,51.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 518.2000,60.0000 L 515.2000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 516.2000,68.7500 L 515.2000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 516.2000,77.5000 L 515.2000,77.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 516.2000,86.2500 L 515.2000,86.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 518.2000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 516.2000,103.7500 L 515.2000,103.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 516.2000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 516.2000,121.2500 L 515.2000,121.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 518.2000,130.0000 L 515.2000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 516.2000,138.7500 L 515.2000,138.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 516.2000,147.5000 L 515.2000,147.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 516.2000,156.2500 L 515.2000,156.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 518.2000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 516.2000,173.7500 L 515.2000,173.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 516.2000,182.5000 L 515.2000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 516.2000,191.2500 L 515.2000,191.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 518.2000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 515.2000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 515.2000,112.5000 L 443.5200,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 443.5200,112.5000 L 371.8400,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 371.8400,25.0000 L 300.1600,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 300.1600,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 228.4800,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="515.2000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="443.5200" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="371.8400" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="300.1600" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="228.4800" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="156.8000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 480.9000,48.1000 L 480.9000,26.5000 L 514.2000,26.5000 L 514.2000,48.1000 L 480.9000,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_8_text" x="481.4000" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="507.0000" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 409.2200,48.1000 L 409.2200,26.5000 L 442.5200,26.5000 L 442.5200,48.1000 L 409.2200,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_11_text" x="409.7200" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="435.3200" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 337.5400,48.1000 L 337.5400,26.5000 L 370.8400,26.5000 L 370.8400,48.1000 L 337.5400,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_14_text" x="338.0400" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="363.6400" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 265.8600,48.1000 L 265.8600,26.5000 L 299.1600,26.5000 L 299.1600,48.1000 L 265.8600,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_17_text" x="266.3600" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="291.9600" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 194.1800,48.1000 L 194.1800,26.5000 L 227.4800,26.5000 L 227.4800,48.1000 L 194.1800,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_20_text" x="194.6800" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="220.2800" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 158.3000,48.1000 L 158.3000,26.5000 L 191.6000,26.5000 L 191.6000,48.1000 L 158.3000,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_23_text" x="158.8000" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="158.8000" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_34"><path d=" M 494.1000,66.0000 L 494.1000,54.5000 L 514.2000,54.5000 L 514.2000,66.0000 L 494.1000,66.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="494.6000" text-length="18.6000px" y="63.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 494.1000,101.0000 L 494.1000,89.5000 L 514.2000,89.5000 L 514.2000,101.0000 L 494.1000,101.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="494.6000" text-length="18.6000px" y="98.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 494.1000,136.0000 L 494.1000,124.5000 L 514.2000,124.5000 L 514.2000,136.0000 L 494.1000,136.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="494.6000" text-length="18.6000px" y="133.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 494.1000,171.0000 L 494.1000,159.5000 L 514.2000,159.5000 L 514.2000,171.0000 L 494.1000,171.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="494.6000" text-length="18.6000px" y="168.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 494.1000,206.0000 L 494.1000,194.5000 L 514.2000,194.5000 L 514.2000,206.0000 L 494.1000,206.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="494.6000" text-length="18.6000px" y="203.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_65.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_65.svg new file mode 100644 index 0000000..11017c6 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_65.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,225.0000 L 560.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,221.0000 L 560.0000,225.0000 L 552.0000,229.0000 L 552.0000,221.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 268.8000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 268.8000,222.0000 L 268.8000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 336.0000,12.5000 L 336.0000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 336.0000,222.0000 L 336.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 403.2000,12.5000 L 403.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 403.2000,222.0000 L 403.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 470.4000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 470.4000,222.0000 L 470.4000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 537.6000,222.0000 L 537.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 201.6000,250.0000 L 201.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 197.6000,8.0000 L 201.6000,0.0000 L 205.6000,8.0000 L 197.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 201.6000,189.5833 L 537.6000,189.5833" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 198.6000,189.5833 L 204.6000,189.5833" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 201.6000,154.1667 L 537.6000,154.1667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 198.6000,154.1667 L 204.6000,154.1667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 198.6000,118.7500 L 204.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,83.3333 L 537.6000,83.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 198.6000,83.3333 L 204.6000,83.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 201.6000,47.9167 L 537.6000,47.9167" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 198.6000,47.9167 L 204.6000,47.9167" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 198.6000,12.5000 L 204.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,118.7500 L 201.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,118.7500 L 268.8000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 268.8000,118.7500 L 336.0000,207.2917" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 336.0000,207.2917 L 403.2000,207.2917" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 403.2000,207.2917 L 470.4000,30.2083" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 470.4000,30.2083 L 537.6000,30.2083" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="201.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="268.8000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="336.0000" cy="207.2917" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="403.2000" cy="207.2917" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="470.4000" cy="30.2083" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="537.6000" cy="30.2083" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 203.1000,246.1000 L 203.1000,226.5000 L 233.2200,226.5000 L 233.2200,246.1000 L 203.1000,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="203.6000" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="203.6000" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 270.3000,246.1000 L 270.3000,226.5000 L 300.4200,226.5000 L 300.4200,246.1000 L 270.3000,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="270.8000" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="270.8000" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 337.5000,246.1000 L 337.5000,226.5000 L 367.6200,226.5000 L 367.6200,246.1000 L 337.5000,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="338.0000" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="338.0000" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 404.7000,246.1000 L 404.7000,226.5000 L 434.8200,226.5000 L 434.8200,246.1000 L 404.7000,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="405.2000" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="405.2000" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 471.9000,246.1000 L 471.9000,226.5000 L 502.0200,226.5000 L 502.0200,246.1000 L 471.9000,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="472.4000" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="472.4000" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 506.4800,246.1000 L 506.4800,226.5000 L 536.6000,226.5000 L 536.6000,246.1000 L 506.4800,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="506.9800" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="530.0200" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26"><path d=" M 193.5200,212.7917 L 193.5200,202.2917 L 200.6000,202.2917 L 200.6000,212.7917 L 193.5200,212.7917 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="194.0200" text-length="5.5800px" y="210.4417" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29"><path d=" M 182.3600,177.3750 L 182.3600,166.8750 L 200.6000,166.8750 L 200.6000,177.3750 L 182.3600,177.3750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="182.8600" text-length="16.7400px" y="175.0250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32"><path d=" M 182.3600,141.9583 L 182.3600,131.4583 L 200.6000,131.4583 L 200.6000,141.9583 L 182.3600,141.9583 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="182.8600" text-length="16.7400px" y="139.6083" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35"><path d=" M 182.3600,106.5417 L 182.3600,96.0417 L 200.6000,96.0417 L 200.6000,106.5417 L 182.3600,106.5417 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="182.8600" text-length="16.7400px" y="104.1917" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38"><path d=" M 182.3600,71.1250 L 182.3600,60.6250 L 200.6000,60.6250 L 200.6000,71.1250 L 182.3600,71.1250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="182.8600" text-length="16.7400px" y="68.7750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41"><path d=" M 182.3600,35.7083 L 182.3600,25.2083 L 200.6000,25.2083 L 200.6000,35.7083 L 182.3600,35.7083 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="182.8600" text-length="16.7400px" y="33.3583" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_66.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_66.svg new file mode 100644 index 0000000..905e159 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_66.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,12.5000 L 560.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,8.5000 L 560.0000,12.5000 L 552.0000,16.5000 L 552.0000,8.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 268.8000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 268.8000,9.5000 L 268.8000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 336.0000,12.5000 L 336.0000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 336.0000,9.5000 L 336.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 403.2000,12.5000 L 403.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 403.2000,9.5000 L 403.2000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 470.4000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 470.4000,9.5000 L 470.4000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 537.6000,9.5000 L 537.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 201.6000,0.0000 L 201.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 205.6000,242.0000 L 201.6000,250.0000 L 197.6000,242.0000 L 205.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 201.6000,47.9167 L 537.6000,47.9167" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 204.6000,47.9167 L 198.6000,47.9167" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 201.6000,83.3333 L 537.6000,83.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 204.6000,83.3333 L 198.6000,83.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 204.6000,118.7500 L 198.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,154.1667 L 537.6000,154.1667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 204.6000,154.1667 L 198.6000,154.1667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 201.6000,189.5833 L 537.6000,189.5833" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 204.6000,189.5833 L 198.6000,189.5833" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 204.6000,225.0000 L 198.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,118.7500 L 201.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,118.7500 L 268.8000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 268.8000,118.7500 L 336.0000,30.2083" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 336.0000,30.2083 L 403.2000,30.2083" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 403.2000,30.2083 L 470.4000,207.2917" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 470.4000,207.2917 L 537.6000,207.2917" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="201.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="268.8000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="336.0000" cy="30.2083" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="403.2000" cy="30.2083" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="470.4000" cy="207.2917" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="537.6000" cy="207.2917" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 203.1000,33.6000 L 203.1000,14.0000 L 233.2200,14.0000 L 233.2200,33.6000 L 203.1000,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="203.6000" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="203.6000" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 270.3000,33.6000 L 270.3000,14.0000 L 300.4200,14.0000 L 300.4200,33.6000 L 270.3000,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="270.8000" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="270.8000" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 337.5000,33.6000 L 337.5000,14.0000 L 367.6200,14.0000 L 367.6200,33.6000 L 337.5000,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="338.0000" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="338.0000" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 404.7000,33.6000 L 404.7000,14.0000 L 434.8200,14.0000 L 434.8200,33.6000 L 404.7000,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="405.2000" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="405.2000" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 471.9000,33.6000 L 471.9000,14.0000 L 502.0200,14.0000 L 502.0200,33.6000 L 471.9000,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="472.4000" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="472.4000" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 506.4800,33.6000 L 506.4800,14.0000 L 536.6000,14.0000 L 536.6000,33.6000 L 506.4800,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="506.9800" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="530.0200" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26"><path d=" M 193.5200,35.7083 L 193.5200,25.2083 L 200.6000,25.2083 L 200.6000,35.7083 L 193.5200,35.7083 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="194.0200" text-length="5.5800px" y="33.3583" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29"><path d=" M 182.3600,71.1250 L 182.3600,60.6250 L 200.6000,60.6250 L 200.6000,71.1250 L 182.3600,71.1250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="182.8600" text-length="16.7400px" y="68.7750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32"><path d=" M 182.3600,106.5417 L 182.3600,96.0417 L 200.6000,96.0417 L 200.6000,106.5417 L 182.3600,106.5417 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="182.8600" text-length="16.7400px" y="104.1917" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35"><path d=" M 182.3600,141.9583 L 182.3600,131.4583 L 200.6000,131.4583 L 200.6000,141.9583 L 182.3600,141.9583 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="182.8600" text-length="16.7400px" y="139.6083" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38"><path d=" M 182.3600,177.3750 L 182.3600,166.8750 L 200.6000,166.8750 L 200.6000,177.3750 L 182.3600,177.3750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="182.8600" text-length="16.7400px" y="175.0250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41"><path d=" M 182.3600,212.7917 L 182.3600,202.2917 L 200.6000,202.2917 L 200.6000,212.7917 L 182.3600,212.7917 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="182.8600" text-length="16.7400px" y="210.4417" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_67.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_67.svg new file mode 100644 index 0000000..9393783 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_67.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,225.0000 L 112.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,229.0000 L 112.0000,225.0000 L 120.0000,221.0000 L 120.0000,229.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 470.4000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 470.4000,225.0000 L 470.4000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 403.2000,12.5000 L 403.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 403.2000,225.0000 L 403.2000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 336.0000,12.5000 L 336.0000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 336.0000,225.0000 L 336.0000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 268.8000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 268.8000,225.0000 L 268.8000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 201.6000,12.5000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 201.6000,225.0000 L 201.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,250.0000 L 537.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 533.6000,8.0000 L 537.6000,0.0000 L 541.6000,8.0000 L 533.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 201.6000,189.5833 L 537.6000,189.5833" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 534.6000,189.5833 L 540.6000,189.5833" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 201.6000,154.1667 L 537.6000,154.1667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 534.6000,154.1667 L 540.6000,154.1667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 534.6000,118.7500 L 540.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,83.3333 L 537.6000,83.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 534.6000,83.3333 L 540.6000,83.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 201.6000,47.9167 L 537.6000,47.9167" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 534.6000,47.9167 L 540.6000,47.9167" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 534.6000,12.5000 L 540.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 537.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 537.6000,118.7500 L 470.4000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 470.4000,118.7500 L 403.2000,207.2917" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 403.2000,207.2917 L 336.0000,207.2917" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 336.0000,207.2917 L 268.8000,30.2083" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 268.8000,30.2083 L 201.6000,30.2083" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="537.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="470.4000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="403.2000" cy="207.2917" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="336.0000" cy="207.2917" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="268.8000" cy="30.2083" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="201.6000" cy="30.2083" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 506.4800,246.1000 L 506.4800,226.5000 L 536.6000,226.5000 L 536.6000,246.1000 L 506.4800,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="506.9800" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="530.0200" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 439.2800,246.1000 L 439.2800,226.5000 L 469.4000,226.5000 L 469.4000,246.1000 L 439.2800,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="439.7800" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="462.8200" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 372.0800,246.1000 L 372.0800,226.5000 L 402.2000,226.5000 L 402.2000,246.1000 L 372.0800,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="372.5800" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="395.6200" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 304.8800,246.1000 L 304.8800,226.5000 L 335.0000,226.5000 L 335.0000,246.1000 L 304.8800,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="305.3800" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="328.4200" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 237.6800,246.1000 L 237.6800,226.5000 L 267.8000,226.5000 L 267.8000,246.1000 L 237.6800,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="238.1800" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="261.2200" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 203.1000,246.1000 L 203.1000,226.5000 L 233.2200,226.5000 L 233.2200,246.1000 L 203.1000,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="203.6000" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="203.6000" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26"><path d=" M 529.5200,212.7917 L 529.5200,202.2917 L 536.6000,202.2917 L 536.6000,212.7917 L 529.5200,212.7917 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="530.0200" text-length="5.5800px" y="210.4417" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29"><path d=" M 518.3600,177.3750 L 518.3600,166.8750 L 536.6000,166.8750 L 536.6000,177.3750 L 518.3600,177.3750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="518.8600" text-length="16.7400px" y="175.0250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32"><path d=" M 518.3600,141.9583 L 518.3600,131.4583 L 536.6000,131.4583 L 536.6000,141.9583 L 518.3600,141.9583 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="518.8600" text-length="16.7400px" y="139.6083" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35"><path d=" M 518.3600,106.5417 L 518.3600,96.0417 L 536.6000,96.0417 L 536.6000,106.5417 L 518.3600,106.5417 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="518.8600" text-length="16.7400px" y="104.1917" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38"><path d=" M 518.3600,71.1250 L 518.3600,60.6250 L 536.6000,60.6250 L 536.6000,71.1250 L 518.3600,71.1250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="518.8600" text-length="16.7400px" y="68.7750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41"><path d=" M 518.3600,35.7083 L 518.3600,25.2083 L 536.6000,25.2083 L 536.6000,35.7083 L 518.3600,35.7083 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="518.8600" text-length="16.7400px" y="33.3583" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_68.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_68.svg new file mode 100644 index 0000000..0cfab27 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_68.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,12.5000 L 112.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,16.5000 L 112.0000,12.5000 L 120.0000,8.5000 L 120.0000,16.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 470.4000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 470.4000,12.5000 L 470.4000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 403.2000,12.5000 L 403.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 403.2000,12.5000 L 403.2000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 336.0000,12.5000 L 336.0000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 336.0000,12.5000 L 336.0000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 268.8000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 268.8000,12.5000 L 268.8000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 201.6000,12.5000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 201.6000,12.5000 L 201.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,0.0000 L 537.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 541.6000,242.0000 L 537.6000,250.0000 L 533.6000,242.0000 L 541.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 201.6000,47.9167 L 537.6000,47.9167" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 540.6000,47.9167 L 534.6000,47.9167" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 201.6000,83.3333 L 537.6000,83.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 540.6000,83.3333 L 534.6000,83.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 540.6000,118.7500 L 534.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,154.1667 L 537.6000,154.1667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 540.6000,154.1667 L 534.6000,154.1667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 201.6000,189.5833 L 537.6000,189.5833" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 540.6000,189.5833 L 534.6000,189.5833" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 540.6000,225.0000 L 534.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 537.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 537.6000,118.7500 L 470.4000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 470.4000,118.7500 L 403.2000,30.2083" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 403.2000,30.2083 L 336.0000,30.2083" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 336.0000,30.2083 L 268.8000,207.2917" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 268.8000,207.2917 L 201.6000,207.2917" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="537.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="470.4000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="403.2000" cy="30.2083" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="336.0000" cy="30.2083" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="268.8000" cy="207.2917" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="201.6000" cy="207.2917" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 506.4800,33.6000 L 506.4800,14.0000 L 536.6000,14.0000 L 536.6000,33.6000 L 506.4800,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="506.9800" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="530.0200" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 439.2800,33.6000 L 439.2800,14.0000 L 469.4000,14.0000 L 469.4000,33.6000 L 439.2800,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="439.7800" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="462.8200" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 372.0800,33.6000 L 372.0800,14.0000 L 402.2000,14.0000 L 402.2000,33.6000 L 372.0800,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="372.5800" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="395.6200" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 304.8800,33.6000 L 304.8800,14.0000 L 335.0000,14.0000 L 335.0000,33.6000 L 304.8800,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="305.3800" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="328.4200" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 237.6800,33.6000 L 237.6800,14.0000 L 267.8000,14.0000 L 267.8000,33.6000 L 237.6800,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="238.1800" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="261.2200" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 203.1000,33.6000 L 203.1000,14.0000 L 233.2200,14.0000 L 233.2200,33.6000 L 203.1000,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="203.6000" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="203.6000" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26"><path d=" M 529.5200,35.7083 L 529.5200,25.2083 L 536.6000,25.2083 L 536.6000,35.7083 L 529.5200,35.7083 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="530.0200" text-length="5.5800px" y="33.3583" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29"><path d=" M 518.3600,71.1250 L 518.3600,60.6250 L 536.6000,60.6250 L 536.6000,71.1250 L 518.3600,71.1250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="518.8600" text-length="16.7400px" y="68.7750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32"><path d=" M 518.3600,106.5417 L 518.3600,96.0417 L 536.6000,96.0417 L 536.6000,106.5417 L 518.3600,106.5417 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="518.8600" text-length="16.7400px" y="104.1917" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35"><path d=" M 518.3600,141.9583 L 518.3600,131.4583 L 536.6000,131.4583 L 536.6000,141.9583 L 518.3600,141.9583 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="518.8600" text-length="16.7400px" y="139.6083" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38"><path d=" M 518.3600,177.3750 L 518.3600,166.8750 L 536.6000,166.8750 L 536.6000,177.3750 L 518.3600,177.3750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="518.8600" text-length="16.7400px" y="175.0250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41"><path d=" M 518.3600,212.7917 L 518.3600,202.2917 L 536.6000,202.2917 L 536.6000,212.7917 L 518.3600,212.7917 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="518.8600" text-length="16.7400px" y="210.4417" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_69.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_69.svg new file mode 100644 index 0000000..dbfbffc --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_69.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,225.0000 L 560.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,221.0000 L 560.0000,225.0000 L 552.0000,229.0000 L 552.0000,221.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 264.3200,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 264.3200,222.0000 L 264.3200,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 327.0400,25.0000 L 327.0400,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 327.0400,222.0000 L 327.0400,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 389.7600,25.0000 L 389.7600,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 389.7600,222.0000 L 389.7600,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 452.4800,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 452.4800,222.0000 L 452.4800,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 515.2000,222.0000 L 515.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 201.6000,250.0000 L 201.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 197.6000,8.0000 L 201.6000,0.0000 L 205.6000,8.0000 L 197.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 201.6000,191.6667 L 515.2000,191.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 198.6000,191.6667 L 204.6000,191.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 201.6000,158.3333 L 515.2000,158.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 198.6000,158.3333 L 204.6000,158.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 198.6000,125.0000 L 204.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,91.6667 L 515.2000,91.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 198.6000,91.6667 L 204.6000,91.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 201.6000,58.3333 L 515.2000,58.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 198.6000,58.3333 L 204.6000,58.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 198.6000,25.0000 L 204.6000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,125.0000 L 201.6000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,125.0000 L 264.3200,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 264.3200,125.0000 L 327.0400,208.3333" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 327.0400,208.3333 L 389.7600,208.3333" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 389.7600,208.3333 L 452.4800,41.6667" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 452.4800,41.6667 L 515.2000,41.6667" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="201.6000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="264.3200" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="327.0400" cy="208.3333" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="389.7600" cy="208.3333" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="452.4800" cy="41.6667" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="515.2000" cy="41.6667" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 203.1000,244.1000 L 203.1000,226.5000 L 230.0400,226.5000 L 230.0400,244.1000 L 203.1000,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="203.6000" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="203.6000" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 265.8200,244.1000 L 265.8200,226.5000 L 292.7600,226.5000 L 292.7600,244.1000 L 265.8200,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="266.3200" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="266.3200" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 328.5400,244.1000 L 328.5400,226.5000 L 355.4800,226.5000 L 355.4800,244.1000 L 328.5400,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="329.0400" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="329.0400" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 391.2600,244.1000 L 391.2600,226.5000 L 418.2000,226.5000 L 418.2000,244.1000 L 391.2600,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="391.7600" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="391.7600" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 453.9800,244.1000 L 453.9800,226.5000 L 480.9200,226.5000 L 480.9200,244.1000 L 453.9800,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="454.4800" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="454.4800" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 487.2600,244.1000 L 487.2600,226.5000 L 514.2000,226.5000 L 514.2000,244.1000 L 487.2600,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="487.7600" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="508.2400" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26"><path d=" M 194.1400,213.3333 L 194.1400,203.8333 L 200.6000,203.8333 L 200.6000,213.3333 L 194.1400,213.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="194.6400" text-length="4.9600px" y="211.1333" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29"><path d=" M 184.2200,180.0000 L 184.2200,170.5000 L 200.6000,170.5000 L 200.6000,180.0000 L 184.2200,180.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="184.7200" text-length="14.8800px" y="177.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32"><path d=" M 184.2200,146.6667 L 184.2200,137.1667 L 200.6000,137.1667 L 200.6000,146.6667 L 184.2200,146.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="184.7200" text-length="14.8800px" y="144.4667" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35"><path d=" M 184.2200,113.3333 L 184.2200,103.8333 L 200.6000,103.8333 L 200.6000,113.3333 L 184.2200,113.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="184.7200" text-length="14.8800px" y="111.1333" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38"><path d=" M 184.2200,80.0000 L 184.2200,70.5000 L 200.6000,70.5000 L 200.6000,80.0000 L 184.2200,80.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="184.7200" text-length="14.8800px" y="77.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41"><path d=" M 184.2200,46.6667 L 184.2200,37.1667 L 200.6000,37.1667 L 200.6000,46.6667 L 184.2200,46.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="184.7200" text-length="14.8800px" y="44.4667" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_7.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_7.svg new file mode 100644 index 0000000..4afef37 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_7.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,225.0000 L 112.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,229.0000 L 112.0000,225.0000 L 120.0000,221.0000 L 120.0000,229.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 452.4800,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 452.4800,225.0000 L 452.4800,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 389.7600,25.0000 L 389.7600,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 389.7600,225.0000 L 389.7600,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 327.0400,25.0000 L 327.0400,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 327.0400,225.0000 L 327.0400,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 264.3200,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 264.3200,225.0000 L 264.3200,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 201.6000,25.0000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 201.6000,225.0000 L 201.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 515.2000,250.0000 L 515.2000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 511.2000,8.0000 L 515.2000,0.0000 L 519.2000,8.0000 L 511.2000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 201.6000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 515.2000,215.0000 L 516.2000,215.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 515.2000,205.0000 L 516.2000,205.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 515.2000,195.0000 L 516.2000,195.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 515.2000,185.0000 L 518.2000,185.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 515.2000,175.0000 L 516.2000,175.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 515.2000,165.0000 L 516.2000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 515.2000,155.0000 L 516.2000,155.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 515.2000,145.0000 L 518.2000,145.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 515.2000,135.0000 L 516.2000,135.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 515.2000,125.0000 L 516.2000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 515.2000,115.0000 L 516.2000,115.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 515.2000,105.0000 L 518.2000,105.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 515.2000,95.0000 L 516.2000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 515.2000,85.0000 L 516.2000,85.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 515.2000,75.0000 L 516.2000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 515.2000,65.0000 L 518.2000,65.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 515.2000,55.0000 L 516.2000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 515.2000,45.0000 L 516.2000,45.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 515.2000,35.0000 L 516.2000,35.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 515.2000,25.0000 L 518.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 515.2000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 515.2000,125.0000 L 452.4800,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 452.4800,125.0000 L 389.7600,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 389.7600,225.0000 L 327.0400,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 327.0400,225.0000 L 264.3200,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 264.3200,25.0000 L 201.6000,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="515.2000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="452.4800" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="389.7600" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="327.0400" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="264.3200" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="201.6000" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 424.4200,241.0000 L 424.4200,226.5000 L 481.0400,226.5000 L 481.0400,241.0000 L 424.4200,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_10_text" x="424.9200" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_13"><path d=" M 361.7000,241.0000 L 361.7000,226.5000 L 418.3200,226.5000 L 418.3200,241.0000 L 361.7000,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_13_text" x="362.2000" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_16"><path d=" M 298.9800,241.0000 L 298.9800,226.5000 L 355.6000,226.5000 L 355.6000,241.0000 L 298.9800,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_16_text" x="299.4800" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_19"><path d=" M 236.2600,241.0000 L 236.2600,226.5000 L 292.8800,226.5000 L 292.8800,241.0000 L 236.2600,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_19_text" x="236.7600" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 173.5400,241.0000 L 173.5400,226.5000 L 230.1600,226.5000 L 230.1600,241.0000 L 173.5400,241.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_22_text" x="174.0400" text-length="55.1200px" y="238.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_25"><path d=" M 504.6400,224.0000 L 504.6400,209.5000 L 514.2000,209.5000 L 514.2000,224.0000 L 504.6400,224.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_25_text" x="505.1400" text-length="8.0600px" y="221.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_34"><path d=" M 488.5200,184.0000 L 488.5200,169.5000 L 514.2000,169.5000 L 514.2000,184.0000 L 488.5200,184.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="489.0200" text-length="24.1800px" y="181.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 488.5200,144.0000 L 488.5200,129.5000 L 514.2000,129.5000 L 514.2000,144.0000 L 488.5200,144.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="489.0200" text-length="24.1800px" y="141.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 488.5200,104.0000 L 488.5200,89.5000 L 514.2000,89.5000 L 514.2000,104.0000 L 488.5200,104.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="489.0200" text-length="24.1800px" y="101.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 488.5200,64.0000 L 488.5200,49.5000 L 514.2000,49.5000 L 514.2000,64.0000 L 488.5200,64.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="489.0200" text-length="24.1800px" y="61.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 488.5200,41.0000 L 488.5200,26.5000 L 514.2000,26.5000 L 514.2000,41.0000 L 488.5200,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="489.0200" text-length="24.1800px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_70.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_70.svg new file mode 100644 index 0000000..b836731 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_70.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,25.0000 L 560.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,21.0000 L 560.0000,25.0000 L 552.0000,29.0000 L 552.0000,21.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 264.3200,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 264.3200,22.0000 L 264.3200,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 327.0400,25.0000 L 327.0400,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 327.0400,22.0000 L 327.0400,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 389.7600,25.0000 L 389.7600,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 389.7600,22.0000 L 389.7600,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 452.4800,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 452.4800,22.0000 L 452.4800,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 515.2000,22.0000 L 515.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 201.6000,0.0000 L 201.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 205.6000,242.0000 L 201.6000,250.0000 L 197.6000,242.0000 L 205.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 201.6000,58.3333 L 515.2000,58.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 204.6000,58.3333 L 198.6000,58.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 201.6000,91.6667 L 515.2000,91.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 204.6000,91.6667 L 198.6000,91.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 204.6000,125.0000 L 198.6000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,158.3333 L 515.2000,158.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 204.6000,158.3333 L 198.6000,158.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 201.6000,191.6667 L 515.2000,191.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 204.6000,191.6667 L 198.6000,191.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 204.6000,225.0000 L 198.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,125.0000 L 201.6000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,125.0000 L 264.3200,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 264.3200,125.0000 L 327.0400,41.6667" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 327.0400,41.6667 L 389.7600,41.6667" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 389.7600,41.6667 L 452.4800,208.3333" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 452.4800,208.3333 L 515.2000,208.3333" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="201.6000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="264.3200" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="327.0400" cy="41.6667" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="389.7600" cy="41.6667" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="452.4800" cy="208.3333" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="515.2000" cy="208.3333" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 203.1000,44.1000 L 203.1000,26.5000 L 230.0400,26.5000 L 230.0400,44.1000 L 203.1000,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="203.6000" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="203.6000" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 265.8200,44.1000 L 265.8200,26.5000 L 292.7600,26.5000 L 292.7600,44.1000 L 265.8200,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="266.3200" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="266.3200" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 328.5400,44.1000 L 328.5400,26.5000 L 355.4800,26.5000 L 355.4800,44.1000 L 328.5400,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="329.0400" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="329.0400" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 391.2600,44.1000 L 391.2600,26.5000 L 418.2000,26.5000 L 418.2000,44.1000 L 391.2600,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="391.7600" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="391.7600" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 453.9800,44.1000 L 453.9800,26.5000 L 480.9200,26.5000 L 480.9200,44.1000 L 453.9800,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="454.4800" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="454.4800" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 487.2600,44.1000 L 487.2600,26.5000 L 514.2000,26.5000 L 514.2000,44.1000 L 487.2600,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="487.7600" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="508.2400" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26"><path d=" M 194.1400,46.6667 L 194.1400,37.1667 L 200.6000,37.1667 L 200.6000,46.6667 L 194.1400,46.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="194.6400" text-length="4.9600px" y="44.4667" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29"><path d=" M 184.2200,80.0000 L 184.2200,70.5000 L 200.6000,70.5000 L 200.6000,80.0000 L 184.2200,80.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="184.7200" text-length="14.8800px" y="77.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32"><path d=" M 184.2200,113.3333 L 184.2200,103.8333 L 200.6000,103.8333 L 200.6000,113.3333 L 184.2200,113.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="184.7200" text-length="14.8800px" y="111.1333" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35"><path d=" M 184.2200,146.6667 L 184.2200,137.1667 L 200.6000,137.1667 L 200.6000,146.6667 L 184.2200,146.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="184.7200" text-length="14.8800px" y="144.4667" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38"><path d=" M 184.2200,180.0000 L 184.2200,170.5000 L 200.6000,170.5000 L 200.6000,180.0000 L 184.2200,180.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="184.7200" text-length="14.8800px" y="177.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41"><path d=" M 184.2200,213.3333 L 184.2200,203.8333 L 200.6000,203.8333 L 200.6000,213.3333 L 184.2200,213.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="184.7200" text-length="14.8800px" y="211.1333" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_71.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_71.svg new file mode 100644 index 0000000..c528206 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_71.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,225.0000 L 112.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,229.0000 L 112.0000,225.0000 L 120.0000,221.0000 L 120.0000,229.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 452.4800,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 452.4800,225.0000 L 452.4800,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 389.7600,25.0000 L 389.7600,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 389.7600,225.0000 L 389.7600,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 327.0400,25.0000 L 327.0400,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 327.0400,225.0000 L 327.0400,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 264.3200,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 264.3200,225.0000 L 264.3200,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 201.6000,25.0000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 201.6000,225.0000 L 201.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,250.0000 L 515.2000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 511.2000,8.0000 L 515.2000,0.0000 L 519.2000,8.0000 L 511.2000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 201.6000,191.6667 L 515.2000,191.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 512.2000,191.6667 L 518.2000,191.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 201.6000,158.3333 L 515.2000,158.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 512.2000,158.3333 L 518.2000,158.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 512.2000,125.0000 L 518.2000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,91.6667 L 515.2000,91.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 512.2000,91.6667 L 518.2000,91.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 201.6000,58.3333 L 515.2000,58.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 512.2000,58.3333 L 518.2000,58.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 512.2000,25.0000 L 518.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 515.2000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 515.2000,125.0000 L 452.4800,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 452.4800,125.0000 L 389.7600,208.3333" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 389.7600,208.3333 L 327.0400,208.3333" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 327.0400,208.3333 L 264.3200,41.6667" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 264.3200,41.6667 L 201.6000,41.6667" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="515.2000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="452.4800" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="389.7600" cy="208.3333" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="327.0400" cy="208.3333" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="264.3200" cy="41.6667" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="201.6000" cy="41.6667" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 487.2600,244.1000 L 487.2600,226.5000 L 514.2000,226.5000 L 514.2000,244.1000 L 487.2600,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="487.7600" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="508.2400" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 424.5400,244.1000 L 424.5400,226.5000 L 451.4800,226.5000 L 451.4800,244.1000 L 424.5400,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="425.0400" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="445.5200" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 361.8200,244.1000 L 361.8200,226.5000 L 388.7600,226.5000 L 388.7600,244.1000 L 361.8200,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="362.3200" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="382.8000" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 299.1000,244.1000 L 299.1000,226.5000 L 326.0400,226.5000 L 326.0400,244.1000 L 299.1000,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="299.6000" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="320.0800" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 236.3800,244.1000 L 236.3800,226.5000 L 263.3200,226.5000 L 263.3200,244.1000 L 236.3800,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="236.8800" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="257.3600" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 203.1000,244.1000 L 203.1000,226.5000 L 230.0400,226.5000 L 230.0400,244.1000 L 203.1000,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="203.6000" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="203.6000" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26"><path d=" M 507.7400,213.3333 L 507.7400,203.8333 L 514.2000,203.8333 L 514.2000,213.3333 L 507.7400,213.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="508.2400" text-length="4.9600px" y="211.1333" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29"><path d=" M 497.8200,180.0000 L 497.8200,170.5000 L 514.2000,170.5000 L 514.2000,180.0000 L 497.8200,180.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="498.3200" text-length="14.8800px" y="177.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32"><path d=" M 497.8200,146.6667 L 497.8200,137.1667 L 514.2000,137.1667 L 514.2000,146.6667 L 497.8200,146.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="498.3200" text-length="14.8800px" y="144.4667" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35"><path d=" M 497.8200,113.3333 L 497.8200,103.8333 L 514.2000,103.8333 L 514.2000,113.3333 L 497.8200,113.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="498.3200" text-length="14.8800px" y="111.1333" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38"><path d=" M 497.8200,80.0000 L 497.8200,70.5000 L 514.2000,70.5000 L 514.2000,80.0000 L 497.8200,80.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="498.3200" text-length="14.8800px" y="77.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41"><path d=" M 497.8200,46.6667 L 497.8200,37.1667 L 514.2000,37.1667 L 514.2000,46.6667 L 497.8200,46.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="498.3200" text-length="14.8800px" y="44.4667" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_72.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_72.svg new file mode 100644 index 0000000..964c16c --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_72.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,25.0000 L 112.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,29.0000 L 112.0000,25.0000 L 120.0000,21.0000 L 120.0000,29.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 452.4800,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 452.4800,25.0000 L 452.4800,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 389.7600,25.0000 L 389.7600,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 389.7600,25.0000 L 389.7600,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 327.0400,25.0000 L 327.0400,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 327.0400,25.0000 L 327.0400,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 264.3200,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 264.3200,25.0000 L 264.3200,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 201.6000,25.0000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 201.6000,25.0000 L 201.6000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,0.0000 L 515.2000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 519.2000,242.0000 L 515.2000,250.0000 L 511.2000,242.0000 L 519.2000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 201.6000,58.3333 L 515.2000,58.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 518.2000,58.3333 L 512.2000,58.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 201.6000,91.6667 L 515.2000,91.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 518.2000,91.6667 L 512.2000,91.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 518.2000,125.0000 L 512.2000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,158.3333 L 515.2000,158.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 518.2000,158.3333 L 512.2000,158.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 201.6000,191.6667 L 515.2000,191.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 518.2000,191.6667 L 512.2000,191.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 518.2000,225.0000 L 512.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 515.2000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 515.2000,125.0000 L 452.4800,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 452.4800,125.0000 L 389.7600,41.6667" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 389.7600,41.6667 L 327.0400,41.6667" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 327.0400,41.6667 L 264.3200,208.3333" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 264.3200,208.3333 L 201.6000,208.3333" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="515.2000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="452.4800" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="389.7600" cy="41.6667" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="327.0400" cy="41.6667" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="264.3200" cy="208.3333" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="201.6000" cy="208.3333" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 487.2600,44.1000 L 487.2600,26.5000 L 514.2000,26.5000 L 514.2000,44.1000 L 487.2600,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="487.7600" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="508.2400" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 424.5400,44.1000 L 424.5400,26.5000 L 451.4800,26.5000 L 451.4800,44.1000 L 424.5400,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="425.0400" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="445.5200" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 361.8200,44.1000 L 361.8200,26.5000 L 388.7600,26.5000 L 388.7600,44.1000 L 361.8200,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="362.3200" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="382.8000" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 299.1000,44.1000 L 299.1000,26.5000 L 326.0400,26.5000 L 326.0400,44.1000 L 299.1000,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="299.6000" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="320.0800" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 236.3800,44.1000 L 236.3800,26.5000 L 263.3200,26.5000 L 263.3200,44.1000 L 236.3800,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="236.8800" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="257.3600" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 203.1000,44.1000 L 203.1000,26.5000 L 230.0400,26.5000 L 230.0400,44.1000 L 203.1000,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="203.6000" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="203.6000" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26"><path d=" M 507.7400,46.6667 L 507.7400,37.1667 L 514.2000,37.1667 L 514.2000,46.6667 L 507.7400,46.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="508.2400" text-length="4.9600px" y="44.4667" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29"><path d=" M 497.8200,80.0000 L 497.8200,70.5000 L 514.2000,70.5000 L 514.2000,80.0000 L 497.8200,80.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="498.3200" text-length="14.8800px" y="77.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32"><path d=" M 497.8200,113.3333 L 497.8200,103.8333 L 514.2000,103.8333 L 514.2000,113.3333 L 497.8200,113.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="498.3200" text-length="14.8800px" y="111.1333" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35"><path d=" M 497.8200,146.6667 L 497.8200,137.1667 L 514.2000,137.1667 L 514.2000,146.6667 L 497.8200,146.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="498.3200" text-length="14.8800px" y="144.4667" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38"><path d=" M 497.8200,180.0000 L 497.8200,170.5000 L 514.2000,170.5000 L 514.2000,180.0000 L 497.8200,180.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="498.3200" text-length="14.8800px" y="177.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41"><path d=" M 497.8200,213.3333 L 497.8200,203.8333 L 514.2000,203.8333 L 514.2000,213.3333 L 497.8200,213.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="498.3200" text-length="14.8800px" y="211.1333" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_73.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_73.svg new file mode 100644 index 0000000..f6fa3d1 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_73.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,200.0000 L 560.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,196.0000 L 560.0000,200.0000 L 552.0000,204.0000 L 552.0000,196.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 232.9600,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 232.9600,197.0000 L 232.9600,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 309.1200,12.5000 L 309.1200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 309.1200,197.0000 L 309.1200,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 385.2800,12.5000 L 385.2800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 385.2800,197.0000 L 385.2800,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 461.4400,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 461.4400,197.0000 L 461.4400,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 537.6000,197.0000 L 537.6000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 156.8000,250.0000 L 156.8000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 153.8000,6.0000 L 156.8000,0.0000 L 159.8000,6.0000 L 153.8000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 156.8000,168.7500 L 537.6000,168.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 153.8000,168.7500 L 159.8000,168.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 156.8000,137.5000 L 537.6000,137.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 153.8000,137.5000 L 159.8000,137.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 153.8000,106.2500 L 159.8000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,75.0000 L 537.6000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 153.8000,75.0000 L 159.8000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 156.8000,43.7500 L 537.6000,43.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 153.8000,43.7500 L 159.8000,43.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 153.8000,12.5000 L 159.8000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,106.2500 L 156.8000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,106.2500 L 232.9600,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 232.9600,106.2500 L 309.1200,184.3750" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 309.1200,184.3750 L 385.2800,184.3750" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 385.2800,184.3750 L 461.4400,28.1250" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 461.4400,28.1250 L 537.6000,28.1250" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="156.8000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="232.9600" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="309.1200" cy="184.3750" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="385.2800" cy="184.3750" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="461.4400" cy="28.1250" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="537.6000" cy="28.1250" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 158.3000,221.1000 L 158.3000,201.5000 L 188.4200,201.5000 L 188.4200,221.1000 L 158.3000,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="158.8000" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="158.8000" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 234.4600,221.1000 L 234.4600,201.5000 L 264.5800,201.5000 L 264.5800,221.1000 L 234.4600,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="234.9600" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="234.9600" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 310.6200,221.1000 L 310.6200,201.5000 L 340.7400,201.5000 L 340.7400,221.1000 L 310.6200,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="311.1200" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="311.1200" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 386.7800,221.1000 L 386.7800,201.5000 L 416.9000,201.5000 L 416.9000,221.1000 L 386.7800,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="387.2800" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="387.2800" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 462.9400,221.1000 L 462.9400,201.5000 L 493.0600,201.5000 L 493.0600,221.1000 L 462.9400,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="463.4400" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="463.4400" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 506.4800,221.1000 L 506.4800,201.5000 L 536.6000,201.5000 L 536.6000,221.1000 L 506.4800,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="506.9800" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="530.0200" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26"><path d=" M 148.7200,189.8750 L 148.7200,179.3750 L 155.8000,179.3750 L 155.8000,189.8750 L 148.7200,189.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="149.2200" text-length="5.5800px" y="187.5250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29"><path d=" M 137.5600,158.6250 L 137.5600,148.1250 L 155.8000,148.1250 L 155.8000,158.6250 L 137.5600,158.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="138.0600" text-length="16.7400px" y="156.2750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32"><path d=" M 137.5600,127.3750 L 137.5600,116.8750 L 155.8000,116.8750 L 155.8000,127.3750 L 137.5600,127.3750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="138.0600" text-length="16.7400px" y="125.0250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35"><path d=" M 137.5600,96.1250 L 137.5600,85.6250 L 155.8000,85.6250 L 155.8000,96.1250 L 137.5600,96.1250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="138.0600" text-length="16.7400px" y="93.7750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38"><path d=" M 137.5600,64.8750 L 137.5600,54.3750 L 155.8000,54.3750 L 155.8000,64.8750 L 137.5600,64.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="138.0600" text-length="16.7400px" y="62.5250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41"><path d=" M 137.5600,33.6250 L 137.5600,23.1250 L 155.8000,23.1250 L 155.8000,33.6250 L 137.5600,33.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="138.0600" text-length="16.7400px" y="31.2750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_74.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_74.svg new file mode 100644 index 0000000..b378e5d --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_74.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,12.5000 L 560.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,8.5000 L 560.0000,12.5000 L 552.0000,16.5000 L 552.0000,8.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 232.9600,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 232.9600,9.5000 L 232.9600,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 309.1200,12.5000 L 309.1200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 309.1200,9.5000 L 309.1200,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 385.2800,12.5000 L 385.2800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 385.2800,9.5000 L 385.2800,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 461.4400,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 461.4400,9.5000 L 461.4400,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 537.6000,9.5000 L 537.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 156.8000,0.0000 L 156.8000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 160.3000,243.0000 L 156.8000,250.0000 L 153.3000,243.0000 L 160.3000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 156.8000,43.7500 L 537.6000,43.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 159.8000,43.7500 L 153.8000,43.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 156.8000,75.0000 L 537.6000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 159.8000,75.0000 L 153.8000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 159.8000,106.2500 L 153.8000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,137.5000 L 537.6000,137.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 159.8000,137.5000 L 153.8000,137.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 156.8000,168.7500 L 537.6000,168.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 159.8000,168.7500 L 153.8000,168.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 159.8000,200.0000 L 153.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,106.2500 L 156.8000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,106.2500 L 232.9600,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 232.9600,106.2500 L 309.1200,28.1250" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 309.1200,28.1250 L 385.2800,28.1250" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 385.2800,28.1250 L 461.4400,184.3750" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 461.4400,184.3750 L 537.6000,184.3750" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="156.8000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="232.9600" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="309.1200" cy="28.1250" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="385.2800" cy="28.1250" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="461.4400" cy="184.3750" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="537.6000" cy="184.3750" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 158.3000,33.6000 L 158.3000,14.0000 L 188.4200,14.0000 L 188.4200,33.6000 L 158.3000,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="158.8000" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="158.8000" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 234.4600,33.6000 L 234.4600,14.0000 L 264.5800,14.0000 L 264.5800,33.6000 L 234.4600,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="234.9600" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="234.9600" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 310.6200,33.6000 L 310.6200,14.0000 L 340.7400,14.0000 L 340.7400,33.6000 L 310.6200,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="311.1200" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="311.1200" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 386.7800,33.6000 L 386.7800,14.0000 L 416.9000,14.0000 L 416.9000,33.6000 L 386.7800,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="387.2800" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="387.2800" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 462.9400,33.6000 L 462.9400,14.0000 L 493.0600,14.0000 L 493.0600,33.6000 L 462.9400,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="463.4400" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="463.4400" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 506.4800,33.6000 L 506.4800,14.0000 L 536.6000,14.0000 L 536.6000,33.6000 L 506.4800,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="506.9800" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="530.0200" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26"><path d=" M 148.7200,33.6250 L 148.7200,23.1250 L 155.8000,23.1250 L 155.8000,33.6250 L 148.7200,33.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="149.2200" text-length="5.5800px" y="31.2750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29"><path d=" M 137.5600,64.8750 L 137.5600,54.3750 L 155.8000,54.3750 L 155.8000,64.8750 L 137.5600,64.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="138.0600" text-length="16.7400px" y="62.5250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32"><path d=" M 137.5600,96.1250 L 137.5600,85.6250 L 155.8000,85.6250 L 155.8000,96.1250 L 137.5600,96.1250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="138.0600" text-length="16.7400px" y="93.7750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35"><path d=" M 137.5600,127.3750 L 137.5600,116.8750 L 155.8000,116.8750 L 155.8000,127.3750 L 137.5600,127.3750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="138.0600" text-length="16.7400px" y="125.0250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38"><path d=" M 137.5600,158.6250 L 137.5600,148.1250 L 155.8000,148.1250 L 155.8000,158.6250 L 137.5600,158.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="138.0600" text-length="16.7400px" y="156.2750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41"><path d=" M 137.5600,189.8750 L 137.5600,179.3750 L 155.8000,179.3750 L 155.8000,189.8750 L 137.5600,189.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="138.0600" text-length="16.7400px" y="187.5250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_75.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_75.svg new file mode 100644 index 0000000..d719a54 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_75.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,200.0000 L 112.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,204.0000 L 112.0000,200.0000 L 120.0000,196.0000 L 120.0000,204.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 461.4400,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 461.4400,200.0000 L 461.4400,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 385.2800,12.5000 L 385.2800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 385.2800,200.0000 L 385.2800,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 309.1200,12.5000 L 309.1200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 309.1200,200.0000 L 309.1200,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 232.9600,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 232.9600,200.0000 L 232.9600,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 156.8000,12.5000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 156.8000,200.0000 L 156.8000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,250.0000 L 537.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 534.6000,6.0000 L 537.6000,0.0000 L 540.6000,6.0000 L 534.6000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 156.8000,168.7500 L 537.6000,168.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 534.6000,168.7500 L 540.6000,168.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 156.8000,137.5000 L 537.6000,137.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 534.6000,137.5000 L 540.6000,137.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 534.6000,106.2500 L 540.6000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,75.0000 L 537.6000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 534.6000,75.0000 L 540.6000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 156.8000,43.7500 L 537.6000,43.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 534.6000,43.7500 L 540.6000,43.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 534.6000,12.5000 L 540.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 537.6000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 537.6000,106.2500 L 461.4400,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 461.4400,106.2500 L 385.2800,184.3750" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 385.2800,184.3750 L 309.1200,184.3750" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 309.1200,184.3750 L 232.9600,28.1250" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 232.9600,28.1250 L 156.8000,28.1250" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="537.6000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="461.4400" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="385.2800" cy="184.3750" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="309.1200" cy="184.3750" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="232.9600" cy="28.1250" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="156.8000" cy="28.1250" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 506.4800,221.1000 L 506.4800,201.5000 L 536.6000,201.5000 L 536.6000,221.1000 L 506.4800,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="506.9800" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="530.0200" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 430.3200,221.1000 L 430.3200,201.5000 L 460.4400,201.5000 L 460.4400,221.1000 L 430.3200,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="430.8200" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="453.8600" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 354.1600,221.1000 L 354.1600,201.5000 L 384.2800,201.5000 L 384.2800,221.1000 L 354.1600,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="354.6600" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="377.7000" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 278.0000,221.1000 L 278.0000,201.5000 L 308.1200,201.5000 L 308.1200,221.1000 L 278.0000,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="278.5000" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="301.5400" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 201.8400,221.1000 L 201.8400,201.5000 L 231.9600,201.5000 L 231.9600,221.1000 L 201.8400,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="202.3400" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="225.3800" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 158.3000,221.1000 L 158.3000,201.5000 L 188.4200,201.5000 L 188.4200,221.1000 L 158.3000,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="158.8000" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="158.8000" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26"><path d=" M 529.5200,189.8750 L 529.5200,179.3750 L 536.6000,179.3750 L 536.6000,189.8750 L 529.5200,189.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="530.0200" text-length="5.5800px" y="187.5250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29"><path d=" M 518.3600,158.6250 L 518.3600,148.1250 L 536.6000,148.1250 L 536.6000,158.6250 L 518.3600,158.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="518.8600" text-length="16.7400px" y="156.2750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32"><path d=" M 518.3600,127.3750 L 518.3600,116.8750 L 536.6000,116.8750 L 536.6000,127.3750 L 518.3600,127.3750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="518.8600" text-length="16.7400px" y="125.0250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35"><path d=" M 518.3600,96.1250 L 518.3600,85.6250 L 536.6000,85.6250 L 536.6000,96.1250 L 518.3600,96.1250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="518.8600" text-length="16.7400px" y="93.7750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38"><path d=" M 518.3600,64.8750 L 518.3600,54.3750 L 536.6000,54.3750 L 536.6000,64.8750 L 518.3600,64.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="518.8600" text-length="16.7400px" y="62.5250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41"><path d=" M 518.3600,33.6250 L 518.3600,23.1250 L 536.6000,23.1250 L 536.6000,33.6250 L 518.3600,33.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="518.8600" text-length="16.7400px" y="31.2750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_76.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_76.svg new file mode 100644 index 0000000..7232ef8 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_76.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,12.5000 L 112.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,16.5000 L 112.0000,12.5000 L 120.0000,8.5000 L 120.0000,16.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 461.4400,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 461.4400,12.5000 L 461.4400,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 385.2800,12.5000 L 385.2800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 385.2800,12.5000 L 385.2800,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 309.1200,12.5000 L 309.1200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 309.1200,12.5000 L 309.1200,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 232.9600,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 232.9600,12.5000 L 232.9600,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 156.8000,12.5000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 156.8000,12.5000 L 156.8000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,0.0000 L 537.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 541.1000,243.0000 L 537.6000,250.0000 L 534.1000,243.0000 L 541.1000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 156.8000,43.7500 L 537.6000,43.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 540.6000,43.7500 L 534.6000,43.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 156.8000,75.0000 L 537.6000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 540.6000,75.0000 L 534.6000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 540.6000,106.2500 L 534.6000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,137.5000 L 537.6000,137.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 540.6000,137.5000 L 534.6000,137.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 156.8000,168.7500 L 537.6000,168.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 540.6000,168.7500 L 534.6000,168.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 540.6000,200.0000 L 534.6000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 537.6000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 537.6000,106.2500 L 461.4400,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 461.4400,106.2500 L 385.2800,28.1250" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 385.2800,28.1250 L 309.1200,28.1250" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 309.1200,28.1250 L 232.9600,184.3750" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 232.9600,184.3750 L 156.8000,184.3750" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="537.6000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="461.4400" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="385.2800" cy="28.1250" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="309.1200" cy="28.1250" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="232.9600" cy="184.3750" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="156.8000" cy="184.3750" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 506.4800,33.6000 L 506.4800,14.0000 L 536.6000,14.0000 L 536.6000,33.6000 L 506.4800,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="506.9800" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="530.0200" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 430.3200,33.6000 L 430.3200,14.0000 L 460.4400,14.0000 L 460.4400,33.6000 L 430.3200,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="430.8200" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="453.8600" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 354.1600,33.6000 L 354.1600,14.0000 L 384.2800,14.0000 L 384.2800,33.6000 L 354.1600,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="354.6600" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="377.7000" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 278.0000,33.6000 L 278.0000,14.0000 L 308.1200,14.0000 L 308.1200,33.6000 L 278.0000,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="278.5000" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="301.5400" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 201.8400,33.6000 L 201.8400,14.0000 L 231.9600,14.0000 L 231.9600,33.6000 L 201.8400,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="202.3400" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="225.3800" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 158.3000,33.6000 L 158.3000,14.0000 L 188.4200,14.0000 L 188.4200,33.6000 L 158.3000,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="158.8000" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="158.8000" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26"><path d=" M 529.5200,33.6250 L 529.5200,23.1250 L 536.6000,23.1250 L 536.6000,33.6250 L 529.5200,33.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="530.0200" text-length="5.5800px" y="31.2750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29"><path d=" M 518.3600,64.8750 L 518.3600,54.3750 L 536.6000,54.3750 L 536.6000,64.8750 L 518.3600,64.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="518.8600" text-length="16.7400px" y="62.5250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32"><path d=" M 518.3600,96.1250 L 518.3600,85.6250 L 536.6000,85.6250 L 536.6000,96.1250 L 518.3600,96.1250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="518.8600" text-length="16.7400px" y="93.7750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35"><path d=" M 518.3600,127.3750 L 518.3600,116.8750 L 536.6000,116.8750 L 536.6000,127.3750 L 518.3600,127.3750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="518.8600" text-length="16.7400px" y="125.0250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38"><path d=" M 518.3600,158.6250 L 518.3600,148.1250 L 536.6000,148.1250 L 536.6000,158.6250 L 518.3600,158.6250 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="518.8600" text-length="16.7400px" y="156.2750" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41"><path d=" M 518.3600,189.8750 L 518.3600,179.3750 L 536.6000,179.3750 L 536.6000,189.8750 L 518.3600,189.8750 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="518.8600" text-length="16.7400px" y="187.5250" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_77.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_77.svg new file mode 100644 index 0000000..ab3f323 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_77.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,200.0000 L 560.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,196.0000 L 560.0000,200.0000 L 552.0000,204.0000 L 552.0000,196.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 228.4800,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 228.4800,197.0000 L 228.4800,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 300.1600,25.0000 L 300.1600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 300.1600,197.0000 L 300.1600,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 371.8400,25.0000 L 371.8400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 371.8400,197.0000 L 371.8400,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 443.5200,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 443.5200,197.0000 L 443.5200,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 515.2000,197.0000 L 515.2000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 156.8000,250.0000 L 156.8000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 153.8000,6.0000 L 156.8000,0.0000 L 159.8000,6.0000 L 153.8000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 156.8000,170.8333 L 515.2000,170.8333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 153.8000,170.8333 L 159.8000,170.8333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 156.8000,141.6667 L 515.2000,141.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 153.8000,141.6667 L 159.8000,141.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 153.8000,112.5000 L 159.8000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,83.3333 L 515.2000,83.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 153.8000,83.3333 L 159.8000,83.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 156.8000,54.1667 L 515.2000,54.1667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 153.8000,54.1667 L 159.8000,54.1667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 153.8000,25.0000 L 159.8000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,112.5000 L 156.8000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,112.5000 L 228.4800,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 228.4800,112.5000 L 300.1600,185.4167" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 300.1600,185.4167 L 371.8400,185.4167" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 371.8400,185.4167 L 443.5200,39.5833" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 443.5200,39.5833 L 515.2000,39.5833" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="156.8000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="228.4800" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="300.1600" cy="185.4167" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="371.8400" cy="185.4167" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="443.5200" cy="39.5833" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="515.2000" cy="39.5833" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 158.3000,223.1000 L 158.3000,201.5000 L 191.6000,201.5000 L 191.6000,223.1000 L 158.3000,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="158.8000" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="158.8000" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 229.9800,223.1000 L 229.9800,201.5000 L 263.2800,201.5000 L 263.2800,223.1000 L 229.9800,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="230.4800" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="230.4800" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 301.6600,223.1000 L 301.6600,201.5000 L 334.9600,201.5000 L 334.9600,223.1000 L 301.6600,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="302.1600" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="302.1600" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 373.3400,223.1000 L 373.3400,201.5000 L 406.6400,201.5000 L 406.6400,223.1000 L 373.3400,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="373.8400" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="373.8400" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 445.0200,223.1000 L 445.0200,201.5000 L 478.3200,201.5000 L 478.3200,223.1000 L 445.0200,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="445.5200" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="445.5200" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 480.9000,223.1000 L 480.9000,201.5000 L 514.2000,201.5000 L 514.2000,223.1000 L 480.9000,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="481.4000" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="507.0000" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26"><path d=" M 148.1000,191.4167 L 148.1000,179.9167 L 155.8000,179.9167 L 155.8000,191.4167 L 148.1000,191.4167 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="148.6000" text-length="6.2000px" y="188.9167" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29"><path d=" M 135.7000,162.2500 L 135.7000,150.7500 L 155.8000,150.7500 L 155.8000,162.2500 L 135.7000,162.2500 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="136.2000" text-length="18.6000px" y="159.7500" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32"><path d=" M 135.7000,133.0833 L 135.7000,121.5833 L 155.8000,121.5833 L 155.8000,133.0833 L 135.7000,133.0833 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="136.2000" text-length="18.6000px" y="130.5833" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35"><path d=" M 135.7000,103.9167 L 135.7000,92.4167 L 155.8000,92.4167 L 155.8000,103.9167 L 135.7000,103.9167 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="136.2000" text-length="18.6000px" y="101.4167" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38"><path d=" M 135.7000,74.7500 L 135.7000,63.2500 L 155.8000,63.2500 L 155.8000,74.7500 L 135.7000,74.7500 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="136.2000" text-length="18.6000px" y="72.2500" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41"><path d=" M 135.7000,45.5833 L 135.7000,34.0833 L 155.8000,34.0833 L 155.8000,45.5833 L 135.7000,45.5833 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="136.2000" text-length="18.6000px" y="43.0833" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_78.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_78.svg new file mode 100644 index 0000000..1f2a900 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_78.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,25.0000 L 560.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,21.0000 L 560.0000,25.0000 L 552.0000,29.0000 L 552.0000,21.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 228.4800,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 228.4800,22.0000 L 228.4800,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 300.1600,25.0000 L 300.1600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 300.1600,22.0000 L 300.1600,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 371.8400,25.0000 L 371.8400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 371.8400,22.0000 L 371.8400,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 443.5200,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 443.5200,22.0000 L 443.5200,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 515.2000,22.0000 L 515.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 156.8000,0.0000 L 156.8000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 160.3000,243.0000 L 156.8000,250.0000 L 153.3000,243.0000 L 160.3000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 156.8000,54.1667 L 515.2000,54.1667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 159.8000,54.1667 L 153.8000,54.1667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 156.8000,83.3333 L 515.2000,83.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 159.8000,83.3333 L 153.8000,83.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 159.8000,112.5000 L 153.8000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,141.6667 L 515.2000,141.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 159.8000,141.6667 L 153.8000,141.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 156.8000,170.8333 L 515.2000,170.8333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 159.8000,170.8333 L 153.8000,170.8333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 159.8000,200.0000 L 153.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,112.5000 L 156.8000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,112.5000 L 228.4800,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 228.4800,112.5000 L 300.1600,39.5833" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 300.1600,39.5833 L 371.8400,39.5833" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 371.8400,39.5833 L 443.5200,185.4167" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 443.5200,185.4167 L 515.2000,185.4167" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="156.8000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="228.4800" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="300.1600" cy="39.5833" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="371.8400" cy="39.5833" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="443.5200" cy="185.4167" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="515.2000" cy="185.4167" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 158.3000,48.1000 L 158.3000,26.5000 L 191.6000,26.5000 L 191.6000,48.1000 L 158.3000,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="158.8000" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="158.8000" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 229.9800,48.1000 L 229.9800,26.5000 L 263.2800,26.5000 L 263.2800,48.1000 L 229.9800,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="230.4800" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="230.4800" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 301.6600,48.1000 L 301.6600,26.5000 L 334.9600,26.5000 L 334.9600,48.1000 L 301.6600,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="302.1600" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="302.1600" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 373.3400,48.1000 L 373.3400,26.5000 L 406.6400,26.5000 L 406.6400,48.1000 L 373.3400,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="373.8400" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="373.8400" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 445.0200,48.1000 L 445.0200,26.5000 L 478.3200,26.5000 L 478.3200,48.1000 L 445.0200,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="445.5200" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="445.5200" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 480.9000,48.1000 L 480.9000,26.5000 L 514.2000,26.5000 L 514.2000,48.1000 L 480.9000,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="481.4000" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="507.0000" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26"><path d=" M 148.1000,45.5833 L 148.1000,34.0833 L 155.8000,34.0833 L 155.8000,45.5833 L 148.1000,45.5833 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="148.6000" text-length="6.2000px" y="43.0833" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29"><path d=" M 135.7000,74.7500 L 135.7000,63.2500 L 155.8000,63.2500 L 155.8000,74.7500 L 135.7000,74.7500 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="136.2000" text-length="18.6000px" y="72.2500" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32"><path d=" M 135.7000,103.9167 L 135.7000,92.4167 L 155.8000,92.4167 L 155.8000,103.9167 L 135.7000,103.9167 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="136.2000" text-length="18.6000px" y="101.4167" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35"><path d=" M 135.7000,133.0833 L 135.7000,121.5833 L 155.8000,121.5833 L 155.8000,133.0833 L 135.7000,133.0833 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="136.2000" text-length="18.6000px" y="130.5833" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38"><path d=" M 135.7000,162.2500 L 135.7000,150.7500 L 155.8000,150.7500 L 155.8000,162.2500 L 135.7000,162.2500 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="136.2000" text-length="18.6000px" y="159.7500" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41"><path d=" M 135.7000,191.4167 L 135.7000,179.9167 L 155.8000,179.9167 L 155.8000,191.4167 L 135.7000,191.4167 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="136.2000" text-length="18.6000px" y="188.9167" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_79.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_79.svg new file mode 100644 index 0000000..9d7ac6f --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_79.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,200.0000 L 112.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,204.0000 L 112.0000,200.0000 L 120.0000,196.0000 L 120.0000,204.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 443.5200,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 443.5200,200.0000 L 443.5200,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 371.8400,25.0000 L 371.8400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 371.8400,200.0000 L 371.8400,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 300.1600,25.0000 L 300.1600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.1600,200.0000 L 300.1600,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 228.4800,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 228.4800,200.0000 L 228.4800,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 156.8000,25.0000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 156.8000,200.0000 L 156.8000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,250.0000 L 515.2000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 512.2000,6.0000 L 515.2000,0.0000 L 518.2000,6.0000 L 512.2000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 156.8000,170.8333 L 515.2000,170.8333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 512.2000,170.8333 L 518.2000,170.8333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 156.8000,141.6667 L 515.2000,141.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 512.2000,141.6667 L 518.2000,141.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 512.2000,112.5000 L 518.2000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,83.3333 L 515.2000,83.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 512.2000,83.3333 L 518.2000,83.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 156.8000,54.1667 L 515.2000,54.1667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 512.2000,54.1667 L 518.2000,54.1667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,25.0000 L 515.2000,25.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 512.2000,25.0000 L 518.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 515.2000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 515.2000,112.5000 L 443.5200,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 443.5200,112.5000 L 371.8400,185.4167" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 371.8400,185.4167 L 300.1600,185.4167" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 300.1600,185.4167 L 228.4800,39.5833" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 228.4800,39.5833 L 156.8000,39.5833" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="515.2000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="443.5200" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="371.8400" cy="185.4167" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="300.1600" cy="185.4167" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="228.4800" cy="39.5833" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="156.8000" cy="39.5833" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 480.9000,223.1000 L 480.9000,201.5000 L 514.2000,201.5000 L 514.2000,223.1000 L 480.9000,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="481.4000" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="507.0000" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 409.2200,223.1000 L 409.2200,201.5000 L 442.5200,201.5000 L 442.5200,223.1000 L 409.2200,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="409.7200" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="435.3200" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 337.5400,223.1000 L 337.5400,201.5000 L 370.8400,201.5000 L 370.8400,223.1000 L 337.5400,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="338.0400" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="363.6400" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 265.8600,223.1000 L 265.8600,201.5000 L 299.1600,201.5000 L 299.1600,223.1000 L 265.8600,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="266.3600" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="291.9600" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 194.1800,223.1000 L 194.1800,201.5000 L 227.4800,201.5000 L 227.4800,223.1000 L 194.1800,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="194.6800" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="220.2800" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 158.3000,223.1000 L 158.3000,201.5000 L 191.6000,201.5000 L 191.6000,223.1000 L 158.3000,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="158.8000" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="158.8000" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26"><path d=" M 506.5000,191.4167 L 506.5000,179.9167 L 514.2000,179.9167 L 514.2000,191.4167 L 506.5000,191.4167 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="507.0000" text-length="6.2000px" y="188.9167" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29"><path d=" M 494.1000,162.2500 L 494.1000,150.7500 L 514.2000,150.7500 L 514.2000,162.2500 L 494.1000,162.2500 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="494.6000" text-length="18.6000px" y="159.7500" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32"><path d=" M 494.1000,133.0833 L 494.1000,121.5833 L 514.2000,121.5833 L 514.2000,133.0833 L 494.1000,133.0833 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="494.6000" text-length="18.6000px" y="130.5833" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35"><path d=" M 494.1000,103.9167 L 494.1000,92.4167 L 514.2000,92.4167 L 514.2000,103.9167 L 494.1000,103.9167 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="494.6000" text-length="18.6000px" y="101.4167" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38"><path d=" M 494.1000,74.7500 L 494.1000,63.2500 L 514.2000,63.2500 L 514.2000,74.7500 L 494.1000,74.7500 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="494.6000" text-length="18.6000px" y="72.2500" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41"><path d=" M 494.1000,45.5833 L 494.1000,34.0833 L 514.2000,34.0833 L 514.2000,45.5833 L 494.1000,45.5833 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="494.6000" text-length="18.6000px" y="43.0833" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_8.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_8.svg new file mode 100644 index 0000000..2d748a4 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_8.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,25.0000 L 112.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,29.0000 L 112.0000,25.0000 L 120.0000,21.0000 L 120.0000,29.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 452.4800,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 452.4800,25.0000 L 452.4800,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 389.7600,25.0000 L 389.7600,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 389.7600,25.0000 L 389.7600,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 327.0400,25.0000 L 327.0400,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 327.0400,25.0000 L 327.0400,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 264.3200,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 264.3200,25.0000 L 264.3200,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 201.6000,25.0000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 201.6000,25.0000 L 201.6000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 515.2000,0.0000 L 515.2000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 519.2000,242.0000 L 515.2000,250.0000 L 511.2000,242.0000 L 519.2000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 201.6000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 516.2000,35.0000 L 515.2000,35.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 516.2000,45.0000 L 515.2000,45.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 516.2000,55.0000 L 515.2000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 518.2000,65.0000 L 515.2000,65.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 516.2000,75.0000 L 515.2000,75.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 516.2000,85.0000 L 515.2000,85.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 516.2000,95.0000 L 515.2000,95.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 518.2000,105.0000 L 515.2000,105.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 516.2000,115.0000 L 515.2000,115.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 201.6000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 516.2000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 516.2000,135.0000 L 515.2000,135.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 518.2000,145.0000 L 515.2000,145.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 516.2000,155.0000 L 515.2000,155.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 201.6000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 516.2000,165.0000 L 515.2000,165.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 516.2000,175.0000 L 515.2000,175.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 518.2000,185.0000 L 515.2000,185.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 516.2000,195.0000 L 515.2000,195.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 201.6000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 516.2000,205.0000 L 515.2000,205.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 516.2000,215.0000 L 515.2000,215.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 518.2000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 515.2000,125.0000 L 515.2000,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 515.2000,125.0000 L 452.4800,125.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 452.4800,125.0000 L 389.7600,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 389.7600,25.0000 L 327.0400,25.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 327.0400,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 264.3200,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="515.2000" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="452.4800" cy="125.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="389.7600" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="327.0400" cy="25.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="264.3200" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="201.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 424.4200,41.0000 L 424.4200,26.5000 L 481.0400,26.5000 L 481.0400,41.0000 L 424.4200,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_10_text" x="424.9200" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_13"><path d=" M 361.7000,41.0000 L 361.7000,26.5000 L 418.3200,26.5000 L 418.3200,41.0000 L 361.7000,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_13_text" x="362.2000" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_16"><path d=" M 298.9800,41.0000 L 298.9800,26.5000 L 355.6000,26.5000 L 355.6000,41.0000 L 298.9800,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_16_text" x="299.4800" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_19"><path d=" M 236.2600,41.0000 L 236.2600,26.5000 L 292.8800,26.5000 L 292.8800,41.0000 L 236.2600,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_19_text" x="236.7600" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 173.5400,41.0000 L 173.5400,26.5000 L 230.1600,26.5000 L 230.1600,41.0000 L 173.5400,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_22_text" x="174.0400" text-length="55.1200px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_25"><path d=" M 504.6400,41.0000 L 504.6400,26.5000 L 514.2000,26.5000 L 514.2000,41.0000 L 504.6400,41.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_25_text" x="505.1400" text-length="8.0600px" y="38.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_34"><path d=" M 488.5200,81.0000 L 488.5200,66.5000 L 514.2000,66.5000 L 514.2000,81.0000 L 488.5200,81.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="489.0200" text-length="24.1800px" y="78.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 488.5200,121.0000 L 488.5200,106.5000 L 514.2000,106.5000 L 514.2000,121.0000 L 488.5200,121.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="489.0200" text-length="24.1800px" y="118.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 488.5200,161.0000 L 488.5200,146.5000 L 514.2000,146.5000 L 514.2000,161.0000 L 488.5200,161.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="489.0200" text-length="24.1800px" y="158.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 488.5200,201.0000 L 488.5200,186.5000 L 514.2000,186.5000 L 514.2000,201.0000 L 488.5200,201.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="489.0200" text-length="24.1800px" y="198.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 488.5200,224.0000 L 488.5200,209.5000 L 514.2000,209.5000 L 514.2000,224.0000 L 488.5200,224.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="489.0200" text-length="24.1800px" y="221.0500" style="font-size: 13px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_80.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_80.svg new file mode 100644 index 0000000..d7d73a4 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_80.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,25.0000 L 112.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,29.0000 L 112.0000,25.0000 L 120.0000,21.0000 L 120.0000,29.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 443.5200,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 443.5200,25.0000 L 443.5200,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 371.8400,25.0000 L 371.8400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 371.8400,25.0000 L 371.8400,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 300.1600,25.0000 L 300.1600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.1600,25.0000 L 300.1600,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 228.4800,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 228.4800,25.0000 L 228.4800,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 156.8000,25.0000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 156.8000,25.0000 L 156.8000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,0.0000 L 515.2000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 518.7000,243.0000 L 515.2000,250.0000 L 511.7000,243.0000 L 518.7000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 156.8000,54.1667 L 515.2000,54.1667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 518.2000,54.1667 L 512.2000,54.1667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 156.8000,83.3333 L 515.2000,83.3333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 518.2000,83.3333 L 512.2000,83.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 518.2000,112.5000 L 512.2000,112.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,141.6667 L 515.2000,141.6667" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 518.2000,141.6667 L 512.2000,141.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 156.8000,170.8333 L 515.2000,170.8333" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 518.2000,170.8333 L 512.2000,170.8333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 518.2000,200.0000 L 512.2000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 515.2000,112.5000 L 515.2000,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 515.2000,112.5000 L 443.5200,112.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 443.5200,112.5000 L 371.8400,39.5833" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 371.8400,39.5833 L 300.1600,39.5833" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 300.1600,39.5833 L 228.4800,185.4167" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 228.4800,185.4167 L 156.8000,185.4167" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="515.2000" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="443.5200" cy="112.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="371.8400" cy="39.5833" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="300.1600" cy="39.5833" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="228.4800" cy="185.4167" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="156.8000" cy="185.4167" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 480.9000,48.1000 L 480.9000,26.5000 L 514.2000,26.5000 L 514.2000,48.1000 L 480.9000,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="481.4000" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="507.0000" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 409.2200,48.1000 L 409.2200,26.5000 L 442.5200,26.5000 L 442.5200,48.1000 L 409.2200,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="409.7200" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="435.3200" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 337.5400,48.1000 L 337.5400,26.5000 L 370.8400,26.5000 L 370.8400,48.1000 L 337.5400,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="338.0400" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="363.6400" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 265.8600,48.1000 L 265.8600,26.5000 L 299.1600,26.5000 L 299.1600,48.1000 L 265.8600,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="266.3600" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="291.9600" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 194.1800,48.1000 L 194.1800,26.5000 L 227.4800,26.5000 L 227.4800,48.1000 L 194.1800,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="194.6800" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="220.2800" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 158.3000,48.1000 L 158.3000,26.5000 L 191.6000,26.5000 L 191.6000,48.1000 L 158.3000,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="158.8000" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="158.8000" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26"><path d=" M 506.5000,45.5833 L 506.5000,34.0833 L 514.2000,34.0833 L 514.2000,45.5833 L 506.5000,45.5833 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="507.0000" text-length="6.2000px" y="43.0833" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29"><path d=" M 494.1000,74.7500 L 494.1000,63.2500 L 514.2000,63.2500 L 514.2000,74.7500 L 494.1000,74.7500 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="494.6000" text-length="18.6000px" y="72.2500" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32"><path d=" M 494.1000,103.9167 L 494.1000,92.4167 L 514.2000,92.4167 L 514.2000,103.9167 L 494.1000,103.9167 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="494.6000" text-length="18.6000px" y="101.4167" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35"><path d=" M 494.1000,133.0833 L 494.1000,121.5833 L 514.2000,121.5833 L 514.2000,133.0833 L 494.1000,133.0833 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="494.6000" text-length="18.6000px" y="130.5833" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38"><path d=" M 494.1000,162.2500 L 494.1000,150.7500 L 514.2000,150.7500 L 514.2000,162.2500 L 494.1000,162.2500 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="494.6000" text-length="18.6000px" y="159.7500" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41"><path d=" M 494.1000,191.4167 L 494.1000,179.9167 L 514.2000,179.9167 L 514.2000,191.4167 L 494.1000,191.4167 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="494.6000" text-length="18.6000px" y="188.9167" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_81.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_81.svg new file mode 100644 index 0000000..a0123df --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_81.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,225.0000 L 560.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,221.0000 L 560.0000,225.0000 L 552.0000,229.0000 L 552.0000,221.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 268.8000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 268.8000,222.0000 L 268.8000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 336.0000,12.5000 L 336.0000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 336.0000,222.0000 L 336.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 403.2000,12.5000 L 403.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 403.2000,222.0000 L 403.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 470.4000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 470.4000,222.0000 L 470.4000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 537.6000,222.0000 L 537.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 201.6000,250.0000 L 201.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 197.6000,8.0000 L 201.6000,0.0000 L 205.6000,8.0000 L 197.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,225.0000 L 204.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 201.6000,189.5121 L 537.6000,189.5121" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,189.5121 L 204.6000,189.5121" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,154.0242 L 537.6000,154.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,154.0242 L 204.6000,154.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,118.5363 L 537.6000,118.5363" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,118.5363 L 204.6000,118.5363" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 201.6000,83.0484 L 537.6000,83.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,83.0484 L 204.6000,83.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,47.5605 L 204.6000,47.5605" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,136.2803 L 201.6000,136.2803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,136.2803 L 268.8000,136.2803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 268.8000,136.2803 L 336.0000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 336.0000,225.0000 L 403.2000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 403.2000,225.0000 L 470.4000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 470.4000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="201.6000" cy="136.2803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="268.8000" cy="136.2803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="336.0000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="403.2000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="470.4000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="537.6000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 203.1000,246.1000 L 203.1000,226.5000 L 233.2200,226.5000 L 233.2200,246.1000 L 203.1000,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="203.6000" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="203.6000" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 270.3000,246.1000 L 270.3000,226.5000 L 300.4200,226.5000 L 300.4200,246.1000 L 270.3000,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="270.8000" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="270.8000" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 337.5000,246.1000 L 337.5000,226.5000 L 367.6200,226.5000 L 367.6200,246.1000 L 337.5000,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="338.0000" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="338.0000" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 404.7000,246.1000 L 404.7000,226.5000 L 434.8200,226.5000 L 434.8200,246.1000 L 404.7000,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="405.2000" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="405.2000" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 471.9000,246.1000 L 471.9000,226.5000 L 502.0200,226.5000 L 502.0200,246.1000 L 471.9000,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="472.4000" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="472.4000" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 506.4800,246.1000 L 506.4800,226.5000 L 536.6000,226.5000 L 536.6000,246.1000 L 506.4800,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="506.9800" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="530.0200" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26" transform="rotate( 62.21 201.6000 225.0000 )"><path d=" M 195.5200,235.0000 L 195.5200,224.5000 L 202.6000,224.5000 L 202.6000,235.0000 L 195.5200,235.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="196.0200" text-length="5.5800px" y="232.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29" transform="rotate( 62.21 201.6000 189.5121 )"><path d=" M 184.3600,199.5121 L 184.3600,189.0121 L 202.6000,189.0121 L 202.6000,199.5121 L 184.3600,199.5121 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="184.8600" text-length="16.7400px" y="197.1621" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32" transform="rotate( 62.21 201.6000 154.0242 )"><path d=" M 184.3600,164.0242 L 184.3600,153.5242 L 202.6000,153.5242 L 202.6000,164.0242 L 184.3600,164.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="184.8600" text-length="16.7400px" y="161.6742" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35" transform="rotate( 62.21 201.6000 118.5363 )"><path d=" M 184.3600,128.5363 L 184.3600,118.0363 L 202.6000,118.0363 L 202.6000,128.5363 L 184.3600,128.5363 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="184.8600" text-length="16.7400px" y="126.1863" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38" transform="rotate( 62.21 201.6000 83.0484 )"><path d=" M 184.3600,93.0484 L 184.3600,82.5484 L 202.6000,82.5484 L 202.6000,93.0484 L 184.3600,93.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="184.8600" text-length="16.7400px" y="90.6984" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41" transform="rotate( 62.21 201.6000 47.5605 )"><path d=" M 184.3600,57.5605 L 184.3600,47.0605 L 202.6000,47.0605 L 202.6000,57.5605 L 184.3600,57.5605 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="184.8600" text-length="16.7400px" y="55.2105" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_82.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_82.svg new file mode 100644 index 0000000..eb64acd --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_82.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,12.5000 L 560.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,8.5000 L 560.0000,12.5000 L 552.0000,16.5000 L 552.0000,8.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 268.8000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 268.8000,9.5000 L 268.8000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 336.0000,12.5000 L 336.0000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 336.0000,9.5000 L 336.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 403.2000,12.5000 L 403.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 403.2000,9.5000 L 403.2000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 470.4000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 470.4000,9.5000 L 470.4000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 537.6000,9.5000 L 537.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 201.6000,0.0000 L 201.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 205.6000,242.0000 L 201.6000,250.0000 L 197.6000,242.0000 L 205.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 201.6000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 204.6000,47.5605 L 201.6000,47.5605" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 201.6000,83.0484 L 537.6000,83.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 204.6000,83.0484 L 201.6000,83.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,118.5363 L 537.6000,118.5363" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 204.6000,118.5363 L 201.6000,118.5363" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,154.0242 L 537.6000,154.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 204.6000,154.0242 L 201.6000,154.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 201.6000,189.5121 L 537.6000,189.5121" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 204.6000,189.5121 L 201.6000,189.5121" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 204.6000,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,136.2803 L 201.6000,136.2803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,136.2803 L 268.8000,136.2803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 268.8000,136.2803 L 336.0000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 336.0000,47.5605 L 403.2000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 403.2000,47.5605 L 470.4000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 470.4000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="201.6000" cy="136.2803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="268.8000" cy="136.2803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="336.0000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="403.2000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="470.4000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="537.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 203.1000,33.6000 L 203.1000,14.0000 L 233.2200,14.0000 L 233.2200,33.6000 L 203.1000,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="203.6000" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="203.6000" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 270.3000,33.6000 L 270.3000,14.0000 L 300.4200,14.0000 L 300.4200,33.6000 L 270.3000,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="270.8000" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="270.8000" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 337.5000,33.6000 L 337.5000,14.0000 L 367.6200,14.0000 L 367.6200,33.6000 L 337.5000,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="338.0000" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="338.0000" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 404.7000,33.6000 L 404.7000,14.0000 L 434.8200,14.0000 L 434.8200,33.6000 L 404.7000,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="405.2000" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="405.2000" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 471.9000,33.6000 L 471.9000,14.0000 L 502.0200,14.0000 L 502.0200,33.6000 L 471.9000,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="472.4000" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="472.4000" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 506.4800,33.6000 L 506.4800,14.0000 L 536.6000,14.0000 L 536.6000,33.6000 L 506.4800,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="506.9800" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="530.0200" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26" transform="rotate( 62.21 201.6000 47.5605 )"><path d=" M 195.5200,57.5605 L 195.5200,47.0605 L 202.6000,47.0605 L 202.6000,57.5605 L 195.5200,57.5605 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="196.0200" text-length="5.5800px" y="55.2105" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29" transform="rotate( 62.21 201.6000 83.0484 )"><path d=" M 184.3600,93.0484 L 184.3600,82.5484 L 202.6000,82.5484 L 202.6000,93.0484 L 184.3600,93.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="184.8600" text-length="16.7400px" y="90.6984" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32" transform="rotate( 62.21 201.6000 118.5363 )"><path d=" M 184.3600,128.5363 L 184.3600,118.0363 L 202.6000,118.0363 L 202.6000,128.5363 L 184.3600,128.5363 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="184.8600" text-length="16.7400px" y="126.1863" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35" transform="rotate( 62.21 201.6000 154.0242 )"><path d=" M 184.3600,164.0242 L 184.3600,153.5242 L 202.6000,153.5242 L 202.6000,164.0242 L 184.3600,164.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="184.8600" text-length="16.7400px" y="161.6742" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38" transform="rotate( 62.21 201.6000 189.5121 )"><path d=" M 184.3600,199.5121 L 184.3600,189.0121 L 202.6000,189.0121 L 202.6000,199.5121 L 184.3600,199.5121 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="184.8600" text-length="16.7400px" y="197.1621" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41" transform="rotate( 62.21 201.6000 225.0000 )"><path d=" M 184.3600,235.0000 L 184.3600,224.5000 L 202.6000,224.5000 L 202.6000,235.0000 L 184.3600,235.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="184.8600" text-length="16.7400px" y="232.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_83.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_83.svg new file mode 100644 index 0000000..39340e1 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_83.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,225.0000 L 112.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,229.0000 L 112.0000,225.0000 L 120.0000,221.0000 L 120.0000,229.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 470.4000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 470.4000,225.0000 L 470.4000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 403.2000,12.5000 L 403.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 403.2000,225.0000 L 403.2000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 336.0000,12.5000 L 336.0000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 336.0000,225.0000 L 336.0000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 268.8000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 268.8000,225.0000 L 268.8000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 201.6000,12.5000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 201.6000,225.0000 L 201.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,250.0000 L 537.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 533.6000,8.0000 L 537.6000,0.0000 L 541.6000,8.0000 L 533.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 537.6000,225.0000 L 540.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 201.6000,189.5121 L 537.6000,189.5121" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 537.6000,189.5121 L 540.6000,189.5121" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,154.0242 L 537.6000,154.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 537.6000,154.0242 L 540.6000,154.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,118.5363 L 537.6000,118.5363" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 537.6000,118.5363 L 540.6000,118.5363" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 201.6000,83.0484 L 537.6000,83.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 537.6000,83.0484 L 540.6000,83.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 537.6000,47.5605 L 540.6000,47.5605" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 537.6000,136.2803 L 537.6000,136.2803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 537.6000,136.2803 L 470.4000,136.2803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 470.4000,136.2803 L 403.2000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 403.2000,225.0000 L 336.0000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 336.0000,225.0000 L 268.8000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 268.8000,47.5605 L 201.6000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="537.6000" cy="136.2803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="470.4000" cy="136.2803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="403.2000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="336.0000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="268.8000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="201.6000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 506.4800,246.1000 L 506.4800,226.5000 L 536.6000,226.5000 L 536.6000,246.1000 L 506.4800,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="506.9800" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="530.0200" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 439.2800,246.1000 L 439.2800,226.5000 L 469.4000,226.5000 L 469.4000,246.1000 L 439.2800,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="439.7800" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="462.8200" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 372.0800,246.1000 L 372.0800,226.5000 L 402.2000,226.5000 L 402.2000,246.1000 L 372.0800,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="372.5800" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="395.6200" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 304.8800,246.1000 L 304.8800,226.5000 L 335.0000,226.5000 L 335.0000,246.1000 L 304.8800,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="305.3800" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="328.4200" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 237.6800,246.1000 L 237.6800,226.5000 L 267.8000,226.5000 L 267.8000,246.1000 L 237.6800,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="238.1800" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="261.2200" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 203.1000,246.1000 L 203.1000,226.5000 L 233.2200,226.5000 L 233.2200,246.1000 L 203.1000,246.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="203.6000" text-length="28.6200px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="203.6000" text-length="5.5800px" y="244.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26" transform="rotate( 62.21 537.6000 225.0000 )"><path d=" M 531.5200,235.0000 L 531.5200,224.5000 L 538.6000,224.5000 L 538.6000,235.0000 L 531.5200,235.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="532.0200" text-length="5.5800px" y="232.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29" transform="rotate( 62.21 537.6000 189.5121 )"><path d=" M 520.3600,199.5121 L 520.3600,189.0121 L 538.6000,189.0121 L 538.6000,199.5121 L 520.3600,199.5121 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="520.8600" text-length="16.7400px" y="197.1621" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32" transform="rotate( 62.21 537.6000 154.0242 )"><path d=" M 520.3600,164.0242 L 520.3600,153.5242 L 538.6000,153.5242 L 538.6000,164.0242 L 520.3600,164.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="520.8600" text-length="16.7400px" y="161.6742" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35" transform="rotate( 62.21 537.6000 118.5363 )"><path d=" M 520.3600,128.5363 L 520.3600,118.0363 L 538.6000,118.0363 L 538.6000,128.5363 L 520.3600,128.5363 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="520.8600" text-length="16.7400px" y="126.1863" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38" transform="rotate( 62.21 537.6000 83.0484 )"><path d=" M 520.3600,93.0484 L 520.3600,82.5484 L 538.6000,82.5484 L 538.6000,93.0484 L 520.3600,93.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="520.8600" text-length="16.7400px" y="90.6984" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41" transform="rotate( 62.21 537.6000 47.5605 )"><path d=" M 520.3600,57.5605 L 520.3600,47.0605 L 538.6000,47.0605 L 538.6000,57.5605 L 520.3600,57.5605 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="520.8600" text-length="16.7400px" y="55.2105" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_84.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_84.svg new file mode 100644 index 0000000..12cba35 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_84.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,12.5000 L 112.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,16.5000 L 112.0000,12.5000 L 120.0000,8.5000 L 120.0000,16.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 470.4000,12.5000 L 470.4000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 470.4000,12.5000 L 470.4000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 403.2000,12.5000 L 403.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 403.2000,12.5000 L 403.2000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 336.0000,12.5000 L 336.0000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 336.0000,12.5000 L 336.0000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 268.8000,12.5000 L 268.8000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 268.8000,12.5000 L 268.8000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 201.6000,12.5000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 201.6000,12.5000 L 201.6000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,0.0000 L 537.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 541.6000,242.0000 L 537.6000,250.0000 L 533.6000,242.0000 L 541.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 201.6000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 540.6000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 201.6000,83.0484 L 537.6000,83.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 540.6000,83.0484 L 537.6000,83.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,118.5363 L 537.6000,118.5363" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 540.6000,118.5363 L 537.6000,118.5363" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,154.0242 L 537.6000,154.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 540.6000,154.0242 L 537.6000,154.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 201.6000,189.5121 L 537.6000,189.5121" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 540.6000,189.5121 L 537.6000,189.5121" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 540.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 537.6000,136.2803 L 537.6000,136.2803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 537.6000,136.2803 L 470.4000,136.2803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 470.4000,136.2803 L 403.2000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 403.2000,47.5605 L 336.0000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 336.0000,47.5605 L 268.8000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 268.8000,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="537.6000" cy="136.2803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="470.4000" cy="136.2803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="403.2000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="336.0000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="268.8000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="201.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 506.4800,33.6000 L 506.4800,14.0000 L 536.6000,14.0000 L 536.6000,33.6000 L 506.4800,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="506.9800" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="530.0200" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 439.2800,33.6000 L 439.2800,14.0000 L 469.4000,14.0000 L 469.4000,33.6000 L 439.2800,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="439.7800" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="462.8200" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 372.0800,33.6000 L 372.0800,14.0000 L 402.2000,14.0000 L 402.2000,33.6000 L 372.0800,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="372.5800" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="395.6200" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 304.8800,33.6000 L 304.8800,14.0000 L 335.0000,14.0000 L 335.0000,33.6000 L 304.8800,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="305.3800" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="328.4200" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 237.6800,33.6000 L 237.6800,14.0000 L 267.8000,14.0000 L 267.8000,33.6000 L 237.6800,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="238.1800" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="261.2200" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 203.1000,33.6000 L 203.1000,14.0000 L 233.2200,14.0000 L 233.2200,33.6000 L 203.1000,33.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="203.6000" text-length="28.6200px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="203.6000" text-length="5.5800px" y="32.0500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26" transform="rotate( 62.21 537.6000 47.5605 )"><path d=" M 531.5200,57.5605 L 531.5200,47.0605 L 538.6000,47.0605 L 538.6000,57.5605 L 531.5200,57.5605 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="532.0200" text-length="5.5800px" y="55.2105" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29" transform="rotate( 62.21 537.6000 83.0484 )"><path d=" M 520.3600,93.0484 L 520.3600,82.5484 L 538.6000,82.5484 L 538.6000,93.0484 L 520.3600,93.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="520.8600" text-length="16.7400px" y="90.6984" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32" transform="rotate( 62.21 537.6000 118.5363 )"><path d=" M 520.3600,128.5363 L 520.3600,118.0363 L 538.6000,118.0363 L 538.6000,128.5363 L 520.3600,128.5363 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="520.8600" text-length="16.7400px" y="126.1863" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35" transform="rotate( 62.21 537.6000 154.0242 )"><path d=" M 520.3600,164.0242 L 520.3600,153.5242 L 538.6000,153.5242 L 538.6000,164.0242 L 520.3600,164.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="520.8600" text-length="16.7400px" y="161.6742" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38" transform="rotate( 62.21 537.6000 189.5121 )"><path d=" M 520.3600,199.5121 L 520.3600,189.0121 L 538.6000,189.0121 L 538.6000,199.5121 L 520.3600,199.5121 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="520.8600" text-length="16.7400px" y="197.1621" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41" transform="rotate( 62.21 537.6000 225.0000 )"><path d=" M 520.3600,235.0000 L 520.3600,224.5000 L 538.6000,224.5000 L 538.6000,235.0000 L 520.3600,235.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="520.8600" text-length="16.7400px" y="232.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_85.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_85.svg new file mode 100644 index 0000000..4937704 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_85.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,225.0000 L 560.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,221.0000 L 560.0000,225.0000 L 552.0000,229.0000 L 552.0000,221.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 264.3200,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 264.3200,222.0000 L 264.3200,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 327.0400,25.0000 L 327.0400,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 327.0400,222.0000 L 327.0400,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 389.7600,25.0000 L 389.7600,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 389.7600,222.0000 L 389.7600,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 452.4800,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 452.4800,222.0000 L 452.4800,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 515.2000,222.0000 L 515.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 201.6000,250.0000 L 201.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 197.6000,8.0000 L 201.6000,0.0000 L 205.6000,8.0000 L 197.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 201.6000,225.0000 L 204.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 201.6000,199.0242 L 515.2000,199.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,199.0242 L 204.6000,199.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,173.0484 L 515.2000,173.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,173.0484 L 204.6000,173.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,147.0726 L 515.2000,147.0726" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 201.6000,147.0726 L 204.6000,147.0726" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 201.6000,121.0968 L 515.2000,121.0968" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,121.0968 L 204.6000,121.0968" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,95.1210 L 204.6000,95.1210" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,160.0605 L 201.6000,160.0605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,160.0605 L 264.3200,160.0605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 264.3200,160.0605 L 327.0400,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 327.0400,225.0000 L 389.7600,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 389.7600,225.0000 L 452.4800,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 452.4800,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="201.6000" cy="160.0605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="264.3200" cy="160.0605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="327.0400" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="389.7600" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="452.4800" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="515.2000" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 203.1000,244.1000 L 203.1000,226.5000 L 230.0400,226.5000 L 230.0400,244.1000 L 203.1000,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="203.6000" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="203.6000" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 265.8200,244.1000 L 265.8200,226.5000 L 292.7600,226.5000 L 292.7600,244.1000 L 265.8200,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="266.3200" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="266.3200" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 328.5400,244.1000 L 328.5400,226.5000 L 355.4800,226.5000 L 355.4800,244.1000 L 328.5400,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="329.0400" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="329.0400" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 391.2600,244.1000 L 391.2600,226.5000 L 418.2000,226.5000 L 418.2000,244.1000 L 391.2600,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="391.7600" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="391.7600" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 453.9800,244.1000 L 453.9800,226.5000 L 480.9200,226.5000 L 480.9200,244.1000 L 453.9800,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="454.4800" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="454.4800" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 487.2600,244.1000 L 487.2600,226.5000 L 514.2000,226.5000 L 514.2000,244.1000 L 487.2600,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="487.7600" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="508.2400" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26" transform="rotate( 62.21 201.6000 225.0000 )"><path d=" M 196.1400,234.0000 L 196.1400,224.5000 L 202.6000,224.5000 L 202.6000,234.0000 L 196.1400,234.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="196.6400" text-length="4.9600px" y="231.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29" transform="rotate( 62.21 201.6000 199.0242 )"><path d=" M 186.2200,208.0242 L 186.2200,198.5242 L 202.6000,198.5242 L 202.6000,208.0242 L 186.2200,208.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="186.7200" text-length="14.8800px" y="205.8242" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32" transform="rotate( 62.21 201.6000 173.0484 )"><path d=" M 186.2200,182.0484 L 186.2200,172.5484 L 202.6000,172.5484 L 202.6000,182.0484 L 186.2200,182.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="186.7200" text-length="14.8800px" y="179.8484" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35" transform="rotate( 62.21 201.6000 147.0726 )"><path d=" M 186.2200,156.0726 L 186.2200,146.5726 L 202.6000,146.5726 L 202.6000,156.0726 L 186.2200,156.0726 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="186.7200" text-length="14.8800px" y="153.8726" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38" transform="rotate( 62.21 201.6000 121.0968 )"><path d=" M 186.2200,130.0968 L 186.2200,120.5968 L 202.6000,120.5968 L 202.6000,130.0968 L 186.2200,130.0968 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="186.7200" text-length="14.8800px" y="127.8968" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41" transform="rotate( 62.21 201.6000 95.1210 )"><path d=" M 186.2200,104.1210 L 186.2200,94.6210 L 202.6000,94.6210 L 202.6000,104.1210 L 186.2200,104.1210 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="186.7200" text-length="14.8800px" y="101.9210" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_86.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_86.svg new file mode 100644 index 0000000..a72dc63 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_86.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,25.0000 L 560.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,21.0000 L 560.0000,25.0000 L 552.0000,29.0000 L 552.0000,21.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 264.3200,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 264.3200,22.0000 L 264.3200,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 327.0400,25.0000 L 327.0400,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 327.0400,22.0000 L 327.0400,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 389.7600,25.0000 L 389.7600,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 389.7600,22.0000 L 389.7600,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 452.4800,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 452.4800,22.0000 L 452.4800,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 515.2000,25.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 515.2000,22.0000 L 515.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 201.6000,0.0000 L 201.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 205.6000,242.0000 L 201.6000,250.0000 L 197.6000,242.0000 L 205.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 201.6000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 204.6000,95.1210 L 201.6000,95.1210" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 201.6000,121.0968 L 515.2000,121.0968" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 204.6000,121.0968 L 201.6000,121.0968" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,147.0726 L 515.2000,147.0726" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 204.6000,147.0726 L 201.6000,147.0726" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,173.0484 L 515.2000,173.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 204.6000,173.0484 L 201.6000,173.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 201.6000,199.0242 L 515.2000,199.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 204.6000,199.0242 L 201.6000,199.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 204.6000,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,160.0605 L 201.6000,160.0605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,160.0605 L 264.3200,160.0605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 264.3200,160.0605 L 327.0400,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 327.0400,95.1210 L 389.7600,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 389.7600,95.1210 L 452.4800,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 452.4800,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="201.6000" cy="160.0605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="264.3200" cy="160.0605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="327.0400" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="389.7600" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="452.4800" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="515.2000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 203.1000,44.1000 L 203.1000,26.5000 L 230.0400,26.5000 L 230.0400,44.1000 L 203.1000,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="203.6000" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="203.6000" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 265.8200,44.1000 L 265.8200,26.5000 L 292.7600,26.5000 L 292.7600,44.1000 L 265.8200,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="266.3200" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="266.3200" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 328.5400,44.1000 L 328.5400,26.5000 L 355.4800,26.5000 L 355.4800,44.1000 L 328.5400,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="329.0400" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="329.0400" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 391.2600,44.1000 L 391.2600,26.5000 L 418.2000,26.5000 L 418.2000,44.1000 L 391.2600,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="391.7600" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="391.7600" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 453.9800,44.1000 L 453.9800,26.5000 L 480.9200,26.5000 L 480.9200,44.1000 L 453.9800,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="454.4800" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="454.4800" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 487.2600,44.1000 L 487.2600,26.5000 L 514.2000,26.5000 L 514.2000,44.1000 L 487.2600,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="487.7600" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="508.2400" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26" transform="rotate( 62.21 201.6000 95.1210 )"><path d=" M 196.1400,104.1210 L 196.1400,94.6210 L 202.6000,94.6210 L 202.6000,104.1210 L 196.1400,104.1210 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="196.6400" text-length="4.9600px" y="101.9210" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29" transform="rotate( 62.21 201.6000 121.0968 )"><path d=" M 186.2200,130.0968 L 186.2200,120.5968 L 202.6000,120.5968 L 202.6000,130.0968 L 186.2200,130.0968 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="186.7200" text-length="14.8800px" y="127.8968" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32" transform="rotate( 62.21 201.6000 147.0726 )"><path d=" M 186.2200,156.0726 L 186.2200,146.5726 L 202.6000,146.5726 L 202.6000,156.0726 L 186.2200,156.0726 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="186.7200" text-length="14.8800px" y="153.8726" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35" transform="rotate( 62.21 201.6000 173.0484 )"><path d=" M 186.2200,182.0484 L 186.2200,172.5484 L 202.6000,172.5484 L 202.6000,182.0484 L 186.2200,182.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="186.7200" text-length="14.8800px" y="179.8484" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38" transform="rotate( 62.21 201.6000 199.0242 )"><path d=" M 186.2200,208.0242 L 186.2200,198.5242 L 202.6000,198.5242 L 202.6000,208.0242 L 186.2200,208.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="186.7200" text-length="14.8800px" y="205.8242" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41" transform="rotate( 62.21 201.6000 225.0000 )"><path d=" M 186.2200,234.0000 L 186.2200,224.5000 L 202.6000,224.5000 L 202.6000,234.0000 L 186.2200,234.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="186.7200" text-length="14.8800px" y="231.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_87.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_87.svg new file mode 100644 index 0000000..6700028 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_87.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,225.0000 L 112.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,229.0000 L 112.0000,225.0000 L 120.0000,221.0000 L 120.0000,229.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 452.4800,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 452.4800,225.0000 L 452.4800,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 389.7600,25.0000 L 389.7600,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 389.7600,225.0000 L 389.7600,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 327.0400,25.0000 L 327.0400,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 327.0400,225.0000 L 327.0400,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 264.3200,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 264.3200,225.0000 L 264.3200,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 201.6000,25.0000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 201.6000,225.0000 L 201.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,250.0000 L 515.2000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 511.2000,8.0000 L 515.2000,0.0000 L 519.2000,8.0000 L 511.2000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 515.2000,225.0000 L 518.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 201.6000,199.0242 L 515.2000,199.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 515.2000,199.0242 L 518.2000,199.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,173.0484 L 515.2000,173.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 515.2000,173.0484 L 518.2000,173.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,147.0726 L 515.2000,147.0726" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 515.2000,147.0726 L 518.2000,147.0726" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 201.6000,121.0968 L 515.2000,121.0968" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 515.2000,121.0968 L 518.2000,121.0968" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 515.2000,95.1210 L 518.2000,95.1210" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 515.2000,160.0605 L 515.2000,160.0605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 515.2000,160.0605 L 452.4800,160.0605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 452.4800,160.0605 L 389.7600,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 389.7600,225.0000 L 327.0400,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 327.0400,225.0000 L 264.3200,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 264.3200,95.1210 L 201.6000,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="515.2000" cy="160.0605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="452.4800" cy="160.0605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="389.7600" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="327.0400" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="264.3200" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="201.6000" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 487.2600,244.1000 L 487.2600,226.5000 L 514.2000,226.5000 L 514.2000,244.1000 L 487.2600,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="487.7600" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="508.2400" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 424.5400,244.1000 L 424.5400,226.5000 L 451.4800,226.5000 L 451.4800,244.1000 L 424.5400,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="425.0400" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="445.5200" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 361.8200,244.1000 L 361.8200,226.5000 L 388.7600,226.5000 L 388.7600,244.1000 L 361.8200,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="362.3200" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="382.8000" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 299.1000,244.1000 L 299.1000,226.5000 L 326.0400,226.5000 L 326.0400,244.1000 L 299.1000,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="299.6000" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="320.0800" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 236.3800,244.1000 L 236.3800,226.5000 L 263.3200,226.5000 L 263.3200,244.1000 L 236.3800,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="236.8800" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="257.3600" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 203.1000,244.1000 L 203.1000,226.5000 L 230.0400,226.5000 L 230.0400,244.1000 L 203.1000,244.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="203.6000" text-length="25.4400px" y="233.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="203.6000" text-length="4.9600px" y="242.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26" transform="rotate( 62.21 515.2000 225.0000 )"><path d=" M 509.7400,234.0000 L 509.7400,224.5000 L 516.2000,224.5000 L 516.2000,234.0000 L 509.7400,234.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="510.2400" text-length="4.9600px" y="231.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29" transform="rotate( 62.21 515.2000 199.0242 )"><path d=" M 499.8200,208.0242 L 499.8200,198.5242 L 516.2000,198.5242 L 516.2000,208.0242 L 499.8200,208.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="500.3200" text-length="14.8800px" y="205.8242" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32" transform="rotate( 62.21 515.2000 173.0484 )"><path d=" M 499.8200,182.0484 L 499.8200,172.5484 L 516.2000,172.5484 L 516.2000,182.0484 L 499.8200,182.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="500.3200" text-length="14.8800px" y="179.8484" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35" transform="rotate( 62.21 515.2000 147.0726 )"><path d=" M 499.8200,156.0726 L 499.8200,146.5726 L 516.2000,146.5726 L 516.2000,156.0726 L 499.8200,156.0726 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="500.3200" text-length="14.8800px" y="153.8726" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38" transform="rotate( 62.21 515.2000 121.0968 )"><path d=" M 499.8200,130.0968 L 499.8200,120.5968 L 516.2000,120.5968 L 516.2000,130.0968 L 499.8200,130.0968 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="500.3200" text-length="14.8800px" y="127.8968" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41" transform="rotate( 62.21 515.2000 95.1210 )"><path d=" M 499.8200,104.1210 L 499.8200,94.6210 L 516.2000,94.6210 L 516.2000,104.1210 L 499.8200,104.1210 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="500.3200" text-length="14.8800px" y="101.9210" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_88.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_88.svg new file mode 100644 index 0000000..669db60 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_88.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,25.0000 L 112.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,29.0000 L 112.0000,25.0000 L 120.0000,21.0000 L 120.0000,29.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 452.4800,25.0000 L 452.4800,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 452.4800,25.0000 L 452.4800,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 389.7600,25.0000 L 389.7600,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 389.7600,25.0000 L 389.7600,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 327.0400,25.0000 L 327.0400,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 327.0400,25.0000 L 327.0400,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 264.3200,25.0000 L 264.3200,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 264.3200,25.0000 L 264.3200,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 201.6000,25.0000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 201.6000,25.0000 L 201.6000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,0.0000 L 515.2000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 519.2000,242.0000 L 515.2000,250.0000 L 511.2000,242.0000 L 519.2000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 201.6000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 518.2000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 201.6000,121.0968 L 515.2000,121.0968" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 518.2000,121.0968 L 515.2000,121.0968" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,147.0726 L 515.2000,147.0726" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 518.2000,147.0726 L 515.2000,147.0726" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,173.0484 L 515.2000,173.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 518.2000,173.0484 L 515.2000,173.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 201.6000,199.0242 L 515.2000,199.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 518.2000,199.0242 L 515.2000,199.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 518.2000,225.0000 L 515.2000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 515.2000,160.0605 L 515.2000,160.0605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 515.2000,160.0605 L 452.4800,160.0605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 452.4800,160.0605 L 389.7600,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 389.7600,95.1210 L 327.0400,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 327.0400,95.1210 L 264.3200,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 264.3200,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="515.2000" cy="160.0605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="452.4800" cy="160.0605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="389.7600" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="327.0400" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="264.3200" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="201.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 487.2600,44.1000 L 487.2600,26.5000 L 514.2000,26.5000 L 514.2000,44.1000 L 487.2600,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="487.7600" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="508.2400" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 424.5400,44.1000 L 424.5400,26.5000 L 451.4800,26.5000 L 451.4800,44.1000 L 424.5400,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="425.0400" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="445.5200" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 361.8200,44.1000 L 361.8200,26.5000 L 388.7600,26.5000 L 388.7600,44.1000 L 361.8200,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="362.3200" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="382.8000" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 299.1000,44.1000 L 299.1000,26.5000 L 326.0400,26.5000 L 326.0400,44.1000 L 299.1000,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="299.6000" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="320.0800" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 236.3800,44.1000 L 236.3800,26.5000 L 263.3200,26.5000 L 263.3200,44.1000 L 236.3800,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="236.8800" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="257.3600" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 203.1000,44.1000 L 203.1000,26.5000 L 230.0400,26.5000 L 230.0400,44.1000 L 203.1000,44.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="203.6000" text-length="25.4400px" y="33.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="203.6000" text-length="4.9600px" y="42.6000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26" transform="rotate( 62.21 515.2000 95.1210 )"><path d=" M 509.7400,104.1210 L 509.7400,94.6210 L 516.2000,94.6210 L 516.2000,104.1210 L 509.7400,104.1210 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="510.2400" text-length="4.9600px" y="101.9210" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29" transform="rotate( 62.21 515.2000 121.0968 )"><path d=" M 499.8200,130.0968 L 499.8200,120.5968 L 516.2000,120.5968 L 516.2000,130.0968 L 499.8200,130.0968 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="500.3200" text-length="14.8800px" y="127.8968" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32" transform="rotate( 62.21 515.2000 147.0726 )"><path d=" M 499.8200,156.0726 L 499.8200,146.5726 L 516.2000,146.5726 L 516.2000,156.0726 L 499.8200,156.0726 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="500.3200" text-length="14.8800px" y="153.8726" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35" transform="rotate( 62.21 515.2000 173.0484 )"><path d=" M 499.8200,182.0484 L 499.8200,172.5484 L 516.2000,172.5484 L 516.2000,182.0484 L 499.8200,182.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="500.3200" text-length="14.8800px" y="179.8484" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38" transform="rotate( 62.21 515.2000 199.0242 )"><path d=" M 499.8200,208.0242 L 499.8200,198.5242 L 516.2000,198.5242 L 516.2000,208.0242 L 499.8200,208.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="500.3200" text-length="14.8800px" y="205.8242" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41" transform="rotate( 62.21 515.2000 225.0000 )"><path d=" M 499.8200,234.0000 L 499.8200,224.5000 L 516.2000,224.5000 L 516.2000,234.0000 L 499.8200,234.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="500.3200" text-length="14.8800px" y="231.8000" style="font-size: 8px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_89.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_89.svg new file mode 100644 index 0000000..74d909f --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_89.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,200.0000 L 560.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,196.0000 L 560.0000,200.0000 L 552.0000,204.0000 L 552.0000,196.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 232.9600,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 232.9600,197.0000 L 232.9600,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 309.1200,12.5000 L 309.1200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 309.1200,197.0000 L 309.1200,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 385.2800,12.5000 L 385.2800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 385.2800,197.0000 L 385.2800,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 461.4400,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 461.4400,197.0000 L 461.4400,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 537.6000,197.0000 L 537.6000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 156.8000,250.0000 L 156.8000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 153.8000,6.0000 L 156.8000,0.0000 L 159.8000,6.0000 L 153.8000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,200.0000 L 159.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 156.8000,169.5121 L 537.6000,169.5121" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,169.5121 L 159.8000,169.5121" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,139.0242 L 537.6000,139.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,139.0242 L 159.8000,139.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,108.5363 L 537.6000,108.5363" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,108.5363 L 159.8000,108.5363" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 156.8000,78.0484 L 537.6000,78.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,78.0484 L 159.8000,78.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,47.5605 L 159.8000,47.5605" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,123.7803 L 156.8000,123.7803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,123.7803 L 232.9600,123.7803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 232.9600,123.7803 L 309.1200,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 309.1200,200.0000 L 385.2800,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 385.2800,200.0000 L 461.4400,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 461.4400,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="156.8000" cy="123.7803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="232.9600" cy="123.7803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="309.1200" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="385.2800" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="461.4400" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="537.6000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 158.3000,223.1000 L 158.3000,201.5000 L 191.6000,201.5000 L 191.6000,223.1000 L 158.3000,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="158.8000" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="158.8000" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 234.4600,223.1000 L 234.4600,201.5000 L 267.7600,201.5000 L 267.7600,223.1000 L 234.4600,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="234.9600" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="234.9600" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 310.6200,223.1000 L 310.6200,201.5000 L 343.9200,201.5000 L 343.9200,223.1000 L 310.6200,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="311.1200" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="311.1200" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 386.7800,223.1000 L 386.7800,201.5000 L 420.0800,201.5000 L 420.0800,223.1000 L 386.7800,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="387.2800" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="387.2800" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 462.9400,223.1000 L 462.9400,201.5000 L 496.2400,201.5000 L 496.2400,223.1000 L 462.9400,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="463.4400" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="463.4400" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 503.3000,223.1000 L 503.3000,201.5000 L 536.6000,201.5000 L 536.6000,223.1000 L 503.3000,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="503.8000" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="529.4000" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26" transform="rotate( 62.21 156.8000 200.0000 )"><path d=" M 150.1000,211.0000 L 150.1000,199.5000 L 157.8000,199.5000 L 157.8000,211.0000 L 150.1000,211.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="150.6000" text-length="6.2000px" y="208.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29" transform="rotate( 62.21 156.8000 169.5121 )"><path d=" M 137.7000,180.5121 L 137.7000,169.0121 L 157.8000,169.0121 L 157.8000,180.5121 L 137.7000,180.5121 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="138.2000" text-length="18.6000px" y="178.0121" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32" transform="rotate( 62.21 156.8000 139.0242 )"><path d=" M 137.7000,150.0242 L 137.7000,138.5242 L 157.8000,138.5242 L 157.8000,150.0242 L 137.7000,150.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="138.2000" text-length="18.6000px" y="147.5242" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35" transform="rotate( 62.21 156.8000 108.5363 )"><path d=" M 137.7000,119.5363 L 137.7000,108.0363 L 157.8000,108.0363 L 157.8000,119.5363 L 137.7000,119.5363 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="138.2000" text-length="18.6000px" y="117.0363" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38" transform="rotate( 62.21 156.8000 78.0484 )"><path d=" M 137.7000,89.0484 L 137.7000,77.5484 L 157.8000,77.5484 L 157.8000,89.0484 L 137.7000,89.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="138.2000" text-length="18.6000px" y="86.5484" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41" transform="rotate( 62.21 156.8000 47.5605 )"><path d=" M 137.7000,58.5605 L 137.7000,47.0605 L 157.8000,47.0605 L 157.8000,58.5605 L 137.7000,58.5605 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="138.2000" text-length="18.6000px" y="56.0605" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_9.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_9.svg new file mode 100644 index 0000000..6e10f8f --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_9.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,200.0000 L 560.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,196.0000 L 560.0000,200.0000 L 552.0000,204.0000 L 552.0000,196.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 232.9600,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 232.9600,197.0000 L 232.9600,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 309.1200,12.5000 L 309.1200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 309.1200,197.0000 L 309.1200,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 385.2800,12.5000 L 385.2800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 385.2800,197.0000 L 385.2800,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 461.4400,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 461.4400,197.0000 L 461.4400,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 537.6000,197.0000 L 537.6000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 156.8000,250.0000 L 156.8000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 153.8000,6.0000 L 156.8000,0.0000 L 159.8000,6.0000 L 153.8000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 156.8000,190.6250 L 537.6000,190.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 156.8000,190.6250 L 157.8000,190.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,181.2500 L 537.6000,181.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 156.8000,181.2500 L 157.8000,181.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 156.8000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,171.8750 L 157.8000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,162.5000 L 537.6000,162.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 156.8000,162.5000 L 159.8000,162.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,153.1250 L 537.6000,153.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 156.8000,153.1250 L 157.8000,153.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,143.7500 L 537.6000,143.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 156.8000,143.7500 L 157.8000,143.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 156.8000,134.3750 L 537.6000,134.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,134.3750 L 157.8000,134.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,125.0000 L 537.6000,125.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 156.8000,125.0000 L 159.8000,125.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,115.6250 L 537.6000,115.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,115.6250 L 157.8000,115.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 156.8000,106.2500 L 537.6000,106.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 156.8000,106.2500 L 157.8000,106.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 156.8000,96.8750 L 537.6000,96.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 156.8000,96.8750 L 157.8000,96.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 156.8000,87.5000 L 537.6000,87.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 156.8000,87.5000 L 159.8000,87.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 156.8000,78.1250 L 537.6000,78.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 156.8000,78.1250 L 157.8000,78.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 156.8000,68.7500 L 537.6000,68.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 156.8000,68.7500 L 157.8000,68.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 156.8000,59.3750 L 537.6000,59.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 156.8000,59.3750 L 157.8000,59.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 156.8000,50.0000 L 537.6000,50.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 156.8000,50.0000 L 159.8000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 156.8000,40.6250 L 537.6000,40.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 156.8000,40.6250 L 157.8000,40.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 156.8000,31.2500 L 537.6000,31.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 156.8000,31.2500 L 157.8000,31.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 156.8000,21.8750 L 537.6000,21.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 156.8000,21.8750 L 157.8000,21.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 156.8000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 156.8000,12.5000 L 159.8000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 156.8000,106.2500 L 156.8000,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 156.8000,106.2500 L 232.9600,106.2500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 232.9600,106.2500 L 309.1200,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 309.1200,200.0000 L 385.2800,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 385.2800,200.0000 L 461.4400,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 461.4400,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><ellipse cx="156.8000" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="232.9600" cy="106.2500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="309.1200" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="385.2800" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="461.4400" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="537.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_10"><path d=" M 218.1500,221.1000 L 218.1500,201.5000 L 248.2700,201.5000 L 248.2700,221.1000 L 218.1500,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_10_text" x="218.6500" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_10_text" x="230.1700" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_13"><path d=" M 294.3100,221.1000 L 294.3100,201.5000 L 324.4300,201.5000 L 324.4300,221.1000 L 294.3100,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_13_text" x="294.8100" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_13_text" x="306.3300" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_16"><path d=" M 370.4700,221.1000 L 370.4700,201.5000 L 400.5900,201.5000 L 400.5900,221.1000 L 370.4700,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_16_text" x="370.9700" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_16_text" x="382.4900" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_19"><path d=" M 446.6300,221.1000 L 446.6300,201.5000 L 476.7500,201.5000 L 476.7500,221.1000 L 446.6300,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_19_text" x="447.1300" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_19_text" x="458.6500" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_22"><path d=" M 522.7900,221.1000 L 522.7900,201.5000 L 552.9100,201.5000 L 552.9100,221.1000 L 522.7900,221.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_22_text" x="523.2900" text-length="28.6200px" y="209.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_22_text" x="534.8100" text-length="5.5800px" y="219.5500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_25"><path d=" M 148.7200,199.0000 L 148.7200,188.5000 L 155.8000,188.5000 L 155.8000,199.0000 L 148.7200,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_25_text" x="149.2200" text-length="5.5800px" y="196.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_34"><path d=" M 137.5600,161.5000 L 137.5600,151.0000 L 155.8000,151.0000 L 155.8000,161.5000 L 137.5600,161.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_34_text" x="138.0600" text-length="16.7400px" y="159.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_43"><path d=" M 137.5600,124.0000 L 137.5600,113.5000 L 155.8000,113.5000 L 155.8000,124.0000 L 137.5600,124.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_43_text" x="138.0600" text-length="16.7400px" y="121.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_52"><path d=" M 137.5600,86.5000 L 137.5600,76.0000 L 155.8000,76.0000 L 155.8000,86.5000 L 137.5600,86.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_52_text" x="138.0600" text-length="16.7400px" y="84.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_61"><path d=" M 137.5600,49.0000 L 137.5600,38.5000 L 155.8000,38.5000 L 155.8000,49.0000 L 137.5600,49.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_61_text" x="138.0600" text-length="16.7400px" y="46.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_70"><path d=" M 137.5600,24.5000 L 137.5600,14.0000 L 155.8000,14.0000 L 155.8000,24.5000 L 137.5600,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_70_text" x="138.0600" text-length="16.7400px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_90.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_90.svg new file mode 100644 index 0000000..a759bdf --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_90.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,12.5000 L 560.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,8.5000 L 560.0000,12.5000 L 552.0000,16.5000 L 552.0000,8.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 232.9600,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 232.9600,9.5000 L 232.9600,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 309.1200,12.5000 L 309.1200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 309.1200,9.5000 L 309.1200,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 385.2800,12.5000 L 385.2800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 385.2800,9.5000 L 385.2800,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 461.4400,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 461.4400,9.5000 L 461.4400,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 537.6000,12.5000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 537.6000,9.5000 L 537.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 156.8000,0.0000 L 156.8000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 160.3000,243.0000 L 156.8000,250.0000 L 153.3000,243.0000 L 160.3000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 156.8000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 159.8000,47.5605 L 156.8000,47.5605" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 156.8000,78.0484 L 537.6000,78.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 159.8000,78.0484 L 156.8000,78.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,108.5363 L 537.6000,108.5363" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 159.8000,108.5363 L 156.8000,108.5363" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,139.0242 L 537.6000,139.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 159.8000,139.0242 L 156.8000,139.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 156.8000,169.5121 L 537.6000,169.5121" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 159.8000,169.5121 L 156.8000,169.5121" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 159.8000,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,123.7803 L 156.8000,123.7803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,123.7803 L 232.9600,123.7803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 232.9600,123.7803 L 309.1200,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 309.1200,47.5605 L 385.2800,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 385.2800,47.5605 L 461.4400,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 461.4400,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="156.8000" cy="123.7803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="232.9600" cy="123.7803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="309.1200" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="385.2800" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="461.4400" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="537.6000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 158.3000,35.6000 L 158.3000,14.0000 L 191.6000,14.0000 L 191.6000,35.6000 L 158.3000,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="158.8000" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="158.8000" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 234.4600,35.6000 L 234.4600,14.0000 L 267.7600,14.0000 L 267.7600,35.6000 L 234.4600,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="234.9600" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="234.9600" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 310.6200,35.6000 L 310.6200,14.0000 L 343.9200,14.0000 L 343.9200,35.6000 L 310.6200,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="311.1200" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="311.1200" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 386.7800,35.6000 L 386.7800,14.0000 L 420.0800,14.0000 L 420.0800,35.6000 L 386.7800,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="387.2800" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="387.2800" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 462.9400,35.6000 L 462.9400,14.0000 L 496.2400,14.0000 L 496.2400,35.6000 L 462.9400,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="463.4400" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="463.4400" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 503.3000,35.6000 L 503.3000,14.0000 L 536.6000,14.0000 L 536.6000,35.6000 L 503.3000,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="503.8000" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="529.4000" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26" transform="rotate( 62.21 156.8000 47.5605 )"><path d=" M 150.1000,58.5605 L 150.1000,47.0605 L 157.8000,47.0605 L 157.8000,58.5605 L 150.1000,58.5605 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="150.6000" text-length="6.2000px" y="56.0605" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29" transform="rotate( 62.21 156.8000 78.0484 )"><path d=" M 137.7000,89.0484 L 137.7000,77.5484 L 157.8000,77.5484 L 157.8000,89.0484 L 137.7000,89.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="138.2000" text-length="18.6000px" y="86.5484" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32" transform="rotate( 62.21 156.8000 108.5363 )"><path d=" M 137.7000,119.5363 L 137.7000,108.0363 L 157.8000,108.0363 L 157.8000,119.5363 L 137.7000,119.5363 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="138.2000" text-length="18.6000px" y="117.0363" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35" transform="rotate( 62.21 156.8000 139.0242 )"><path d=" M 137.7000,150.0242 L 137.7000,138.5242 L 157.8000,138.5242 L 157.8000,150.0242 L 137.7000,150.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="138.2000" text-length="18.6000px" y="147.5242" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38" transform="rotate( 62.21 156.8000 169.5121 )"><path d=" M 137.7000,180.5121 L 137.7000,169.0121 L 157.8000,169.0121 L 157.8000,180.5121 L 137.7000,180.5121 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="138.2000" text-length="18.6000px" y="178.0121" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41" transform="rotate( 62.21 156.8000 200.0000 )"><path d=" M 137.7000,211.0000 L 137.7000,199.5000 L 157.8000,199.5000 L 157.8000,211.0000 L 137.7000,211.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="138.2000" text-length="18.6000px" y="208.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_91.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_91.svg new file mode 100644 index 0000000..ee041ea --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_91.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,200.0000 L 112.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,204.0000 L 112.0000,200.0000 L 120.0000,196.0000 L 120.0000,204.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 461.4400,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 461.4400,200.0000 L 461.4400,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 385.2800,12.5000 L 385.2800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 385.2800,200.0000 L 385.2800,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 309.1200,12.5000 L 309.1200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 309.1200,200.0000 L 309.1200,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 232.9600,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 232.9600,200.0000 L 232.9600,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 156.8000,12.5000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 156.8000,200.0000 L 156.8000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,250.0000 L 537.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 534.6000,6.0000 L 537.6000,0.0000 L 540.6000,6.0000 L 534.6000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 537.6000,200.0000 L 540.6000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 156.8000,169.5121 L 537.6000,169.5121" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 537.6000,169.5121 L 540.6000,169.5121" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,139.0242 L 537.6000,139.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 537.6000,139.0242 L 540.6000,139.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,108.5363 L 537.6000,108.5363" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 537.6000,108.5363 L 540.6000,108.5363" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 156.8000,78.0484 L 537.6000,78.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 537.6000,78.0484 L 540.6000,78.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 537.6000,47.5605 L 540.6000,47.5605" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 537.6000,123.7803 L 537.6000,123.7803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 537.6000,123.7803 L 461.4400,123.7803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 461.4400,123.7803 L 385.2800,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 385.2800,200.0000 L 309.1200,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 309.1200,200.0000 L 232.9600,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 232.9600,47.5605 L 156.8000,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="537.6000" cy="123.7803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="461.4400" cy="123.7803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="385.2800" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="309.1200" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="232.9600" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="156.8000" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 503.3000,223.1000 L 503.3000,201.5000 L 536.6000,201.5000 L 536.6000,223.1000 L 503.3000,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="503.8000" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="529.4000" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 427.1400,223.1000 L 427.1400,201.5000 L 460.4400,201.5000 L 460.4400,223.1000 L 427.1400,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="427.6400" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="453.2400" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 350.9800,223.1000 L 350.9800,201.5000 L 384.2800,201.5000 L 384.2800,223.1000 L 350.9800,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="351.4800" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="377.0800" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 274.8200,223.1000 L 274.8200,201.5000 L 308.1200,201.5000 L 308.1200,223.1000 L 274.8200,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="275.3200" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="300.9200" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 198.6600,223.1000 L 198.6600,201.5000 L 231.9600,201.5000 L 231.9600,223.1000 L 198.6600,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="199.1600" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="224.7600" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 158.3000,223.1000 L 158.3000,201.5000 L 191.6000,201.5000 L 191.6000,223.1000 L 158.3000,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="158.8000" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="158.8000" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26" transform="rotate( 62.21 537.6000 200.0000 )"><path d=" M 530.9000,211.0000 L 530.9000,199.5000 L 538.6000,199.5000 L 538.6000,211.0000 L 530.9000,211.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="531.4000" text-length="6.2000px" y="208.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29" transform="rotate( 62.21 537.6000 169.5121 )"><path d=" M 518.5000,180.5121 L 518.5000,169.0121 L 538.6000,169.0121 L 538.6000,180.5121 L 518.5000,180.5121 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="519.0000" text-length="18.6000px" y="178.0121" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32" transform="rotate( 62.21 537.6000 139.0242 )"><path d=" M 518.5000,150.0242 L 518.5000,138.5242 L 538.6000,138.5242 L 538.6000,150.0242 L 518.5000,150.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="519.0000" text-length="18.6000px" y="147.5242" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35" transform="rotate( 62.21 537.6000 108.5363 )"><path d=" M 518.5000,119.5363 L 518.5000,108.0363 L 538.6000,108.0363 L 538.6000,119.5363 L 518.5000,119.5363 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="519.0000" text-length="18.6000px" y="117.0363" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38" transform="rotate( 62.21 537.6000 78.0484 )"><path d=" M 518.5000,89.0484 L 518.5000,77.5484 L 538.6000,77.5484 L 538.6000,89.0484 L 518.5000,89.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="519.0000" text-length="18.6000px" y="86.5484" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41" transform="rotate( 62.21 537.6000 47.5605 )"><path d=" M 518.5000,58.5605 L 518.5000,47.0605 L 538.6000,47.0605 L 538.6000,58.5605 L 518.5000,58.5605 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="519.0000" text-length="18.6000px" y="56.0605" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_92.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_92.svg new file mode 100644 index 0000000..2f00a08 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_92.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,12.5000 L 112.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,16.5000 L 112.0000,12.5000 L 120.0000,8.5000 L 120.0000,16.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 461.4400,12.5000 L 461.4400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 461.4400,12.5000 L 461.4400,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 385.2800,12.5000 L 385.2800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 385.2800,12.5000 L 385.2800,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 309.1200,12.5000 L 309.1200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 309.1200,12.5000 L 309.1200,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 232.9600,12.5000 L 232.9600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 232.9600,12.5000 L 232.9600,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 156.8000,12.5000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 156.8000,12.5000 L 156.8000,9.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,0.0000 L 537.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 541.1000,243.0000 L 537.6000,250.0000 L 534.1000,243.0000 L 541.1000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 156.8000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 540.6000,47.5605 L 537.6000,47.5605" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 156.8000,78.0484 L 537.6000,78.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 540.6000,78.0484 L 537.6000,78.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,108.5363 L 537.6000,108.5363" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 540.6000,108.5363 L 537.6000,108.5363" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,139.0242 L 537.6000,139.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 540.6000,139.0242 L 537.6000,139.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 156.8000,169.5121 L 537.6000,169.5121" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 540.6000,169.5121 L 537.6000,169.5121" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 540.6000,200.0000 L 537.6000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 537.6000,123.7803 L 537.6000,123.7803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 537.6000,123.7803 L 461.4400,123.7803" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 461.4400,123.7803 L 385.2800,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 385.2800,47.5605 L 309.1200,47.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 309.1200,47.5605 L 232.9600,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 232.9600,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="537.6000" cy="123.7803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="461.4400" cy="123.7803" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="385.2800" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="309.1200" cy="47.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="232.9600" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="156.8000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 503.3000,35.6000 L 503.3000,14.0000 L 536.6000,14.0000 L 536.6000,35.6000 L 503.3000,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="503.8000" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="529.4000" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 427.1400,35.6000 L 427.1400,14.0000 L 460.4400,14.0000 L 460.4400,35.6000 L 427.1400,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="427.6400" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="453.2400" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 350.9800,35.6000 L 350.9800,14.0000 L 384.2800,14.0000 L 384.2800,35.6000 L 350.9800,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="351.4800" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="377.0800" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 274.8200,35.6000 L 274.8200,14.0000 L 308.1200,14.0000 L 308.1200,35.6000 L 274.8200,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="275.3200" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="300.9200" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 198.6600,35.6000 L 198.6600,14.0000 L 231.9600,14.0000 L 231.9600,35.6000 L 198.6600,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="199.1600" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="224.7600" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 158.3000,35.6000 L 158.3000,14.0000 L 191.6000,14.0000 L 191.6000,35.6000 L 158.3000,35.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="158.8000" text-length="31.8000px" y="23.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="158.8000" text-length="6.2000px" y="34.0000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26" transform="rotate( 62.21 537.6000 47.5605 )"><path d=" M 530.9000,58.5605 L 530.9000,47.0605 L 538.6000,47.0605 L 538.6000,58.5605 L 530.9000,58.5605 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="531.4000" text-length="6.2000px" y="56.0605" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29" transform="rotate( 62.21 537.6000 78.0484 )"><path d=" M 518.5000,89.0484 L 518.5000,77.5484 L 538.6000,77.5484 L 538.6000,89.0484 L 518.5000,89.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="519.0000" text-length="18.6000px" y="86.5484" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32" transform="rotate( 62.21 537.6000 108.5363 )"><path d=" M 518.5000,119.5363 L 518.5000,108.0363 L 538.6000,108.0363 L 538.6000,119.5363 L 518.5000,119.5363 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="519.0000" text-length="18.6000px" y="117.0363" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35" transform="rotate( 62.21 537.6000 139.0242 )"><path d=" M 518.5000,150.0242 L 518.5000,138.5242 L 538.6000,138.5242 L 538.6000,150.0242 L 518.5000,150.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="519.0000" text-length="18.6000px" y="147.5242" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38" transform="rotate( 62.21 537.6000 169.5121 )"><path d=" M 518.5000,180.5121 L 518.5000,169.0121 L 538.6000,169.0121 L 538.6000,180.5121 L 518.5000,180.5121 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="519.0000" text-length="18.6000px" y="178.0121" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41" transform="rotate( 62.21 537.6000 200.0000 )"><path d=" M 518.5000,211.0000 L 518.5000,199.5000 L 538.6000,199.5000 L 538.6000,211.0000 L 518.5000,211.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="519.0000" text-length="18.6000px" y="208.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_93.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_93.svg new file mode 100644 index 0000000..93ef44f --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_93.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,200.0000 L 560.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,196.0000 L 560.0000,200.0000 L 552.0000,204.0000 L 552.0000,196.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 228.4800,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 228.4800,197.0000 L 228.4800,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 300.1600,25.0000 L 300.1600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 300.1600,197.0000 L 300.1600,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 371.8400,25.0000 L 371.8400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 371.8400,197.0000 L 371.8400,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 443.5200,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 443.5200,197.0000 L 443.5200,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 515.2000,197.0000 L 515.2000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 156.8000,250.0000 L 156.8000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 153.8000,6.0000 L 156.8000,0.0000 L 159.8000,6.0000 L 153.8000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 156.8000,200.0000 L 159.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 156.8000,179.0242 L 515.2000,179.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 156.8000,179.0242 L 159.8000,179.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,158.0484 L 515.2000,158.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 156.8000,158.0484 L 159.8000,158.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,137.0726 L 515.2000,137.0726" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 156.8000,137.0726 L 159.8000,137.0726" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 156.8000,116.0968 L 515.2000,116.0968" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 156.8000,116.0968 L 159.8000,116.0968" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 156.8000,95.1210 L 159.8000,95.1210" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,147.5605 L 156.8000,147.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,147.5605 L 228.4800,147.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 228.4800,147.5605 L 300.1600,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 300.1600,200.0000 L 371.8400,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 371.8400,200.0000 L 443.5200,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 443.5200,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="156.8000" cy="147.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="228.4800" cy="147.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="300.1600" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="371.8400" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="443.5200" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="515.2000" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 158.3000,223.1000 L 158.3000,201.5000 L 191.6000,201.5000 L 191.6000,223.1000 L 158.3000,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="158.8000" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="158.8000" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 229.9800,223.1000 L 229.9800,201.5000 L 263.2800,201.5000 L 263.2800,223.1000 L 229.9800,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="230.4800" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="230.4800" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 301.6600,223.1000 L 301.6600,201.5000 L 334.9600,201.5000 L 334.9600,223.1000 L 301.6600,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="302.1600" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="302.1600" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 373.3400,223.1000 L 373.3400,201.5000 L 406.6400,201.5000 L 406.6400,223.1000 L 373.3400,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="373.8400" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="373.8400" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 445.0200,223.1000 L 445.0200,201.5000 L 478.3200,201.5000 L 478.3200,223.1000 L 445.0200,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="445.5200" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="445.5200" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 480.9000,223.1000 L 480.9000,201.5000 L 514.2000,201.5000 L 514.2000,223.1000 L 480.9000,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="481.4000" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="507.0000" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26" transform="rotate( 62.21 156.8000 200.0000 )"><path d=" M 150.1000,211.0000 L 150.1000,199.5000 L 157.8000,199.5000 L 157.8000,211.0000 L 150.1000,211.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="150.6000" text-length="6.2000px" y="208.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29" transform="rotate( 62.21 156.8000 179.0242 )"><path d=" M 137.7000,190.0242 L 137.7000,178.5242 L 157.8000,178.5242 L 157.8000,190.0242 L 137.7000,190.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="138.2000" text-length="18.6000px" y="187.5242" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32" transform="rotate( 62.21 156.8000 158.0484 )"><path d=" M 137.7000,169.0484 L 137.7000,157.5484 L 157.8000,157.5484 L 157.8000,169.0484 L 137.7000,169.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="138.2000" text-length="18.6000px" y="166.5484" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35" transform="rotate( 62.21 156.8000 137.0726 )"><path d=" M 137.7000,148.0726 L 137.7000,136.5726 L 157.8000,136.5726 L 157.8000,148.0726 L 137.7000,148.0726 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="138.2000" text-length="18.6000px" y="145.5726" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38" transform="rotate( 62.21 156.8000 116.0968 )"><path d=" M 137.7000,127.0968 L 137.7000,115.5968 L 157.8000,115.5968 L 157.8000,127.0968 L 137.7000,127.0968 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="138.2000" text-length="18.6000px" y="124.5968" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41" transform="rotate( 62.21 156.8000 95.1210 )"><path d=" M 137.7000,106.1210 L 137.7000,94.6210 L 157.8000,94.6210 L 157.8000,106.1210 L 137.7000,106.1210 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="138.2000" text-length="18.6000px" y="103.6210" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_94.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_94.svg new file mode 100644 index 0000000..59df402 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_94.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,25.0000 L 560.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,21.0000 L 560.0000,25.0000 L 552.0000,29.0000 L 552.0000,21.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 228.4800,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 228.4800,22.0000 L 228.4800,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 300.1600,25.0000 L 300.1600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 300.1600,22.0000 L 300.1600,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 371.8400,25.0000 L 371.8400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 371.8400,22.0000 L 371.8400,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 443.5200,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 443.5200,22.0000 L 443.5200,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 515.2000,25.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 515.2000,22.0000 L 515.2000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 156.8000,0.0000 L 156.8000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 160.3000,243.0000 L 156.8000,250.0000 L 153.3000,243.0000 L 160.3000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 156.8000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 159.8000,95.1210 L 156.8000,95.1210" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 156.8000,116.0968 L 515.2000,116.0968" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 159.8000,116.0968 L 156.8000,116.0968" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,137.0726 L 515.2000,137.0726" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 159.8000,137.0726 L 156.8000,137.0726" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,158.0484 L 515.2000,158.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 159.8000,158.0484 L 156.8000,158.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 156.8000,179.0242 L 515.2000,179.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 159.8000,179.0242 L 156.8000,179.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 159.8000,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 156.8000,147.5605 L 156.8000,147.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 156.8000,147.5605 L 228.4800,147.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 228.4800,147.5605 L 300.1600,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 300.1600,95.1210 L 371.8400,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 371.8400,95.1210 L 443.5200,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 443.5200,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="156.8000" cy="147.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="228.4800" cy="147.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="300.1600" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="371.8400" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="443.5200" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="515.2000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 158.3000,48.1000 L 158.3000,26.5000 L 191.6000,26.5000 L 191.6000,48.1000 L 158.3000,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="158.8000" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="158.8000" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 229.9800,48.1000 L 229.9800,26.5000 L 263.2800,26.5000 L 263.2800,48.1000 L 229.9800,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="230.4800" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="230.4800" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 301.6600,48.1000 L 301.6600,26.5000 L 334.9600,26.5000 L 334.9600,48.1000 L 301.6600,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="302.1600" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="302.1600" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 373.3400,48.1000 L 373.3400,26.5000 L 406.6400,26.5000 L 406.6400,48.1000 L 373.3400,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="373.8400" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="373.8400" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 445.0200,48.1000 L 445.0200,26.5000 L 478.3200,26.5000 L 478.3200,48.1000 L 445.0200,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="445.5200" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="445.5200" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 480.9000,48.1000 L 480.9000,26.5000 L 514.2000,26.5000 L 514.2000,48.1000 L 480.9000,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="481.4000" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="507.0000" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26" transform="rotate( 62.21 156.8000 95.1210 )"><path d=" M 150.1000,106.1210 L 150.1000,94.6210 L 157.8000,94.6210 L 157.8000,106.1210 L 150.1000,106.1210 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="150.6000" text-length="6.2000px" y="103.6210" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29" transform="rotate( 62.21 156.8000 116.0968 )"><path d=" M 137.7000,127.0968 L 137.7000,115.5968 L 157.8000,115.5968 L 157.8000,127.0968 L 137.7000,127.0968 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="138.2000" text-length="18.6000px" y="124.5968" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32" transform="rotate( 62.21 156.8000 137.0726 )"><path d=" M 137.7000,148.0726 L 137.7000,136.5726 L 157.8000,136.5726 L 157.8000,148.0726 L 137.7000,148.0726 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="138.2000" text-length="18.6000px" y="145.5726" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35" transform="rotate( 62.21 156.8000 158.0484 )"><path d=" M 137.7000,169.0484 L 137.7000,157.5484 L 157.8000,157.5484 L 157.8000,169.0484 L 137.7000,169.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="138.2000" text-length="18.6000px" y="166.5484" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38" transform="rotate( 62.21 156.8000 179.0242 )"><path d=" M 137.7000,190.0242 L 137.7000,178.5242 L 157.8000,178.5242 L 157.8000,190.0242 L 137.7000,190.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="138.2000" text-length="18.6000px" y="187.5242" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41" transform="rotate( 62.21 156.8000 200.0000 )"><path d=" M 137.7000,211.0000 L 137.7000,199.5000 L 157.8000,199.5000 L 157.8000,211.0000 L 137.7000,211.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="138.2000" text-length="18.6000px" y="208.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_95.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_95.svg new file mode 100644 index 0000000..ad8e10e --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_95.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,200.0000 L 112.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,204.0000 L 112.0000,200.0000 L 120.0000,196.0000 L 120.0000,204.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 443.5200,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 443.5200,200.0000 L 443.5200,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 371.8400,25.0000 L 371.8400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 371.8400,200.0000 L 371.8400,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 300.1600,25.0000 L 300.1600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.1600,200.0000 L 300.1600,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 228.4800,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 228.4800,200.0000 L 228.4800,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 156.8000,25.0000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 156.8000,200.0000 L 156.8000,197.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,250.0000 L 515.2000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 512.2000,6.0000 L 515.2000,0.0000 L 518.2000,6.0000 L 512.2000,6.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 515.2000,200.0000 L 518.2000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 156.8000,179.0242 L 515.2000,179.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 515.2000,179.0242 L 518.2000,179.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,158.0484 L 515.2000,158.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 515.2000,158.0484 L 518.2000,158.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,137.0726 L 515.2000,137.0726" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 515.2000,137.0726 L 518.2000,137.0726" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 156.8000,116.0968 L 515.2000,116.0968" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 515.2000,116.0968 L 518.2000,116.0968" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 515.2000,95.1210 L 518.2000,95.1210" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 515.2000,147.5605 L 515.2000,147.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 515.2000,147.5605 L 443.5200,147.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 443.5200,147.5605 L 371.8400,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 371.8400,200.0000 L 300.1600,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 300.1600,200.0000 L 228.4800,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 228.4800,95.1210 L 156.8000,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="515.2000" cy="147.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="443.5200" cy="147.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="371.8400" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="300.1600" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="228.4800" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="156.8000" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 480.9000,223.1000 L 480.9000,201.5000 L 514.2000,201.5000 L 514.2000,223.1000 L 480.9000,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="481.4000" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="507.0000" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 409.2200,223.1000 L 409.2200,201.5000 L 442.5200,201.5000 L 442.5200,223.1000 L 409.2200,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="409.7200" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="435.3200" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 337.5400,223.1000 L 337.5400,201.5000 L 370.8400,201.5000 L 370.8400,223.1000 L 337.5400,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="338.0400" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="363.6400" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 265.8600,223.1000 L 265.8600,201.5000 L 299.1600,201.5000 L 299.1600,223.1000 L 265.8600,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="266.3600" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="291.9600" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 194.1800,223.1000 L 194.1800,201.5000 L 227.4800,201.5000 L 227.4800,223.1000 L 194.1800,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="194.6800" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="220.2800" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 158.3000,223.1000 L 158.3000,201.5000 L 191.6000,201.5000 L 191.6000,223.1000 L 158.3000,223.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="158.8000" text-length="31.8000px" y="210.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="158.8000" text-length="6.2000px" y="221.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26" transform="rotate( 62.21 515.2000 200.0000 )"><path d=" M 508.5000,211.0000 L 508.5000,199.5000 L 516.2000,199.5000 L 516.2000,211.0000 L 508.5000,211.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="509.0000" text-length="6.2000px" y="208.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29" transform="rotate( 62.21 515.2000 179.0242 )"><path d=" M 496.1000,190.0242 L 496.1000,178.5242 L 516.2000,178.5242 L 516.2000,190.0242 L 496.1000,190.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="496.6000" text-length="18.6000px" y="187.5242" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32" transform="rotate( 62.21 515.2000 158.0484 )"><path d=" M 496.1000,169.0484 L 496.1000,157.5484 L 516.2000,157.5484 L 516.2000,169.0484 L 496.1000,169.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="496.6000" text-length="18.6000px" y="166.5484" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35" transform="rotate( 62.21 515.2000 137.0726 )"><path d=" M 496.1000,148.0726 L 496.1000,136.5726 L 516.2000,136.5726 L 516.2000,148.0726 L 496.1000,148.0726 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="496.6000" text-length="18.6000px" y="145.5726" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38" transform="rotate( 62.21 515.2000 116.0968 )"><path d=" M 496.1000,127.0968 L 496.1000,115.5968 L 516.2000,115.5968 L 516.2000,127.0968 L 496.1000,127.0968 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="496.6000" text-length="18.6000px" y="124.5968" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41" transform="rotate( 62.21 515.2000 95.1210 )"><path d=" M 496.1000,106.1210 L 496.1000,94.6210 L 516.2000,94.6210 L 516.2000,106.1210 L 496.1000,106.1210 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="496.6000" text-length="18.6000px" y="103.6210" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_96.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_96.svg new file mode 100644 index 0000000..d597736 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_96.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,25.0000 L 112.0000,25.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,29.0000 L 112.0000,25.0000 L 120.0000,21.0000 L 120.0000,29.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 443.5200,25.0000 L 443.5200,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 443.5200,25.0000 L 443.5200,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 371.8400,25.0000 L 371.8400,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 371.8400,25.0000 L 371.8400,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 300.1600,25.0000 L 300.1600,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.1600,25.0000 L 300.1600,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 228.4800,25.0000 L 228.4800,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 228.4800,25.0000 L 228.4800,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 156.8000,25.0000 L 156.8000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 156.8000,25.0000 L 156.8000,22.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 515.2000,0.0000 L 515.2000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 518.7000,243.0000 L 515.2000,250.0000 L 511.7000,243.0000 L 518.7000,243.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 156.8000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 518.2000,95.1210 L 515.2000,95.1210" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 156.8000,116.0968 L 515.2000,116.0968" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 518.2000,116.0968 L 515.2000,116.0968" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 156.8000,137.0726 L 515.2000,137.0726" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 518.2000,137.0726 L 515.2000,137.0726" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 156.8000,158.0484 L 515.2000,158.0484" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 518.2000,158.0484 L 515.2000,158.0484" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 156.8000,179.0242 L 515.2000,179.0242" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 518.2000,179.0242 L 515.2000,179.0242" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 156.8000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 518.2000,200.0000 L 515.2000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 515.2000,147.5605 L 515.2000,147.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 515.2000,147.5605 L 443.5200,147.5605" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 443.5200,147.5605 L 371.8400,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 371.8400,95.1210 L 300.1600,95.1210" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 300.1600,95.1210 L 228.4800,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 228.4800,200.0000 L 156.8000,200.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><ellipse cx="515.2000" cy="147.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_50"/><ellipse cx="443.5200" cy="147.5605" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_51"/><ellipse cx="371.8400" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_52"/><ellipse cx="300.1600" cy="95.1210" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_53"/><ellipse cx="228.4800" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_54"/><ellipse cx="156.8000" cy="200.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_55"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 480.9000,48.1000 L 480.9000,26.5000 L 514.2000,26.5000 L 514.2000,48.1000 L 480.9000,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_57"/><text id="ezcGraphTextBox_8_text" x="481.4000" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_8_text" x="507.0000" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_11"><path d=" M 409.2200,48.1000 L 409.2200,26.5000 L 442.5200,26.5000 L 442.5200,48.1000 L 409.2200,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_58"/><text id="ezcGraphTextBox_11_text" x="409.7200" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_11_text" x="435.3200" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">2</text></g><g id="ezcGraphTextBox_14"><path d=" M 337.5400,48.1000 L 337.5400,26.5000 L 370.8400,26.5000 L 370.8400,48.1000 L 337.5400,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_59"/><text id="ezcGraphTextBox_14_text" x="338.0400" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_14_text" x="363.6400" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">3</text></g><g id="ezcGraphTextBox_17"><path d=" M 265.8600,48.1000 L 265.8600,26.5000 L 299.1600,26.5000 L 299.1600,48.1000 L 265.8600,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><text id="ezcGraphTextBox_17_text" x="266.3600" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_17_text" x="291.9600" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">4</text></g><g id="ezcGraphTextBox_20"><path d=" M 194.1800,48.1000 L 194.1800,26.5000 L 227.4800,26.5000 L 227.4800,48.1000 L 194.1800,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_61"/><text id="ezcGraphTextBox_20_text" x="194.6800" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_20_text" x="220.2800" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">5</text></g><g id="ezcGraphTextBox_23"><path d=" M 158.3000,48.1000 L 158.3000,26.5000 L 191.6000,26.5000 L 191.6000,48.1000 L 158.3000,48.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_62"/><text id="ezcGraphTextBox_23_text" x="158.8000" text-length="31.8000px" y="35.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample</text><text id="ezcGraphTextBox_23_text" x="158.8000" text-length="6.2000px" y="46.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">6</text></g><g id="ezcGraphTextBox_26" transform="rotate( 62.21 515.2000 95.1210 )"><path d=" M 508.5000,106.1210 L 508.5000,94.6210 L 516.2000,94.6210 L 516.2000,106.1210 L 508.5000,106.1210 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_63"/><text id="ezcGraphTextBox_26_text" x="509.0000" text-length="6.2000px" y="103.6210" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_29" transform="rotate( 62.21 515.2000 116.0968 )"><path d=" M 496.1000,127.0968 L 496.1000,115.5968 L 516.2000,115.5968 L 516.2000,127.0968 L 496.1000,127.0968 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><text id="ezcGraphTextBox_29_text" x="496.6000" text-length="18.6000px" y="124.5968" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_32" transform="rotate( 62.21 515.2000 137.0726 )"><path d=" M 496.1000,148.0726 L 496.1000,136.5726 L 516.2000,136.5726 L 516.2000,148.0726 L 496.1000,148.0726 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_65"/><text id="ezcGraphTextBox_32_text" x="496.6000" text-length="18.6000px" y="145.5726" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_35" transform="rotate( 62.21 515.2000 158.0484 )"><path d=" M 496.1000,169.0484 L 496.1000,157.5484 L 516.2000,157.5484 L 516.2000,169.0484 L 496.1000,169.0484 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_66"/><text id="ezcGraphTextBox_35_text" x="496.6000" text-length="18.6000px" y="166.5484" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_38" transform="rotate( 62.21 515.2000 179.0242 )"><path d=" M 496.1000,190.0242 L 496.1000,178.5242 L 516.2000,178.5242 L 516.2000,190.0242 L 496.1000,190.0242 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_67"/><text id="ezcGraphTextBox_38_text" x="496.6000" text-length="18.6000px" y="187.5242" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_41" transform="rotate( 62.21 515.2000 200.0000 )"><path d=" M 496.1000,211.0000 L 496.1000,199.5000 L 516.2000,199.5000 L 516.2000,211.0000 L 496.1000,211.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><text id="ezcGraphTextBox_41_text" x="496.6000" text-length="18.6000px" y="208.5000" style="font-size: 10px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_97.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_97.svg new file mode 100644 index 0000000..107667e --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_97.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,225.0000 L 560.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,221.0000 L 560.0000,225.0000 L 552.0000,229.0000 L 552.0000,221.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 257.6000,12.5000 L 257.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 257.6000,222.0000 L 257.6000,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 313.6000,12.5000 L 313.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 313.6000,222.0000 L 313.6000,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 369.6000,12.5000 L 369.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 369.6000,222.0000 L 369.6000,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 425.6000,12.5000 L 425.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 425.6000,222.0000 L 425.6000,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 481.6000,12.5000 L 481.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 481.6000,222.0000 L 481.6000,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 537.6000,222.0000 L 537.6000,228.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 201.6000,250.0000 L 201.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 197.6000,8.0000 L 201.6000,0.0000 L 205.6000,8.0000 L 197.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 201.6000,214.3750 L 202.6000,214.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 201.6000,203.7500 L 202.6000,203.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 201.6000,193.1250 L 202.6000,193.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 201.6000,182.5000 L 204.6000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 201.6000,171.8750 L 202.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 201.6000,161.2500 L 202.6000,161.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 201.6000,150.6250 L 202.6000,150.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 201.6000,140.0000 L 204.6000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 201.6000,129.3750 L 202.6000,129.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 201.6000,118.7500 L 202.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 201.6000,108.1250 L 202.6000,108.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 201.6000,97.5000 L 204.6000,97.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 201.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 201.6000,86.8750 L 202.6000,86.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 201.6000,76.2500 L 202.6000,76.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 201.6000,65.6250 L 202.6000,65.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 201.6000,55.0000 L 204.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 201.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 201.6000,44.3750 L 202.6000,44.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 201.6000,33.7500 L 202.6000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 201.6000,23.1250 L 202.6000,23.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 201.6000,12.5000 L 204.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 229.6000,118.7500 L 229.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 229.6000,118.7500 L 285.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 285.6000,118.7500 L 341.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 341.6000,225.0000 L 397.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 397.6000,225.0000 L 453.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 453.6000,12.5000 L 509.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="229.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="285.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="341.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="397.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="453.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="509.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 210.0200,237.0000 L 210.0200,226.5000 L 249.6800,226.5000 L 249.6800,237.0000 L 210.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="210.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_11"><path d=" M 266.0200,237.0000 L 266.0200,226.5000 L 305.6800,226.5000 L 305.6800,237.0000 L 266.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="266.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 322.0200,237.0000 L 322.0200,226.5000 L 361.6800,226.5000 L 361.6800,237.0000 L 322.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="322.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_17"><path d=" M 378.0200,237.0000 L 378.0200,226.5000 L 417.6800,226.5000 L 417.6800,237.0000 L 378.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="378.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_20"><path d=" M 434.0200,237.0000 L 434.0200,226.5000 L 473.6800,226.5000 L 473.6800,237.0000 L 434.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="434.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_23"><path d=" M 490.0200,237.0000 L 490.0200,226.5000 L 529.6800,226.5000 L 529.6800,237.0000 L 490.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="490.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_36"><path d=" M 182.3600,188.0000 L 182.3600,177.5000 L 200.6000,177.5000 L 200.6000,188.0000 L 182.3600,188.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="182.8600" text-length="16.7400px" y="185.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 182.3600,145.5000 L 182.3600,135.0000 L 200.6000,135.0000 L 200.6000,145.5000 L 182.3600,145.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="182.8600" text-length="16.7400px" y="143.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 182.3600,103.0000 L 182.3600,92.5000 L 200.6000,92.5000 L 200.6000,103.0000 L 182.3600,103.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="182.8600" text-length="16.7400px" y="100.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 182.3600,60.5000 L 182.3600,50.0000 L 200.6000,50.0000 L 200.6000,60.5000 L 182.3600,60.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="182.8600" text-length="16.7400px" y="58.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 182.3600,18.0000 L 182.3600,7.5000 L 200.6000,7.5000 L 200.6000,18.0000 L 182.3600,18.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="182.8600" text-length="16.7400px" y="15.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_98.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_98.svg new file mode 100644 index 0000000..8d15e3b --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_98.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 112.0000,12.5000 L 560.0000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 552.0000,8.5000 L 560.0000,12.5000 L 552.0000,16.5000 L 552.0000,8.5000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 257.6000,12.5000 L 257.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 257.6000,9.5000 L 257.6000,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 313.6000,12.5000 L 313.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 313.6000,9.5000 L 313.6000,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 369.6000,12.5000 L 369.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 369.6000,9.5000 L 369.6000,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 425.6000,12.5000 L 425.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 425.6000,9.5000 L 425.6000,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 481.6000,12.5000 L 481.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 481.6000,9.5000 L 481.6000,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 537.6000,12.5000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 537.6000,9.5000 L 537.6000,15.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 201.6000,0.0000 L 201.6000,250.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 205.6000,242.0000 L 201.6000,250.0000 L 197.6000,242.0000 L 205.6000,242.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 202.6000,23.1250 L 201.6000,23.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 202.6000,33.7500 L 201.6000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 202.6000,44.3750 L 201.6000,44.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 204.6000,55.0000 L 201.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 202.6000,65.6250 L 201.6000,65.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 202.6000,76.2500 L 201.6000,76.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 202.6000,86.8750 L 201.6000,86.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 204.6000,97.5000 L 201.6000,97.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 202.6000,108.1250 L 201.6000,108.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 202.6000,118.7500 L 201.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 202.6000,129.3750 L 201.6000,129.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 204.6000,140.0000 L 201.6000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 201.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 202.6000,150.6250 L 201.6000,150.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 202.6000,161.2500 L 201.6000,161.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 202.6000,171.8750 L 201.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 204.6000,182.5000 L 201.6000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 201.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 202.6000,193.1250 L 201.6000,193.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 202.6000,203.7500 L 201.6000,203.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 202.6000,214.3750 L 201.6000,214.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,225.0000 L 537.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 204.6000,225.0000 L 201.6000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 229.6000,118.7500 L 229.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 229.6000,118.7500 L 285.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 285.6000,118.7500 L 341.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 341.6000,12.5000 L 397.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 397.6000,12.5000 L 453.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 453.6000,225.0000 L 509.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="229.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="285.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="341.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="397.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="453.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="509.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 210.0200,24.5000 L 210.0200,14.0000 L 249.6800,14.0000 L 249.6800,24.5000 L 210.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="210.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_11"><path d=" M 266.0200,24.5000 L 266.0200,14.0000 L 305.6800,14.0000 L 305.6800,24.5000 L 266.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="266.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 322.0200,24.5000 L 322.0200,14.0000 L 361.6800,14.0000 L 361.6800,24.5000 L 322.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="322.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_17"><path d=" M 378.0200,24.5000 L 378.0200,14.0000 L 417.6800,14.0000 L 417.6800,24.5000 L 378.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="378.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_20"><path d=" M 434.0200,24.5000 L 434.0200,14.0000 L 473.6800,14.0000 L 473.6800,24.5000 L 434.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="434.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_23"><path d=" M 490.0200,24.5000 L 490.0200,14.0000 L 529.6800,14.0000 L 529.6800,24.5000 L 490.0200,24.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="490.5200" text-length="38.1600px" y="22.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_36"><path d=" M 182.3600,60.5000 L 182.3600,50.0000 L 200.6000,50.0000 L 200.6000,60.5000 L 182.3600,60.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="182.8600" text-length="16.7400px" y="58.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 182.3600,103.0000 L 182.3600,92.5000 L 200.6000,92.5000 L 200.6000,103.0000 L 182.3600,103.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="182.8600" text-length="16.7400px" y="100.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 182.3600,145.5000 L 182.3600,135.0000 L 200.6000,135.0000 L 200.6000,145.5000 L 182.3600,145.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="182.8600" text-length="16.7400px" y="143.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 182.3600,188.0000 L 182.3600,177.5000 L 200.6000,177.5000 L 200.6000,188.0000 L 182.3600,188.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="182.8600" text-length="16.7400px" y="185.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 182.3600,230.5000 L 182.3600,220.0000 L 200.6000,220.0000 L 200.6000,230.5000 L 182.3600,230.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="182.8600" text-length="16.7400px" y="228.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_99.svg b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_99.svg new file mode 100644 index 0000000..6779ec0 --- /dev/null +++ b/tests/data/compare/ezcGraphAxisSpaceTest_testAxisSpaceConfiguration_99.svg @@ -0,0 +1,2 @@ +<?xml version="1.0"?> +<svg xmlns="http://www.w3.org/2000/svg" width="560" height="250" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,250.0000 L 0.0000,0.0000 L 560.0000,0.0000 L 560.0000,250.0000 L 0.0000,250.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,249.0000 L 1.0000,1.0000 L 111.0000,1.0000 L 111.0000,249.0000 L 1.0000,249.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.5000,1.5000 L 110.5000,1.5000 L 110.5000,248.5000 L 1.5000,248.5000 L 1.5000,1.5000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11.0000" cy="11.0000" rx="7.0000" ry="7.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 560.0000,225.0000 L 112.0000,225.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 120.0000,229.0000 L 112.0000,225.0000 L 120.0000,221.0000 L 120.0000,229.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 481.6000,12.5000 L 481.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 481.6000,228.0000 L 481.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 425.6000,12.5000 L 425.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 425.6000,228.0000 L 425.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 369.6000,12.5000 L 369.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 369.6000,228.0000 L 369.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 313.6000,12.5000 L 313.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 313.6000,228.0000 L 313.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 257.6000,12.5000 L 257.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 257.6000,228.0000 L 257.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 201.6000,12.5000 L 201.6000,225.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 201.6000,228.0000 L 201.6000,222.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 537.6000,250.0000 L 537.6000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 533.6000,8.0000 L 537.6000,0.0000 L 541.6000,8.0000 L 533.6000,8.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 201.6000,214.3750 L 537.6000,214.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 537.6000,214.3750 L 538.6000,214.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 201.6000,203.7500 L 537.6000,203.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 537.6000,203.7500 L 538.6000,203.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 201.6000,193.1250 L 537.6000,193.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 537.6000,193.1250 L 538.6000,193.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 201.6000,182.5000 L 537.6000,182.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 537.6000,182.5000 L 540.6000,182.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 201.6000,171.8750 L 537.6000,171.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 537.6000,171.8750 L 538.6000,171.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 201.6000,161.2500 L 537.6000,161.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 537.6000,161.2500 L 538.6000,161.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 201.6000,150.6250 L 537.6000,150.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 537.6000,150.6250 L 538.6000,150.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 201.6000,140.0000 L 537.6000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 537.6000,140.0000 L 540.6000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 201.6000,129.3750 L 537.6000,129.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 537.6000,129.3750 L 538.6000,129.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 201.6000,118.7500 L 537.6000,118.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 537.6000,118.7500 L 538.6000,118.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 201.6000,108.1250 L 537.6000,108.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 537.6000,108.1250 L 538.6000,108.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 201.6000,97.5000 L 537.6000,97.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 537.6000,97.5000 L 540.6000,97.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 201.6000,86.8750 L 537.6000,86.8750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 537.6000,86.8750 L 538.6000,86.8750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 201.6000,76.2500 L 537.6000,76.2500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 537.6000,76.2500 L 538.6000,76.2500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 201.6000,65.6250 L 537.6000,65.6250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 537.6000,65.6250 L 538.6000,65.6250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 201.6000,55.0000 L 537.6000,55.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 537.6000,55.0000 L 540.6000,55.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 201.6000,44.3750 L 537.6000,44.3750" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 537.6000,44.3750 L 538.6000,44.3750" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 201.6000,33.7500 L 537.6000,33.7500" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 537.6000,33.7500 L 538.6000,33.7500" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 201.6000,23.1250 L 537.6000,23.1250" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 537.6000,23.1250 L 538.6000,23.1250" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 201.6000,12.5000 L 537.6000,12.5000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 537.6000,12.5000 L 540.6000,12.5000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 509.6000,118.7500 L 509.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 509.6000,118.7500 L 453.6000,118.7500" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 453.6000,118.7500 L 397.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 397.6000,225.0000 L 341.6000,225.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_76"/><path d=" M 341.6000,225.0000 L 285.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 285.6000,12.5000 L 229.6000,12.5000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><ellipse cx="509.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="453.6000" cy="118.7500" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="397.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="341.6000" cy="225.0000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="285.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="229.6000" cy="12.5000" rx="3.0000" ry="3.0000" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 94.2000,3.5000 L 94.2000,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_5_text" x="19.0000" text-length="74.2000px" y="15.9000" style="font-size: 14px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sampleData</text></g><g id="ezcGraphTextBox_8"><path d=" M 490.0200,237.0000 L 490.0200,226.5000 L 529.6800,226.5000 L 529.6800,237.0000 L 490.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_8_text" x="490.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_11"><path d=" M 434.0200,237.0000 L 434.0200,226.5000 L 473.6800,226.5000 L 473.6800,237.0000 L 434.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_11_text" x="434.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 378.0200,237.0000 L 378.0200,226.5000 L 417.6800,226.5000 L 417.6800,237.0000 L 378.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="378.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_17"><path d=" M 322.0200,237.0000 L 322.0200,226.5000 L 361.6800,226.5000 L 361.6800,237.0000 L 322.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="322.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_20"><path d=" M 266.0200,237.0000 L 266.0200,226.5000 L 305.6800,226.5000 L 305.6800,237.0000 L 266.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="266.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_23"><path d=" M 210.0200,237.0000 L 210.0200,226.5000 L 249.6800,226.5000 L 249.6800,237.0000 L 210.0200,237.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="210.5200" text-length="38.1600px" y="234.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 6</text></g><g id="ezcGraphTextBox_36"><path d=" M 518.3600,188.0000 L 518.3600,177.5000 L 536.6000,177.5000 L 536.6000,188.0000 L 518.3600,188.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_36_text" x="518.8600" text-length="16.7400px" y="185.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_45"><path d=" M 518.3600,145.5000 L 518.3600,135.0000 L 536.6000,135.0000 L 536.6000,145.5000 L 518.3600,145.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_45_text" x="518.8600" text-length="16.7400px" y="143.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_54"><path d=" M 518.3600,103.0000 L 518.3600,92.5000 L 536.6000,92.5000 L 536.6000,103.0000 L 518.3600,103.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_54_text" x="518.8600" text-length="16.7400px" y="100.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_63"><path d=" M 518.3600,60.5000 L 518.3600,50.0000 L 536.6000,50.0000 L 536.6000,60.5000 L 518.3600,60.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_63_text" x="518.8600" text-length="16.7400px" y="58.1500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_72"><path d=" M 518.3600,18.0000 L 518.3600,7.5000 L 536.6000,7.5000 L 536.6000,18.0000 L 518.3600,18.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_72_text" x="518.8600" text-length="16.7400px" y="15.6500" style="font-size: 9px; font-family: 'sans-serif'; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg> diff --git a/tests/suite.php b/tests/suite.php index de5148f..7268d04 100644 --- a/tests/suite.php +++ b/tests/suite.php @@ -16,6 +16,7 @@ require_once 'axis_centered_renderer_test.php'; require_once 'axis_exact_renderer_test.php'; require_once 'axis_boxed_renderer_test.php'; require_once 'axis_rotated_renderer_test.php'; +require_once 'axis_space_test.php'; require_once 'background_test.php'; require_once 'boundings_test.php'; require_once 'chart_test.php'; @@ -73,6 +74,7 @@ class ezcGraphSuite extends PHPUnit_Framework_TestSuite $this->addTest( ezcGraphAxisExactRendererTest::suite() ); $this->addTest( ezcGraphAxisBoxedRendererTest::suite() ); $this->addTest( ezcGraphAxisRotatedRendererTest::suite() ); + $this->addTest( ezcGraphAxisSpaceTest::suite() ); $this->addTest( ezcGraphBackgroundTest::suite() ); $this->addTest( ezcGraphBoundingsTest::suite() ); $this->addTest( ezcGraphChartTest::suite() ); |