jQuery UI Widgets Forums Chart I’m hoping to get some input on: Chart.

This topic contains 1 reply, has 2 voices, and was last updated by  admin 5 months, 3 weeks ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • I’m hoping to get some input on: Chart. #136210

    jovanovic
    Participant

    What are the options to customize jqxChart axes labels and ticks in jQuery?

    I’m hoping to get some input on: Chart. #136226

    admin
    Keymaster

    Hi,

    You can customize jqxChart axes by using formatFunction for labels, adjusting rotation, alignment, and CSS classes, configuring tickMarks and gridLines (size, interval, color, style) and defining multiple axes with separate styles.

    Example:

    valueAxis: {
        unitInterval: 10,
        minValue: 0,
        maxValue: 100,
        tickMarks: {
            visible: true,
            interval: 10,              // spacing
            color: '#888',
            size: 10                   // tick length
        },
        gridLines: {
            visible: true,
            interval: 20,
            color: '#ddd',
            dashStyle: '2,2'           // dashed grid lines
        }
    }

    Best regards,
    Peter Stoev

    jQWidgets Team
    https://www.jqwidgets.com/

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.