Oracle reports - Line graph

Hello,
I have a few issues with the line graphs (using oracle 10g dev suite R1 - 9.0.4).
1. Unable to make my y axis - a dotted line.
2. Since I couldn't make the y axis a dotted line, I made it a thin line. This thin line looks fine when I run it from the oracle reports builder. but when I genenerate to a PDF file, this thin line becomes thicker.
3. Thirdly, I want to place a dot or something wherever the value changes in the line graph. One option is to add the MarkerText visible="true" to the Graph settings xml file. but this puts the marker text to all the y axes.
I want it only for 1 y axis.
Cheers

Assuming you mean "series" and not "axis", you can control the style, width, and markers using the lineStyle, lineWidth, and markerShape attributes of the <Series> element (in the XML shown in the Graph Settings property) for the series (set of Y values) of interest.
For example, to use a thin, dotted line with circle markers on the first series, but leave the other series with their defaults, you might:
1. Make sure the markerDisplayed attribute of the <Graph> element is set to ="true". Otherwise, no markers will be displayed.
2. For the <Series> element with the id attribute equal to "0" (which identifies the first series), set the lineStyle attribute to "LS_DOTTED", the lineWidth attribute to "1" (in pixels), and the makerShape attribute to "MS_CIRCLE".
3. If needed, set the markerShape attribute of the other <Series> elements to "MS_NONE".
The Graph Settings property might look something like this:
<rw:graph id="CT_1" src="G_YOUR_GROUP" groups="X" dataValues="Y1,Y2">
<!--
<?xml version="1.0" ?>
<Graph version="3.2.0.22" graphType="LINE_VERT_ABS" markerDisplayed="true">
<SeriesItems>
<Series id="0" lineStyle="LS_DOTTED" lineWidth="1" markerShape="MS_CIRCLE"/>
<Series id="1" markerShape="MS_NONE"/>
</SeriesItems>
</Graph>
-->
</rw:graph>For more information, see the "Graph.dtd" file in your "%ORACLE_HOME%\jlib\bigraphbean.jar".
Hope this helps.

Similar Messages

  • Report Line Graph Question

    Hi, I am plotting a line graph with some date values on the X axis and some data on the Y axis.
    For Example:
    Sep 01 11
    Sep 02 19
    Sep 03 14
    Sep 04
    Sep 05 9
    Sep 06
    Sep 07
    Sep 08 19
    This will result in gaps on the 4th, 6th and the 7th. This is expected behaviour. However, is it possible to set some properties in the graph so the line will be continuous. For Example From 14 to 9 (downward) and from 9 to 19 (upward), without 'assuming' values or nvling to 0 (then the line will drop all the way to 0 and bounce up). ( I want to include dates without Y axis data )
    I have markers on points that have values (ex: 11,19,14,9 and 19), if the line just connects without data there will not be any markers and the user will understand there are no data for those dates. The continuous line will make it easy to understand the flow (without using a fit or a trend line).
    I have pretty much exhausted all attribute settings from graph.dtd
    Note: I have an access chart I am converting to Reports and access lets you do this and I have to maintain the same in Reports !
    Thanks
    A
    null

    Bump. Thanks

  • Line Chart/Graph for a Matrix report in Oracle Reports 10g

    Hello,
    If you have a Matrix report, say Month Name as rows, Year as columns (for example 2007, 2008, 2009) and sum of Sales dollar value as cells...I want a Line Graph which shows Months on the bottom axis and Years represented by lines and the sales value as the trend or data points on the horizontal line...it seems Oracle Reports cannot do this sincethe Chart wizard does not show either the Months or years as selectable fields for either X or Y axis.
    I can easily write a sql which does the pivot and produce the results for Sales by month for last 3 yrs but in this case I would have to provide column alias similar to say CURRENT_YEAR, PRIOR_YEAR, PRIOR_PRIOR_YEAR. Then, the Chart wizard works correctly but the Legend shows the column alias which is not very desirable for an executive level report.
    I was hoping that since a matrix report shows the correct column names, the legends will pull through correctly but I am stuck since the Chart for a matrix report doesn't work as I described above.
    Does anyone know how to do this type of Chart on a Matrix?
    Thanks,
    Manish
    Edited by: mhathi on Jul 15, 2009 1:59 PM

    The way I'd do it is with a 3D-graph, I think you need that otherwise you will not be able to represent it properly ...
    You will need to create another query just for the graph, which will create another group, containing only 3 columns (YEAR, MONTH, SALES), then start your Graph Wizard, then you will see two groups, select the one containing the 3 columns and when asked for the X-axis categories select both YEAR and MONTH, then for Y-axis select SALES.
    That way it should work...

  • Line graph issue in web report

    Hi
    I have a 3 queries/reports on one page in my web report. I have 3 line graph buttons, one for each query.
    My issue is, in the report result or table, I have characteristic "Product" in rows and Key figures in Columns.
    Product                          Month 1     Month2      
    XYZ          Demand
                 On hand stock
                 Ending Inventory
    But when I hit the line graph button, it shows Product in the X (horizontal) axis and number ranges like 15000, 20000, 25000 in the Y axis.
    I need to swap the axes. I tried the "swap display axis" in the web items tab, but it didn't work.
    I read other threads on the same topic here and someone had suggested creating a query view, switching the columns and rows there and running the report to display the line graph as required.
    If I do that, won't the report result in the table also swap the rows and columns? I want the table to show Product in the Rows and KFs in the column as it is now, but I want the line graph to show Product in the Y axis and the Key figures in the Y axis.
    Any ideas on how to do that? Any help will be greatly appreciated. Thanks!
    Pooja

    This is what I did:
    1) In BEX Analyzer, I opened the local view of the Query and swapped the Key figures and Characteristics. I put the key figures in the columns and Characteristics in the Rows
    2) I ran my report and save it as a View
    3) In WAD, I assigned the Chart to the View.
    When i ran the report from WAD, it still shows the key figures or number ranges in the Y axis and Characteristics on the X axis again.
    I checked the "swap display axes" option in Web Item tab, but the line graph still remains the same.
    Is there another way to do this? Or am I missing something?
    Thanks
    Pooja

  • FormatTrigger on line is not working in Oracle Reports

    Hi there,
    I am using Oracle Reports 6i and trying to format code as follows :
    I have three sections of data say a,b,c.
    1) If there is no data returned in Section b and c, then I need to print a line just after section a ends.
    2) If there is no data in section c but section a and b have data, then line should not appear after section a, but after section b
    3) If all sections are having data , then line should appear after section c.
    Format trigger for after section A
    function B_2FormatTrigger return boolean is
    begin
    declare
    ret_val boolean;
    begin
    ret_val := false;
    if :CS_MATERIAL_TERMS = 0 and :cf_mh_count = 0 then
       ret_val := true;
    end if;
    return ret_val;
    end;
    end;
    format trigger after section B
    function B_4FormatTrigger return boolean is
    begin
    declare
    ret_val boolean;
    begin
    ret_val := false;
    if :CS_MATERIAL_TERMS = 0  and :cf_mh_count <> 0 then
       ret_val := true;
    end if;
    return ret_val;
    end;
    end;
    format trigger after section C
    function B_9FormatTrigger return boolean is
    begin
      return (TRUE);
    end;
    :CS_MATERIAL_TERMS = is the summary column which defines data in section C
    :cf_mh_count= is the formula column which defines the data in section B
    current issue is that.. in some cases the line is appearing after section A, though section B has data
    Please help...
    Thanks.

    Hi Hari,
    hope all deadline related work is present in QA, say if you using Factory calendar, is the factory calendar present in QA also.
    try refreshing buffer using SWU_OBUF.
    Hope it helps.
    Aditya

  • Blank Lines in Oracle Reports in Text Format

    Hi all,
    I m in a problem that , I generate an Oracle report in text format there is two additional blank lines in text format.But when I view this report in report editor there is no blank lines.There is actually only 15 lines in my report but in text format it shows 17 lines.How can I avoid this prblm.pls help.
    thanks
    jobuin

    Is the Design in Character Units set to Yes?
    How are you viewing your layout in report editor? Are you viewing with Grid?
    If it is Yes and with grid, try to fit your layout objects within the Grid.

  • Generate graphs from Oracle Reports

    How to use graphs in Oracle Reports server, the version of Oracle Application Server is 10.1.2.3
    thanks,

    You need to develope your graph in reports builder. Then deploy the rep file to the server and run it.
    You can open this post in reports forum.

  • New line in Oracle Report

    I am a newcomer to Oracle Reports and am trying to customisie APXPBFBC.rdf for BACS transfer to HSBC.
    I have run into a problem with the output of all the standard invoices that need to be paid. They are all showing in one long string - and I need to show one invoice per line. I am unsure as to whether this can be done using the SQL script or whether it needs to be done somewhere else on the report.
    Any pointers would be much appreciated.

    Hi,
    First of all u have to Create ur own PF-status and Assign Fcode e.g 'INSERTROW'.
    So, whenevr you will click Insertrow button it will be triggered in your User Command and then just Append the blank line in your Final Internal Table.
    And Refresh Icon will be there by default...
    To Trigger it You have to write rs_selfield-refresh = 'X'
    You can also follow the below link...
    Try it.
    Link:[http://wiki.sdn.sap.com/wiki/display/ABAP/ALVeasytutorial].
    Regards
    Arbind

  • Oracle reports output in excel format does not display the graphs

    Oracle reports output in excel format does not display the graphs: "linked image cannot be displayed".
    The output file in PDF format the graph is supported.

    Do you have any header and footer on your template?
    If you have any header and footer then try to adjust it as of to display full page.
    Thanks
    Yasar

  • I want to use command line to execute an oracle report?

    Dear all,
    I am using Oracle Application. Does anyone know how to use command line to execute an oracle report?
    I mean execute command from client to server.
    Please advice,
    Amy
    Edited by: amychan60 on Dec 13, 2009 11:33 PM

    Hi,
    Using Oracle Application Server the standard way for a client to request a report is via a HTTP request. This doesn't really lend itself to use directly on a command line on a client however you could use the following:
    explorer "http://your_server/reports/rwservlet?report=report_name.rdf&userid=userid/password@db_sid&paramform=no&destype=FILE&desname=c:\temp\filename.pdf&desformat=pdf"
    This will load explorer and submit that URL for you and request the report. You can change the parameters depending on the report output you require.
    If you need something that is silent (ie doesn't load in explorer) you'll need to investigate other ways of submitting that URL request, perhaps using Java. You could also use SRW.run_report (Event Driven Publishing) to submit the request using SQL.
    Cheers,
    Toby.

  • How to combine a stacked bar chart and a line graph together in one report

    I have a report in excel that has stacked bar chart and a line graph together in one report. I am trying to recreate the same in Webi, Is this possible? Did any one have similar requirement, could you please share the thoughts?
    Thanks,
    Hema

    May be I don't understand correctly...
    But if its really to separate chart area's;
    just copy the datablock and format one as line and the other as barchart...
    Hope this helps,
    Marianne

  • Creating a 3 line graph report

    Need help with creating a 3 line graph  - need to be able to plot 3rd line of data  without displaying a legend and use a dynamic tag label for the line. Thanks

    You can create two graphs with the same horizontal (and if necessary vertical) scale, and make them occupy the same space on the report, one under another.
    On one report, put your 3rd graph line, and remove any visible text, gridlines etc, so you basically just have the axes lines and the graph line.
    On the top report, make the background transparent, so both graphs are visible (Chart Expert->Options->Transparent Background).

  • CGI call to Oracle Reports with embedded graph not executing triggers on bars

    I have the following function which is suppose to change the color of the bars in subgroups.
    PROCEDURE Set_Group_Color(elem IN og_object, a_group_index number) IS
    v_color varchar2 (32);
    v_temp og_object;
    v_idx number;
    BEGIN
    v_temp := OG_GET_OBJECT ('GRPG_NM1_GRPG_CNT_legend_label');
    v_temp := OG_GET_PARENT (v_temp);
    v_color := color_list (a_group_index);
    og_set_bfcolor (elem, v_color);
    og_set_ffcolor (elem, v_color);
    v_idx := a_group_index * 2 + 1;
    v_temp := OG_GET_CHILD (v_temp, v_idx);
    -- 0 = legend_frame
    -- 1 = border of color box (no name)
    -- 2 = GRPG_NM1_GRPG_CNT_legend_label
    -- 3 = border of color box of next group
    -- 4 = GRPG_NM2_GRPG_CNT_legend_label
    OG_SET_BFCOLOR (v_temp, v_color);
    END;
    This function is called from the format trigger of the bars themselves. The code works the way i want it to in the ORacle Graphics designer but when i executed from the web the triggers are not executed at all!!!
    Am i forgetting to do something? Is this a known bug. When i put a format trigger on the graph axis-labels they execute correctly in both the designer and the web. But the bar triggers do not!

    1. Along with this version of Reports you should find the reports server (r30mts on unix). This will allow you to deploy your reports on the web - on HP/UX or Solaris.
    2. To web deploy you have:
    Web Browser --->
    Web Listener + Reports CGI ----->
    Reports Server -->
    RDBMS
    3. You don't need the cartridge if you are using the CGI.
    For more information, please look at the Reports Server Configuration whitepaper, available on OTN - it was written for Reports 6.0, but the concepts and architecture are applicable for Reports 3.0
    Regards
    The Oracle Reports Team http://technet.oracle.com

  • Oracle Report reading only upto 1600 lines

    Hi all,
    Just would like to post an issue regarding oracle report.
    My version is DS 10g n i have a code which is approx 2000 lines, the issue is that my query executes till near about the 1600 but the rest is omitted.plz throw some light in this.
    Thanx
    Ron

    What are you talking about exactly:
    i have a code which is approx 2000 lineIs this a pl/sql procedure?
    my query executesOr is it a very long query?

  • Report Engine crashing on Solaris when report with graph is given.

    Hi,
    We are using following environment:
    Solaris 8
    Oracle 9i Report Sevices.
    When we try to execute reports having graphs then the report engine crashes with the following exception:
    REP-0177: Error while running in remote server
    REP-56048: Engine rwEng-0 crashed
    The complete crash log is also appendend in the end of this mail.
    When I remove the graph from the rdf then reports get exectued fine without any crash. The same rdg with graph works fine on windows NT.
    If somebody can help on this, it will be great.
    Thanks,
    Ashish
    The complete crash log is as follows:
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : 11 occurred at PC=0xf017b350
    Function name=_Xm21FreeHashTable
    Library=/usr/lib/libXm.so.4
    Current Java thread:
         at sun.awt.motif.MWindowPeer.create(Native Method)
         at sun.awt.motif.MComponentPeer.init(MComponentPeer.java:169)
         at sun.awt.motif.MWindowPeer.init(MWindowPeer.java:86)
         at sun.awt.motif.MFramePeer.<init>(MFramePeer.java:53)
         at sun.awt.motif.MToolkit.createFrame(MToolkit.java:138)
         at java.awt.Frame.addNotify(Frame.java:353)
         at java.awt.Window.pack(Window.java:369)
         at tdg.Perspective.<init>(Perspective.java:478)
         at oracle.dss.graph.PFJ.<init>(PFJ.java:47)
         at oracle.dss.graph.Graph.createPFJ(Graph.java:1190)
         at oracle.dss.graph.Graph._setupGraphView(Graph.java:353)
         at oracle.dss.graph.Graph.<init>(Graph.java:164)
         at oracle.reports.chart.Chart.<init>(Chart.java:51)
         at oracle.reports.chart.ChartRunner.<init>(ChartRunner.java:46)
         at oracle.reports.engine.EngineImpl.CRunReport(Native Method)
         at oracle.reports.engine.EngineImpl.run(EngineImpl.java:289)
         at oracle.reports.engine.EngineClassPOATie.run(EngineClassPOATie.java:84)
         at oracle.reports.engine.EngineClassPOA._invoke(EngineClassPOA.java:117)
         at oracle.reports.engine.EngineClassPOA._invoke(EngineClassPOA.java:62)
         at com.inprise.vbroker.poa.POAImpl.invoke(POAImpl.java:2355)
         at com.inprise.vbroker.poa.ActivationRecord.invoke(ActivationRecord.java:104)
         at com.inprise.vbroker.GIOP.GiopProtocolAdapter.doRequest(GiopProtocolAdapter.java:492)
         at com.inprise.vbroker.IIOP.ServerProtocolAdapter.doRequest(ServerProtocolAdapter.java:64)
         at com.inprise.vbroker.GIOP.GiopProtocolAdapter.dispatchMessage(GiopProtocolAdapter.java:653)
         at com.inprise.vbroker.orb.TPDispatcherImpl$TPDispatcher.run(TPDispatcherImpl.java:99)
         at com.inprise.vbroker.orb.ThreadPool$PoolWorker.run(ThreadPool.java:76)
    Dynamic libraries:
    0x10000      /users/orarep9i/OraHome1/jdk/jre/bin/../bin/sparc/native_threads/java
    0xff350000      /usr/lib/libthread.so.1
    0xff390000      /usr/lib/libdl.so.1
    0xff200000      /usr/lib/libc.so.1
    0xff330000      /usr/platform/SUNW,Ultra-60/lib/libc_psr.so.1
    0xfe480000      /users/orarep9i/OraHome1/jdk/jre/lib/sparc/client/libjvm.so
    0xff2d0000      /usr/lib/libCrun.so.1
    0xff1d0000      /usr/lib/libsocket.so.1
    0xff100000      /usr/lib/libnsl.so.1
    0xff0d0000      /usr/lib/libm.so.1
    0xff310000      /usr/lib/libw.so.1
    0xff0b0000      /usr/lib/libmp.so.2
    0xff080000      /users/orarep9i/OraHome1/jdk/jre/lib/sparc/native_threads/libhpi.so
    0xff040000      /users/orarep9i/OraHome1/jdk/jre/lib/sparc/libverify.so
    0xfe440000      /users/orarep9i/OraHome1/jdk/jre/lib/sparc/libjava.so
    0xfe410000      /users/orarep9i/OraHome1/jdk/jre/lib/sparc/libzip.so
    0xf3be0000      /users/orarep9i/OraHome1/jdk/jre/lib/sparc/libnet.so
    0xf3bc0000      /users/orarep9i/OraHome1/jdk/jre/lib/sparc/libioser12.so
    0xf39e0000      /usr/lib/nss_nis.so.1
    0xf2000000      /users/orarep9i/OraHome1/lib/librw90.so
    0xf1d00000      /users/orarep9i/OraHome1/lib/libobx90.so.0
    0xf36b0000      /users/orarep9i/OraHome1/lib/librws90.so.0
    0xf2a80000      /users/orarep9i/OraHome1/lib/libde90.so.0
    0xf2fc0000      /users/orarep9i/OraHome1/lib/libucol90.so.0
    0xf39b0000      /users/orarep9i/OraHome1/lib/libuicc90.so.0
    0xf2ea0000      /users/orarep9i/OraHome1/lib/libca90.so.0
    0xf35e0000      /users/orarep9i/OraHome1/lib/libmma90.so.0
    0xf2dc0000      /users/orarep9i/OraHome1/lib/libmmiw90.so.0
    0xf3860000      /users/orarep9i/OraHome1/lib/libmmov90.so.0
    0xf2f90000      /users/orarep9i/OraHome1/lib/libmmos90.so.0
    0xf2cc0000      /users/orarep9i/OraHome1/lib/libmmoi90.so.0
    0xf32e0000      /users/orarep9i/OraHome1/lib/libmmia90.so.0
    0xf2da0000      /users/orarep9i/OraHome1/lib/libmmft90.so.0
    0xf1fc0000      /users/orarep9i/OraHome1/lib/libmmcm90.so.0
    0xf1c00000      /users/orarep9i/OraHome1/lib/libvgs90.so.0
    0xf2ca0000      /users/orarep9i/OraHome1/lib/libuihx90.so.0
    0xf1b90000      /users/orarep9i/OraHome1/lib/libuc90.so.0
    0xf1b20000      /users/orarep9i/OraHome1/lib/libuipr90.so.0
    0xf1900000      /users/orarep9i/OraHome1/lib/libuimotif90.so.0
    0xf1ae0000      /users/orarep9i/OraHome1/lib/libot90.so.0
    0xf18a0000      /users/orarep9i/OraHome1/lib/librem90.so.0
    0xf1820000      /users/orarep9i/OraHome1/lib/libree90.so.0
    0xf1fa0000      /users/orarep9i/OraHome1/lib/librec90.so.0
    0xf17f0000      /users/orarep9i/OraHome1/lib/libuiimg90.so.0
    0xf17b0000      /users/orarep9i/OraHome1/lib/libuia90.so.0
    0xf2a60000      /users/orarep9i/OraHome1/lib/libtknqap90.so.0
    0xf1780000      /users/orarep9i/OraHome1/lib/libutt90.so.0
    0xf1750000      /users/orarep9i/OraHome1/lib/librod90.so.0
    0xf1720000      /users/orarep9i/OraHome1/lib/libror90.so.0
    0xf16f0000      /users/orarep9i/OraHome1/lib/libros90.so.0
    0xf16c0000      /users/orarep9i/OraHome1/lib/libuat90.so.0
    0xf16a0000      /users/orarep9i/OraHome1/lib/libdfc90.so.0
    0xf1680000      /users/orarep9i/OraHome1/lib/libutc90.so.0
    0xf1660000      /users/orarep9i/OraHome1/lib/libutj90.so.0
    0xf1630000      /users/orarep9i/OraHome1/lib/libutl90.so.0
    0xf1610000      /users/orarep9i/OraHome1/lib/libsl90.so.0
    0xf0c00000      /users/orarep9i/OraHome1/lib/libclntsh.so.9.0
    0xf15f0000      /users/orarep9i/OraHome1/lib/libwtc9.so
    0xf15d0000      /usr/lib/libsched.so.1
    0xf15b0000      /usr/lib/libaio.so.1
    0xf0a00000      /usr/lib/libXm.so.3
    0xf1540000      /usr/lib/libXt.so.4
    0xf0900000      /usr/lib/libX11.so.4
    0xf1520000      /usr/lib/libgen.so.1
    0xf1500000      /usr/lib/librt.so.1
    0xf14e0000      /usr/lib/libSM.so.6
    0xf14b0000      /usr/lib/libICE.so.6
    0xf1480000      /usr/lib/libXext.so.0
    0xf0bd0000      /usr/openwin/lib/libdga.so.1
    0xf0bb0000      /users/orarep9i/OraHome1/jdk/jre/lib/sparc/libawt.so
    0xf0280000      /users/orarep9i/OraHome1/jdk/jre/lib/sparc/motif21/libmawt.so
    0xf09b0000      /users/orarep9i/OraHome1/jdk/jre/bin/../lib/sparc/libmlib_image.so
    0xf0000000      /usr/lib/libXm.so.4
    0xf08e0000      /usr/openwin/lib/libXtst.so.1
    0xeff00000      /users/orarep9i/OraHome1/jdk/jre/lib/sparc/libfontmanager.so
    0xf07a0000      /usr/openwin/lib/libdps.so.5
    Local Time = Fri Apr 18 09:22:09 2003
    Elapsed Time = 110
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.3.1_02-b02 mixed mode)

    Please try the following
    * Modify $ORACLE_HOME/bin/reports.sh, replace "classic"
    with "server" in the LD_LIBRARY_PATH for the JVM
    * Modify $ORACLE_HOME/bin/rwengine.sh, just before the exec
    command, insert the following line:
    export LD_PRELOAD=$ORACLE_HOME/jdk/jre/lib/i386/libawt.so
    In Linux there was a similar problem and the above workaround worked . You can give this a try .
    Thanks
    The Oracle Reports Team

Maybe you are looking for

  • Logic 9.1.7 download. Re-install

    This is probably a stupid newbie question. I'm new to my Mac (lion) and new to Logic 9.1.7 I bought Logic as a download and I don't know where the file is to re-install after a system failure? I know I can use Time Machine but I would sleep easier if

  • Creating a FLV video player with full screen option

    > This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --B_3258016930_5977304 Content-type: text/plain; charset="ISO-8859-1" Content-transfer-encoding: 8bit Hi! I am t

  • Live upgrade from solaris 8 to 10

    how do i upgrade from solaris 8 to 10 using live upgrade on a sun netra t1 machine?

  • Text-To-Speech-Simulation?

    You probably all know the effect of synthetic voices by text-to-speech systems. (You can find several online in the internet). Did anybody simulate this with Logic 9, done from a "real speaker's" voice. I tried Ringshifter, EVOC 20 Filterbank, EVOC 2

  • Printing my own cards

    I want to print my own cards (not send them to Apple for printing) and can't seem to find a way to create double-fold cards (with the cover image on 1/4 of an 8-1/2 by 11 sheet). Can this be done? Also, is there a way to get rid of the Made on a Mac