1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 <2008> 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 | Index | 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 <2008> 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 |
<== Date ==> | <== Thread ==> |
---|
Subject: | EDM xyGraphClass yLabel displaying backwards |
From: | Carl Schumann <[email protected]> |
To: | [email protected] |
Cc: | "William L. Marsh" <[email protected]> |
Date: | Mon, 13 Oct 2008 14:34:15 -0500 |
From the new version the code for moving along the y-axis ...lY = plotAreaY + ( plotAreaH + lW ) / 2; for ( i=0; i<strlen(label); i++ ) { lY -= inc;
The difference in code is what accounts for the backward text. So now I am wondering what to do about this issue. We don't really want to maintain our own version of EDM with code changes. Guidance please. Thank you for your time.lY = plotAreaY + ( plotAreaH - lW ) / 2; for ( i=0; i<strlen(label); i++ ) { lY += inc;
Sincerely, Carl Schumann