OroCRM Forums

Covering OroCRM topics, including community updates and company announcements.

Forums Forums OroCRM OroCRM – Programming Questions Oro Chart Day Type

This topic contains 0 replies, has 1 voice, and was last updated by  rajajitesh 9 years, 1 month ago.

Starting from March 1, 2020 the forum has been switched to the read-only mode. Please head to StackOverflow for support.

  • Creator
    Topic
  • #25004

    rajajitesh
    Participant

    Hi guys,

    Is it possible to configure the oro chart for displaying data based on days not month ?

    $options = array(
    ‘name’ => ‘multiline_chart’,
    ‘label’ => ‘oro.chart.multiline_chart.label ‘,
    ‘data_schema’ => array(
    ‘label’ => array(
    ‘name’ => ‘label’,
    ‘label’ => ‘Month’,
    ‘required’ => ‘1’,
    ‘default_type’ => ‘string’,
    ‘type’ => ‘day‘,
    ‘field_name’ => ‘month’
    ),
    ‘value’ => array(
    ‘name’ => ‘value’,
    ‘label’ => ‘Conversion’,
    ‘required’ => ‘1’,
    ‘default_type’ => ‘decimal’,
    ‘field_name’ => ‘conversion’)
    ),
    ‘xNoTicks’ => 2
    );

    I wish to present certain data in oro chart which has been aggregated daily not monthly.

    Thanks,
    Raj

The forum ‘OroCRM – Programming Questions’ is closed to new topics and replies.

Back to top