148 lines
5.0 KiB
PHP
148 lines
5.0 KiB
PHP
<?php
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
die( '-1' );
|
|
}
|
|
|
|
return array(
|
|
'name' => esc_html__( 'Line Chart', 'js_composer' ),
|
|
'base' => 'vc_line_chart',
|
|
'class' => '',
|
|
'icon' => 'icon-wpb-vc-line-chart',
|
|
'category' => esc_html__( 'Content', 'js_composer' ),
|
|
'description' => esc_html__( 'Line and Bar charts', 'js_composer' ),
|
|
'params' => array(
|
|
array(
|
|
'type' => 'textfield',
|
|
'heading' => esc_html__( 'Widget title', 'js_composer' ),
|
|
'param_name' => 'title',
|
|
'description' => esc_html__( 'Enter text used as widget title (Note: located above content element).', 'js_composer' ),
|
|
'admin_label' => true,
|
|
),
|
|
array(
|
|
'type' => 'dropdown',
|
|
'heading' => esc_html__( 'Design', 'js_composer' ),
|
|
'param_name' => 'type',
|
|
'value' => array(
|
|
esc_html__( 'Line', 'js_composer' ) => 'line',
|
|
esc_html__( 'Bar', 'js_composer' ) => 'bar',
|
|
),
|
|
'std' => 'bar',
|
|
'description' => esc_html__( 'Select type of chart.', 'js_composer' ),
|
|
'admin_label' => true,
|
|
),
|
|
array(
|
|
'type' => 'dropdown',
|
|
'heading' => esc_html__( 'Style', 'js_composer' ),
|
|
'description' => esc_html__( 'Select chart color style.', 'js_composer' ),
|
|
'param_name' => 'style',
|
|
'value' => array(
|
|
esc_html__( 'Flat', 'js_composer' ) => 'flat',
|
|
esc_html__( 'Modern', 'js_composer' ) => 'modern',
|
|
esc_html__( 'Custom', 'js_composer' ) => 'custom',
|
|
),
|
|
'dependency' => array(
|
|
'callback' => 'vcChartCustomColorDependency',
|
|
),
|
|
),
|
|
array(
|
|
'type' => 'checkbox',
|
|
'heading' => esc_html__( 'Show legend?', 'js_composer' ),
|
|
'param_name' => 'legend',
|
|
'description' => esc_html__( 'If checked, chart will have legend.', 'js_composer' ),
|
|
'value' => array( esc_html__( 'Yes', 'js_composer' ) => 'yes' ),
|
|
'std' => 'yes',
|
|
),
|
|
array(
|
|
'type' => 'checkbox',
|
|
'heading' => esc_html__( 'Show hover values?', 'js_composer' ),
|
|
'param_name' => 'tooltips',
|
|
'description' => esc_html__( 'If checked, chart will show values on hover.', 'js_composer' ),
|
|
'value' => array( esc_html__( 'Yes', 'js_composer' ) => 'yes' ),
|
|
'std' => 'yes',
|
|
),
|
|
array(
|
|
'type' => 'textfield',
|
|
'heading' => esc_html__( 'X-axis values', 'js_composer' ),
|
|
'param_name' => 'x_values',
|
|
'description' => esc_html__( 'Enter values for axis (Note: separate values with ";").', 'js_composer' ),
|
|
'value' => 'JAN; FEB; MAR; APR; MAY; JUN; JUL; AUG',
|
|
),
|
|
array(
|
|
'type' => 'param_group',
|
|
'heading' => esc_html__( 'Values', 'js_composer' ),
|
|
'param_name' => 'values',
|
|
'value' => rawurlencode( wp_json_encode( array(
|
|
array(
|
|
'title' => esc_html__( 'One', 'js_composer' ),
|
|
'y_values' => '10; 15; 20; 25; 27; 25; 23; 25',
|
|
'color' => 'blue',
|
|
),
|
|
array(
|
|
'title' => esc_html__( 'Two', 'js_composer' ),
|
|
'y_values' => '25; 18; 16; 17; 20; 25; 30; 35',
|
|
'color' => 'pink',
|
|
),
|
|
) ) ),
|
|
'params' => array(
|
|
array(
|
|
'type' => 'textfield',
|
|
'heading' => esc_html__( 'Title', 'js_composer' ),
|
|
'param_name' => 'title',
|
|
'description' => esc_html__( 'Enter title for chart dataset.', 'js_composer' ),
|
|
'admin_label' => true,
|
|
),
|
|
array(
|
|
'type' => 'textfield',
|
|
'heading' => esc_html__( 'Y-axis values', 'js_composer' ),
|
|
'param_name' => 'y_values',
|
|
'description' => esc_html__( 'Enter values for axis (Note: separate values with ";").', 'js_composer' ),
|
|
),
|
|
array(
|
|
'type' => 'dropdown',
|
|
'heading' => esc_html__( 'Color', 'js_composer' ),
|
|
'param_name' => 'color',
|
|
'value' => vc_get_shared( 'colors-dashed' ),
|
|
'description' => esc_html__( 'Select chart color.', 'js_composer' ),
|
|
'param_holder_class' => 'vc_colored-dropdown',
|
|
),
|
|
array(
|
|
'type' => 'colorpicker',
|
|
'heading' => esc_html__( 'Custom color', 'js_composer' ),
|
|
'param_name' => 'custom_color',
|
|
'description' => esc_html__( 'Select custom chart color.', 'js_composer' ),
|
|
),
|
|
),
|
|
'callbacks' => array(
|
|
'after_add' => 'vcChartParamAfterAddCallback',
|
|
),
|
|
),
|
|
array(
|
|
'type' => 'dropdown',
|
|
'heading' => esc_html__( 'Animation', 'js_composer' ),
|
|
'description' => esc_html__( 'Select animation style.', 'js_composer' ),
|
|
'param_name' => 'animation',
|
|
'value' => vc_get_shared( 'animation styles' ),
|
|
'std' => 'easeInOutCubic',
|
|
),
|
|
vc_map_add_css_animation(),
|
|
array(
|
|
'type' => 'el_id',
|
|
'heading' => esc_html__( 'Element ID', 'js_composer' ),
|
|
'param_name' => 'el_id',
|
|
'description' => sprintf( esc_html__( 'Enter element ID (Note: make sure it is unique and valid according to %sw3c specification%s).', 'js_composer' ), '<a href="https://www.w3schools.com/tags/att_global_id.asp" target="_blank">', '</a>' ),
|
|
),
|
|
array(
|
|
'type' => 'textfield',
|
|
'heading' => esc_html__( 'Extra class name', 'js_composer' ),
|
|
'param_name' => 'el_class',
|
|
'description' => esc_html__( 'Style particular content element differently - add a class name and refer to it in custom CSS.', 'js_composer' ),
|
|
),
|
|
array(
|
|
'type' => 'css_editor',
|
|
'heading' => esc_html__( 'CSS box', 'js_composer' ),
|
|
'param_name' => 'css',
|
|
'group' => esc_html__( 'Design Options', 'js_composer' ),
|
|
),
|
|
),
|
|
);
|