jQWidgets Forums

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts

  • ponraj
    Participant

    We are having the same issue as well, it seems the value axis title and x-axis labels are displayed under the chart [while debugging the elements, they are there but not visible.]

    Mockups:
    padding: any = { left: 10, top: 5, right: 10, bottom: 5 };

    titlePadding: any = { left: 50, top: 0, right: 0, bottom: 10 };

    xAxis: any =
    {
    dataField: ‘ChartDate’,
    type: ‘date’,
    baseUnit: ‘month’,
    title: { text: ‘Business Date’ },
    unitInterval: 3,
    tickMarks: { visible: true, interval: 1 },
    gridLinesInterval: { visible: true, interval: 1 },
    valuesOnTicks: true,
    labels: {
    angle: -30,
    rotationPoint: ‘topright’,
    offset: { x: 0, y: -25 }
    }
    };

    valueAxis: any =
    {
    dataField: ‘ChartDate’,
    title: { text: ‘Count’ },
    labels: { horizontalAlignment: ‘right’ }
    };

    seriesGroups: any =
    [
    {
    type: ‘line’,
    series: [
    { dataField: ‘Unique_Count’, displayText: ‘Unique Count’ }
    ]
    }
    ];

Viewing 1 post (of 1 total)