Examples of xAxis()


Examples of ChartDirector.XYChart.xAxis()

        // Now we add the data to the chart
        Date lastTime = timeStamps[timeStamps.length - 1];
        if (lastTime != null) {
            // Set up the x-axis to show the time range in the data buffer
            c.xAxis().setDateScale(
                    new Date(lastTime.getTime() - dataInterval * timeStamps.length), lastTime);

            // Set the x-axis label format
            c.xAxis().setLabelFormat("{value|hh:nn:ss}");

View Full Code Here

Examples of ChartDirector.XYChart.xAxis()

            // Set up the x-axis to show the time range in the data buffer
            c.xAxis().setDateScale(
                    new Date(lastTime.getTime() - dataInterval * timeStamps.length), lastTime);

            // Set the x-axis label format
            c.xAxis().setLabelFormat("{value|hh:nn:ss}");

            // Create a line layer to plot the lines
            LineLayer layer = c.addLineLayer2();

            // The x-coordinates are the timeStamps.
View Full Code Here

Examples of org.apache.pdfbox.pdmodel.interactive.digitalsignature.visible.PDVisibleSignDesigner.xAxis()

            CreateVisibleSignature signing = new CreateVisibleSignature(keystore, pin.clone());

            FileInputStream image = new FileInputStream(args[3]);

            PDVisibleSignDesigner visibleSig = new PDVisibleSignDesigner(args[2], image, 1);
            visibleSig.xAxis(0).yAxis(0).zoom(-50).signatureFieldName("signature");

            PDVisibleSigProperties signatureProperties = new PDVisibleSigProperties();

            signatureProperties.signerName("name").signerLocation("location").signatureReason("Security").preferredSize(0)
                    .page(1).visualSignEnabled(true).setPdVisibleSignature(visibleSig).buildSignature();
View Full Code Here

Examples of org.apache.pdfbox.pdmodel.interactive.digitalsignature.visible.PDVisibleSignDesigner.xAxis()

      CreateVisibleSignature signing = new CreateVisibleSignature(keystore, pin.clone());

      FileInputStream image = new FileInputStream(args[3]);

      PDVisibleSignDesigner visibleSig = new PDVisibleSignDesigner(args[2], image, 1);
      visibleSig.xAxis(0).yAxis(0).zoom(-50).signatureFieldName("signature");

      PDVisibleSigProperties signatureProperties = new PDVisibleSigProperties();

      signatureProperties.signerName("name").signerLocation("location").signatureReason("Security").preferredSize(0)
          .page(1).visualSignEnabled(true).setPdVisibleSignature(visibleSig).buildSignature();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.