diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2007-09-04 08:33:19 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2007-09-04 08:33:19 +0000 |
commit | c61ea3b2139f5b388ebc8b99b891b0b7ea41524d (patch) | |
tree | adad71e494d5956a75ee1fd5c0a5ee7690ef16e5 /src/graph_autoload.php | |
parent | 00c581fadaa2bdd638aa7f5cf0c97b3a26ba2bfe (diff) | |
download | zetacomponents-graph-c61ea3b2139f5b388ebc8b99b891b0b7ea41524d.zip zetacomponents-graph-c61ea3b2139f5b388ebc8b99b891b0b7ea41524d.tar.gz |
- Added axis container class
# First step to support multiple axis
Diffstat (limited to 'src/graph_autoload.php')
-rw-r--r-- | src/graph_autoload.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/graph_autoload.php b/src/graph_autoload.php index 5bc8507..495d77d 100644 --- a/src/graph_autoload.php +++ b/src/graph_autoload.php @@ -12,13 +12,13 @@ return array( 'ezcGraphException' => 'Graph/exceptions/exception.php', 'ezcGraphDatasetAverageInvalidKeysException' => 'Graph/exceptions/invalid_keys.php', - 'ezcGraphReducementFailedException' => 'Graph/exceptions/reducement_failed.php', 'ezcGraphErrorParsingDateException' => 'Graph/exceptions/date_parsing.php', 'ezcGraphFlashBitmapBoundingsException' => 'Graph/exceptions/flash_bitmap_boundings.php', 'ezcGraphFlashBitmapTypeException' => 'Graph/exceptions/flash_bitmap_type.php', 'ezcGraphFontRenderingException' => 'Graph/exceptions/font_rendering.php', 'ezcGraphGdDriverUnsupportedImageTypeException' => 'Graph/exceptions/unsupported_image_type.php', 'ezcGraphInvalidArrayDataSourceException' => 'Graph/exceptions/invalid_data_source.php', + 'ezcGraphInvalidDataException' => 'Graph/exceptions/invalid_data.php', 'ezcGraphInvalidDisplayTypeException' => 'Graph/exceptions/invalid_display_type.php', 'ezcGraphInvalidFontTypeException' => 'Graph/exceptions/invalid_font.php', 'ezcGraphInvalidImageFileException' => 'Graph/exceptions/invalid_image_file.php', @@ -29,6 +29,7 @@ return array( 'ezcGraphNoSuchDataSetException' => 'Graph/exceptions/no_such_dataset.php', 'ezcGraphNoSuchElementException' => 'Graph/exceptions/no_such_element.php', 'ezcGraphOutOfLogithmicalBoundingsException' => 'Graph/exceptions/out_of_logarithmical_boundings.php', + 'ezcGraphReducementFailedException' => 'Graph/exceptions/reducement_failed.php', 'ezcGraphSvgDriverInvalidIdException' => 'Graph/exceptions/invalid_id.php', 'ezcGraphTooManyDataSetsExceptions' => 'Graph/exceptions/too_many_datasets.php', 'ezcGraphToolsIncompatibleDriverException' => 'Graph/exceptions/incompatible_driver.php', @@ -36,7 +37,6 @@ return array( 'ezcGraphUnknownColorDefinitionException' => 'Graph/exceptions/unknown_color_definition.php', 'ezcGraphUnknownFontTypeException' => 'Graph/exceptions/font_type.php', 'ezcGraphUnregularStepsException' => 'Graph/exceptions/unregular_steps.php', - 'ezcGraphInvalidDataException' => 'Graph/exceptions/invalid_data.php', 'ezcGraphChart' => 'Graph/interfaces/chart.php', 'ezcGraphChartElement' => 'Graph/interfaces/element.php', 'ezcGraphChartOptions' => 'Graph/options/chart.php', @@ -60,6 +60,7 @@ return array( 'ezcGraphArrayDataSet' => 'Graph/datasets/array.php', 'ezcGraphAxisBoxedLabelRenderer' => 'Graph/renderer/axis_label_boxed.php', 'ezcGraphAxisCenteredLabelRenderer' => 'Graph/renderer/axis_label_centered.php', + 'ezcGraphAxisContainer' => 'Graph/axis/container.php', 'ezcGraphAxisExactLabelRenderer' => 'Graph/renderer/axis_label_exact.php', 'ezcGraphAxisNoLabelRenderer' => 'Graph/renderer/axis_label_none.php', 'ezcGraphAxisRadarLabelRenderer' => 'Graph/renderer/axis_label_radar.php', @@ -108,6 +109,7 @@ return array( 'ezcGraphRotation' => 'Graph/math/rotation.php', 'ezcGraphSvgDriver' => 'Graph/driver/svg.php', 'ezcGraphSvgDriverOptions' => 'Graph/options/svg_driver.php', + 'ezcGraphTerm' => 'Graph/math/term.php', 'ezcGraphTools' => 'Graph/tools.php', 'ezcGraphTranslation' => 'Graph/math/translation.php', 'ezcGraphVector' => 'Graph/math/vector.php', |