Group
Extension

AsposeCellsCloud-CellsApi/lib/AsposeCellsCloud/Object/Axis.pm

=begin comment

Copyright (c) 2025 Aspose.Cells Cloud
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all 
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

=end comment

=cut

package AsposeCellsCloud::Object::Axis;

require 5.6.0;
use strict;
use warnings;
use utf8;
use JSON qw(decode_json);
use Data::Dumper;
use Module::Runtime qw(use_module);
use Log::Any qw($log);
use Date::Parse;
use DateTime;
use AsposeCellsCloud::Object::Area;
use AsposeCellsCloud::Object::DisplayUnitLabel;
use AsposeCellsCloud::Object::Line;
use AsposeCellsCloud::Object::Link;
use AsposeCellsCloud::Object::LinkElement;
use AsposeCellsCloud::Object::TickLabels;
use AsposeCellsCloud::Object::Title; 


use base ("Class::Accessor", "Class::Data::Inheritable");



__PACKAGE__->mk_classdata('attribute_map' => {});
__PACKAGE__->mk_classdata('swagger_types' => {});
__PACKAGE__->mk_classdata('method_documentation' => {}); 
__PACKAGE__->mk_classdata('class_documentation' => {});

# new object
sub new { 
    my ($class, %args) = @_; 

	my $self = bless {}, $class;

	foreach my $attribute (keys %{$class->attribute_map}) {
		my $args_key = $class->attribute_map->{$attribute};
		$self->$attribute( $args{ $args_key } );
	}

	return $self;
}  

# return perl hash
sub to_hash {
    return decode_json(JSON->new->convert_blessed->encode( shift ));
}

# used by JSON for serialization
sub TO_JSON { 
    my $self = shift;
    my $_data = {};
    foreach my $_key (keys %{$self->attribute_map}) {
        if (defined $self->{$_key}) {
            $_data->{$self->attribute_map->{$_key}} = $self->{$_key};
        }
    }
    return $_data;
}

# from Perl hashref
sub from_hash {
    my ($self, $hash) = @_;

    # loop through attributes and use swagger_types to deserialize the data
    while ( my ($_key, $_type) = each %{$self->swagger_types} ) {
    	my $_json_attribute = $self->attribute_map->{$_key}; 
        if ($_type =~ /^array\[/i) { # array
            my $_subclass = substr($_type, 6, -1);
            my @_array = ();
            foreach my $_element (@{$hash->{$_json_attribute}}) {
                push @_array, $self->_deserialize($_subclass, $_element);
            }
            $self->{$_key} = \@_array;
        } elsif (exists $hash->{$_json_attribute}) { #hash(model), primitive, datetime
            $self->{$_key} = $self->_deserialize($_type, $hash->{$_json_attribute});
        } else {
        	$log->debugf("Warning: %s (%s) does not exist in input hash\n", $_key, $_json_attribute);
        }
    }

    return $self;
}

# deserialize non-array data
sub _deserialize {
    my ($self, $type, $data) = @_;
    $log->debugf("deserializing %s with %s",Dumper($data), $type);

    if ($type eq 'DateTime') {
        return DateTime->from_epoch(epoch => str2time($data));
    } elsif ( grep( /^$type$/, ('int', 'double', 'string', 'boolean'))) {
        return $data;
    } else { # hash(model)
        my $_instance = eval "AsposeCellsCloud::Object::$type->new()";
        return $_instance->from_hash($data);
    }
}


__PACKAGE__->class_documentation({description => 'Encapsulates the object that represents an axis of chart.',
                                  class => 'Axis',
                                  required => [], # TODO
}                                 );


__PACKAGE__->method_documentation({
     'area' => {
     	datatype => 'Area',
     	base_name => 'Area',
     	description => 'Gets the .',
     	format => '',
     	read_only => '',
     		},
     'axis_between_categories' => {
     	datatype => 'boolean',
     	base_name => 'AxisBetweenCategories',
     	description => 'Represents if the value axis crosses the category axis between categories.',
     	format => '',
     	read_only => '',
     		},
     'axis_line' => {
     	datatype => 'Line',
     	base_name => 'AxisLine',
     	description => 'Gets the appearance of an Axis.',
     	format => '',
     	read_only => '',
     		},
     'base_unit_scale' => {
     	datatype => 'string',
     	base_name => 'BaseUnitScale',
     	description => 'Represents the base unit scale for the category axis.',
     	format => '',
     	read_only => '',
     		},
     'category_type' => {
     	datatype => 'string',
     	base_name => 'CategoryType',
     	description => 'Represents the category axis type.',
     	format => '',
     	read_only => '',
     		},
     'cross_at' => {
     	datatype => 'double',
     	base_name => 'CrossAt',
     	description => 'Represents the point on the value axis where the category axis crosses it.',
     	format => '',
     	read_only => '',
     		},
     'cross_type' => {
     	datatype => 'string',
     	base_name => 'CrossType',
     	description => 'Represents the  on the specified axis where the other axis crosses.',
     	format => '',
     	read_only => '',
     		},
     'display_unit' => {
     	datatype => 'string',
     	base_name => 'DisplayUnit',
     	description => 'Represents the unit label for the specified axis.',
     	format => '',
     	read_only => '',
     		},
     'display_unit_label' => {
     	datatype => 'DisplayUnitLabel',
     	base_name => 'DisplayUnitLabel',
     	description => 'Represents a unit label on an axis in the specified chart.                         Unit labels are useful for charting large values— for example, in the millions or billions.',
     	format => '',
     	read_only => '',
     		},
     'has_multi_level_labels' => {
     	datatype => 'boolean',
     	base_name => 'HasMultiLevelLabels',
     	description => 'Indicates whether the labels shall be shown as multi level.',
     	format => '',
     	read_only => '',
     		},
     'is_automatic_major_unit' => {
     	datatype => 'boolean',
     	base_name => 'IsAutomaticMajorUnit',
     	description => 'Indicates whether the major unit of the axis is automatically assigned.',
     	format => '',
     	read_only => '',
     		},
     'is_automatic_max_value' => {
     	datatype => 'boolean',
     	base_name => 'IsAutomaticMaxValue',
     	description => 'Indicates whether the max value is automatically assigned.',
     	format => '',
     	read_only => '',
     		},
     'is_automatic_minor_unit' => {
     	datatype => 'boolean',
     	base_name => 'IsAutomaticMinorUnit',
     	description => 'Indicates whether the minor unit of the axis is automatically assigned.',
     	format => '',
     	read_only => '',
     		},
     'is_automatic_min_value' => {
     	datatype => 'boolean',
     	base_name => 'IsAutomaticMinValue',
     	description => 'Indicates whether the min value is automatically assigned.',
     	format => '',
     	read_only => '',
     		},
     'is_display_unit_label_shown' => {
     	datatype => 'boolean',
     	base_name => 'IsDisplayUnitLabelShown',
     	description => 'Represents if the display unit label is shown on the specified axis.',
     	format => '',
     	read_only => '',
     		},
     'is_logarithmic' => {
     	datatype => 'boolean',
     	base_name => 'IsLogarithmic',
     	description => 'Represents if the value axis scale type is logarithmic or not.',
     	format => '',
     	read_only => '',
     		},
     'is_plot_order_reversed' => {
     	datatype => 'boolean',
     	base_name => 'IsPlotOrderReversed',
     	description => 'Represents if Microsoft Excel plots data points from last to first.',
     	format => '',
     	read_only => '',
     		},
     'is_visible' => {
     	datatype => 'boolean',
     	base_name => 'IsVisible',
     	description => 'Represents if the axis is visible.',
     	format => '',
     	read_only => '',
     		},
     'log_base' => {
     	datatype => 'double',
     	base_name => 'LogBase',
     	description => 'Represents the logarithmic base. Default value is 10.Only applies for Excel2007.',
     	format => '',
     	read_only => '',
     		},
     'major_grid_lines' => {
     	datatype => 'Line',
     	base_name => 'MajorGridLines',
     	description => 'Represents major gridlines on a chart axis.',
     	format => '',
     	read_only => '',
     		},
     'major_tick_mark' => {
     	datatype => 'string',
     	base_name => 'MajorTickMark',
     	description => 'Represents the type of major tick mark for the specified axis.',
     	format => '',
     	read_only => '',
     		},
     'major_unit' => {
     	datatype => 'double',
     	base_name => 'MajorUnit',
     	description => 'Represents the major units for the axis.',
     	format => '',
     	read_only => '',
     		},
     'major_unit_scale' => {
     	datatype => 'string',
     	base_name => 'MajorUnitScale',
     	description => 'Represents the major unit scale for the category axis.',
     	format => '',
     	read_only => '',
     		},
     'max_value' => {
     	datatype => 'double',
     	base_name => 'MaxValue',
     	description => 'Represents the maximum value on the value axis.',
     	format => '',
     	read_only => '',
     		},
     'minor_grid_lines' => {
     	datatype => 'Line',
     	base_name => 'MinorGridLines',
     	description => 'Represents minor gridlines on a chart axis.',
     	format => '',
     	read_only => '',
     		},
     'minor_tick_mark' => {
     	datatype => 'string',
     	base_name => 'MinorTickMark',
     	description => 'Represents the type of minor tick mark for the specified axis.',
     	format => '',
     	read_only => '',
     		},
     'minor_unit' => {
     	datatype => 'double',
     	base_name => 'MinorUnit',
     	description => 'Represents the minor units for the axis.',
     	format => '',
     	read_only => '',
     		},
     'minor_unit_scale' => {
     	datatype => 'string',
     	base_name => 'MinorUnitScale',
     	description => 'Represents the major unit scale for the category axis.',
     	format => '',
     	read_only => '',
     		},
     'min_value' => {
     	datatype => 'double',
     	base_name => 'MinValue',
     	description => 'Represents the minimum value on the value axis.',
     	format => '',
     	read_only => '',
     		},
     'tick_label_position' => {
     	datatype => 'string',
     	base_name => 'TickLabelPosition',
     	description => 'Represents the position of tick-mark labels on the specified axis.',
     	format => '',
     	read_only => '',
     		},
     'tick_labels' => {
     	datatype => 'TickLabels',
     	base_name => 'TickLabels',
     	description => 'Returns a  object that represents the tick-mark labels for the specified axis.',
     	format => '',
     	read_only => '',
     		},
     'tick_label_spacing' => {
     	datatype => 'int',
     	base_name => 'TickLabelSpacing',
     	description => 'Represents the number of categories or series between tick-mark labels. Applies only to category and series axes.',
     	format => '',
     	read_only => '',
     		},
     'tick_mark_spacing' => {
     	datatype => 'int',
     	base_name => 'TickMarkSpacing',
     	description => 'Returns or sets the number of categories or series between tick marks. Applies only to category and series axes.',
     	format => '',
     	read_only => '',
     		},
     'title' => {
     	datatype => 'Title',
     	base_name => 'Title',
     	description => 'Gets the axis` title.',
     	format => '',
     	read_only => '',
     		},
     'link' => {
     	datatype => 'Link',
     	base_name => 'link',
     	description => '',
     	format => '',
     	read_only => '',
     		},    
});

__PACKAGE__->swagger_types( {
    'area' => 'Area',
    'axis_between_categories' => 'boolean',
    'axis_line' => 'Line',
    'base_unit_scale' => 'string',
    'category_type' => 'string',
    'cross_at' => 'double',
    'cross_type' => 'string',
    'display_unit' => 'string',
    'display_unit_label' => 'DisplayUnitLabel',
    'has_multi_level_labels' => 'boolean',
    'is_automatic_major_unit' => 'boolean',
    'is_automatic_max_value' => 'boolean',
    'is_automatic_minor_unit' => 'boolean',
    'is_automatic_min_value' => 'boolean',
    'is_display_unit_label_shown' => 'boolean',
    'is_logarithmic' => 'boolean',
    'is_plot_order_reversed' => 'boolean',
    'is_visible' => 'boolean',
    'log_base' => 'double',
    'major_grid_lines' => 'Line',
    'major_tick_mark' => 'string',
    'major_unit' => 'double',
    'major_unit_scale' => 'string',
    'max_value' => 'double',
    'minor_grid_lines' => 'Line',
    'minor_tick_mark' => 'string',
    'minor_unit' => 'double',
    'minor_unit_scale' => 'string',
    'min_value' => 'double',
    'tick_label_position' => 'string',
    'tick_labels' => 'TickLabels',
    'tick_label_spacing' => 'int',
    'tick_mark_spacing' => 'int',
    'title' => 'Title',
    'link' => 'Link' 
} );

__PACKAGE__->attribute_map( {
    'area' => 'Area',
    'axis_between_categories' => 'AxisBetweenCategories',
    'axis_line' => 'AxisLine',
    'base_unit_scale' => 'BaseUnitScale',
    'category_type' => 'CategoryType',
    'cross_at' => 'CrossAt',
    'cross_type' => 'CrossType',
    'display_unit' => 'DisplayUnit',
    'display_unit_label' => 'DisplayUnitLabel',
    'has_multi_level_labels' => 'HasMultiLevelLabels',
    'is_automatic_major_unit' => 'IsAutomaticMajorUnit',
    'is_automatic_max_value' => 'IsAutomaticMaxValue',
    'is_automatic_minor_unit' => 'IsAutomaticMinorUnit',
    'is_automatic_min_value' => 'IsAutomaticMinValue',
    'is_display_unit_label_shown' => 'IsDisplayUnitLabelShown',
    'is_logarithmic' => 'IsLogarithmic',
    'is_plot_order_reversed' => 'IsPlotOrderReversed',
    'is_visible' => 'IsVisible',
    'log_base' => 'LogBase',
    'major_grid_lines' => 'MajorGridLines',
    'major_tick_mark' => 'MajorTickMark',
    'major_unit' => 'MajorUnit',
    'major_unit_scale' => 'MajorUnitScale',
    'max_value' => 'MaxValue',
    'minor_grid_lines' => 'MinorGridLines',
    'minor_tick_mark' => 'MinorTickMark',
    'minor_unit' => 'MinorUnit',
    'minor_unit_scale' => 'MinorUnitScale',
    'min_value' => 'MinValue',
    'tick_label_position' => 'TickLabelPosition',
    'tick_labels' => 'TickLabels',
    'tick_label_spacing' => 'TickLabelSpacing',
    'tick_mark_spacing' => 'TickMarkSpacing',
    'title' => 'Title',
    'link' => 'link' 
} );

__PACKAGE__->mk_accessors(keys %{__PACKAGE__->attribute_map});


1;

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.